:root {
    --font-family: 'Noto Sans';
    --fw-300: '300';
    --fw-400: '400';
    --fw-500: '500';
    --fw-600: '500';
    --white: #fff;
    --yellow: #FFA927;
}

.section-space {
    padding: 0px 65px;
}


/* header css start */

body {
    position: relative;
    font-family: 'Noto Sans';
    font-weight: var(--fw-400);
    color: #fff;
    /* cursor: none; */
}

ul {
    list-style: none;
    padding-left: 0;
}

a,
a:hover {
    text-decoration: none;
    cursor: pointer;
}

.header-bottom .row .col-md-3.col-sm-6 {
    display: flex;
    align-items: center;
}

.navigation-menu {
    padding: 0;
}

.navigation-menu ul li {
    margin: 0 40px 0 0 !important;
    position: relative;
    cursor: pointer;
}

.navigation-menu ul li:last-child {
    margin: 0 !important;
    padding: 0 !important;
}

.navigation-menu ul li a {
    color: #fff !important;
    font-weight: 600;
    font-size: 18px;
    padding: 45px 0 !important;
    float: left;
}

.navigation-menu ul li a {
    padding: 10px 15px 10px 30px !important;
}

.navigation-menu ul li a:hover,
.navigation-menu ul li.current-menu-item>a,
ul.footer-menu li.current-menu-item a,
.navigation-menu ul li.current-menu-parent>a
/*,
.submenu-hover ul li > a*/

{
    color: #FFBA00 !important;
}

.navigation-menu ul li a:hover~.menu-arrow:after,
.navigation-menu ul li.current-menu-parent a~.menu-arrow:after,
.navigation-menu ul li.current_page_item a~.menu-arrow:after
/*,
.submenu-hover ul li > a ~ .menu-arrow:after*/

{
    border-right: 2px solid #FFBA00;
    border-bottom: 2px solid #FFBA00;
}

.navigation-menu.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}

.navigation-menu.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navigation-menu .menu-arrow {
    float: left;
    margin-left: 12px;
    margin-top: 43px;
}

.navigation-menu .menu-arrow:after {
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    content: " ";
    display: inline-block;
    /*transform: rotate(-45deg);*/
    display: inline-block;
    /*top: 3px;*/
    transform: rotate(45deg);
    top: 0;
}

.navigation-menu ul li>.sub-menu {
    display: none;
}

.navigation-menu ul li>.sub-menu.toggle {
    display: block;
}

.navigation-menu ul li>.sub-menu.toggle {
    display: block;
}

.menu-item-has-children.toggle .menu-arrow {
    transform: rotate(90deg);
}





/* .navigation-menu .sub-menu li.menu-item {   
    position: relative;
    margin: 0 !important;
    display: grid;
    width: 100%;
} */

.navigation-menu .sub-menu li a,
.navigation-menu .sub-menu li .sub-menu li a {
    padding: 5px 35px!important;
    width: 100%;
    display: inline-block;
    color: #fff !important;
    font-size: 16px;
}

/* .navigation-menu .sub-menu li .sub-menu {
    position: relative;
    top: 0;
} */
.navigation-menu ul li ul.sub-menu .menu-arrow {
    position: absolute;
    right: 13px;
    top: 7px !important;
    cursor: pointer;
    float: none;
    margin: 0;
}

.navigation-menu ul li ul.sub-menu .menu-arrow::after {
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}

.navigation-menu ul li ul.sub-menu li.change-icon .menu-arrow::after {
    transform: rotate(45deg);
}

.social-icon {
    list-style: none;
    color: #fff;
    padding-left: 0;
    display: flex;
    width: auto;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}


.social-icon li a span {
    height: 15px;
    width: 15px;
    color: var(--white);
}

.social-icon li a:hover span::before {
    color: var(--yellow);
}

span.navbar-toggler-icon {
    background: none;
}

.navigation-menu button {
    position: relative;
}

.navigation-menu button span::after,
.navigation-menu button span::before {
    width: 20px;
    height: 2px;
    border-radius: 6px;
    background: #fff;
    display: inline-block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.navigation-menu button span::before {
    top: -7px;
    animation: animateTopBar 3s infinite;
}

.navigation-menu button span::after {
    bottom: -7px;
    width: 17px;
    top: auto;
    animation: animateMiddleBar 3s infinite;
}

.navigation-menu button span {
    width: 10px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    display: inline-block;
    position: absolute;
    border-radius: 6px;
    left: calc(50% - 10px);
    /* top: calc(50% - 4px); */
    animation: animateBottomBar 3s infinite;
}

@keyframes animateTopBar {
    0% {
        width: 20px;
    }
    25% {
        width: 15px;
    }
    50% {
        width: 10px;
    }
    75% {
        width: 15px;
    }
    100% {
        width: 20px;
    }
}

@keyframes animateMiddleBar {
    0% {
        width: 17px;
    }
    25% {
        width: 15px;
    }
    50% {
        width: 13px;
    }
    75% {
        width: 15px;
    }
    100% {
        width: 17px;
    }
}

@keyframes animateBottomBar {
    0% {
        width: 10px;
    }
    25% {
        width: 8px;
    }
    50% {
        width: 6px;
    }
    75% {
        width: 8px;
    }
    100% {
        width: 10px;
    }
}

@-webkit-keyframes sticky-menu {
    from {
        top: -50%;
    }
    to {
        top: 0;
    }
}

@keyframes sticky-menu {
    from {
        top: -50%;
    }
    to {
        top: 0;
    }
}


/* home banner css start */

header {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
}

.header-bottom {
    margin: 25px 0px;
}

.header-bottom .row {
    align-items: center;
}

.home-banner {
    position: relative;
    z-index: 1;
}

.home-banner .banner {
    height: 100vh;
    overflow: hidden;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
}

.home-banner .banner::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    background-color: rgba(2, 43, 87, 0.8);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.b-title span {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--white);
}

.b-title {
    font-size: 130px;
    line-height: 104px;
    color: var(--white);
    font-weight: 600;
}

.box-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--white);
}


/* home banner css end */


/* footer section css start */

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.footer-menu .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.top-footer-content {
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7);
}

.top-footer-content .footer-menu,
.footer-search {
    width: auto;
}

.search-local {
   /* width: auto;
    display: flex;
    align-items: center;*/
}

.search-local form {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-menu ul li a {
    font-size: 20px;
    line-height: 32px;
    font-weight: 300;
    color: var(--white) !important;
}

.footer-menu ul li a:hover,
.footer-menu ul li.active a {
    color: var(--yellow) !important;
}

.footer-menu .navbar-nav li {
    margin-right: 35px;
}

.search-local input {
    /*height: 50px;
    width: 100%;
    padding: 15px 20px;
    outline: unset;
    border: 0px !important;
    border-radius: 0px !important;*/
}

.search-local input::placeholder {
    color: #000;
}

/*.search-local button {
    background: var(--yellow);
    box-shadow: unset;
    outline: unset;
    height: 50px;
    width: 55px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -2px;
}

.search-local button:hover {
    background: #0B89C6;
}

.search-local button span {
    font-size: 22px;
}*/

.bottom-footer-content {
    align-items: center;
    justify-content: space-between;
}

.bottom-footer-content .design-part {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
    color: #fff;
    width: auto;
}

.bottom-footer-content .design-part a {
    display: inline-block;
    margin-left: 10px;
    width: 91px;
}

.bottom-footer-content .design-part a img {
    height: auto;
    width: 100%;
}

.bottom-footer-content {
    margin-top: 10px;
    margin-bottom: 10px;
}

.bottom-footer-content .copy-right-part {
    width: 100%;
    text-align: center;
}

.bottom-footer-content .copy-right-part .allrights,
.bottom-footer-content .copy-right-part .allrights a {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.3125px;
    font-weight: 300;
    color: #fff;
}

.bottom-footer-content .copy-right-part .allrights a:hover {
    color: #FFA927;
}

.cursor {
    z-index: 10;
    width: 10px;
    height: 10px;
    background-color: #48A90D;
    border: 2px solid #48A90D;
    transition-timing-function: ease-out;
    border-radius: 100%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: height 500ms, width 500ms;
}

.cursor.active {
    width: 15px;
    height: 15px;
}

.cursor.active-dot.active {
    width: 15px;
    height: 15px;
}


/*.cursor.active-dot.active .dot {
  display: none;
}*/

.cursor.active-dot {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cursor .dot {
    position: absolute;
    top: 50%;
    left: -9978px;
    width: 6px;
    height: 6px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    transform: translateY(-50%);
    opacity: 0;
}

.cursor.active-dot .dot {
    opacity: 1;
}

.cursor.active-img,
.cursor.active,
.cursor.active-dot.active {
    width: 30px;
    height: 30px;
}

.cursor.active-img .dot,
.cursor.active .dot,
.cursor.active-dot.active .dot {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 8px;
    height: 8px;
    opacity: 1;
    background-color: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: pulse-white 1.5s infinite;
    margin-top: -4px;
    transform: translateY(-50%);
    z-index: 1;
}

.cursor.active-dot .dot-inner {
    opacity: 1;
    left: calc(50% + 4px);
    transform: scale(0);
    -webkit-animation: cursor-dots-drag 1s ease-in-out 0.5s infinite;
    animation: cursor-dots-drag 1s ease-in-out 0.5s infinite
}

.cursor.active-dot .dot-inner:first-child {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s
}

.cursor.active-dot .dot-inner:nth-child(2) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

@-webkit-keyframes cursor-dots-drag {
    0% {
        transform: translateX(0);
        transform: scale(0)
    }
    25% {
        transform: scale(1)
    }
    75% {
        transform: translateX(-10px);
        opacity: 1
    }
    to {
        transform: translateX(-15px);
        opacity: 0
    }
}

@keyframes cursor-dots-drag {
    0% {
        transform: translateX(0);
        transform: scale(0)
    }
    25% {
        transform: scale(1)
    }
    75% {
        transform: translateX(-10px);
        opacity: 1
    }
    to {
        transform: translateX(-15px);
        opacity: 0
    }
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.cursor .dot .text-drag {
    display: none;
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    font-family: 'Arial';
    font-weight: 400;
}

.active-dot.cursor .dot .text-drag {
    display: inline-block;
}

.cursor .dot {
    width: 100%;
    height: 43px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    border-radius: 10px;
    background-color: transparent;
    transform: none;
}

.cursor .dot-inner {
    opacity: 0;
    width: 3px;
    height: 3px;
    left: -2px;
    top: 50%;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    transform: translateY(-50%);
}

.cursor.active-dot.active .dot-inner {
    display: none;
}

.cursor.active-dot .dot-inner {
    opacity: 1;
    left: calc(50% + 4px);
    transform: scale(0);
    -webkit-animation: cursor-dots-drag 1s ease-in-out 0.5s infinite;
    animation: cursor-dots-drag 1s ease-in-out 0.5s infinite;
}

.cursor.active-dot .dot-inner:first-child {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.cursor.active-dot .dot-inner:nth-child(2) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes cursor-dots-drag {
    0% {
        transform: translateX(0);
        transform: scale(0);
    }
    25% {
        transform: scale(1);
    }
    75% {
        transform: translateX(-10px);
        opacity: 1;
    }
    to {
        transform: translateX(-15px);
        opacity: 0;
    }
}

@keyframes cursor-dots-drag {
    0% {
        transform: translateX(0);
        transform: scale(0);
    }
    25% {
        transform: scale(1);
    }
    75% {
        transform: translateX(-10px);
        opacity: 1;
    }
    to {
        transform: translateX(-15px);
        opacity: 0;
    }
}

.header-bottom.sticky-header {
    position: fixed;
    width: 100%;
    z-index: 999999;
    background: rgba(0 50 100) !important;
    transition: 0.3s ease all;
    -webkit-animation: sticky-menu 0.8s forwards;
    -ms-animation: sticky-menu 0.8s forwards;
    -o-animation: sticky-menu 0.8s forwards;
    animation: sticky-menu 0.8s forwards;
    display: initial;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    top: 0;
    background-position: center right;
}

@-webkit-keyframes sticky-menu {
    from {
        top: -50%
    }
    to {
        top: 0
    }
}

@keyframes sticky-menu {
    from {
        top: -50%
    }
    to {
        top: 0
    }
}

.nato-logo-box{
    display: flex;
    align-items: center;
}
.nato-logo-box .left-header h1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 0;
}
.nato-logo-box .left-header p{
    color: #fff;
    margin-bottom: 0px;
    font-size: 14px;
    font-family: 'Arial';
}
.video-boxs .g-img,
.recent-news .g-img {
    position: relative;
}
.video-boxs .g-img:before,
.recent-news .g-img:hover::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.video-boxs .view-icon .play-icons{
    height: 62px;
    width: 62px;
    object-fit: contain;
}
.video-boxs .g-img:hover .view-icon,
.recent-news .g-img:hover .view-icon {
    visibility: visible;
    top: 50%;
    left: 50%;
}
.section1-box{
    position: relative;
    overflow: hidden;
}
.section1-box .single-gallery-photo .g-img {
    overflow: hidden;
    height: 470px;
    position: relative;
}
.section1-box .single-gallery-photo .g-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
/* .video-boxs .g-img img{
    width: 100%;
    height: 430px;
    object-fit: cover;
} */

.section1-box .g-title {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 10px 30px;
    z-index: 2;
}
.section1-box .g-img {
    height: 430px;
    position: relative;
    overflow: hidden;
}
.section1-box .g-img::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(0deg, #000000 25.7%, rgba(0, 0, 0, 0) 93.94%);
    z-index: 1;
}
.video-iframe iframe{
    width: 100%;
    height: 430px;
    position: relative;
    overflow: hidden;
}
/* footer section css end */



.swiper-pagination.swiper-pagination-bullets{
    position: absolute;
    right: 80px;
    left: auto;
    text-align: end;
    top: -50px;
    height: auto;
    bottom: auto;
    width: auto;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    margin: 0px 5px;
    background-color: #fff;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    height: 10px;
    width: 10px;
    margin: 0px 5px;
    background-color: #ffa927;
}

@media(min-width:992px) {
    .navigation-menu ul>li:hover .sub-menu {
        display: inline-block;
    }
    .navigation-menu li.submenu-hover>a {
        color: #FFBA00 !important;
    }
    .navigation-menu li.submenu-hover .menu-arrow::after {
        border-right: 2px solid #FFBA00;
        border-bottom: 2px solid #FFBA00;
    }
    .navigation-menu ul li.current-menu-parent>a {
        position: relative;
    }
    .navigation-menu ul li.current-menu-parent>a:before {
        position: absolute;
        bottom: 36px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #FFBA00;
        content: "";
        transition: all 0.5s ease;
    }
    .navigation-menu ul li:last-child>a:before {
        height: 0;
    }
    body {
        overflow: hidden;
    }
}

@media(min-width:992px) {
    .navigation-menu ul li.current-menu-parent>a:before {
        bottom: 42px;
    }
    .mobile-header {
        display: none;
    }
}

@media(min-width:1651px) {
    .navigation-menu ul li.current-menu-parent>a:before {
        bottom: 48px;
    }
    .search-local {
        width: 400px;       
    }
}
@media(min-width:1199px) {
   .nato-logo-box {
    min-width: 630px;
}
}

@media(max-width:1799px) {
    .navigation-menu ul li {
        margin: 0 35px 0 0 !important;
    }
   
}

@media(max-width:1650px) {
    .navigation-menu ul li a {
        font-size: 16px;
        padding: 40px 0 !important;
    }
    .navigation-menu .menu-arrow {
        margin-top: 37px;
    }
    .navigation-menu .sub-menu {
        top: 104px;
    }
}

@media(max-width:1440px) {
    .b-title span {
        font-size: 32px;
        line-height: 1;
    }
    .nato-logo-box .left-header h1 {
        font-size: 17px;
    }
    .b-title {
        font-size: 100px;
        line-height: 104px;
    }
    .section-space {
        padding: 0px 20px;
    }
    .footer-menu .navbar-nav li {
        margin-right: 25px;
    }
    .top-footer-content .search-local input::placeholder {
        font-size: 14px;
    }
    .nato-logo-box .left-header {
        padding-left: 20px;
    }
   
}

@media(max-width:1365px) {
    .navigation-menu ul li {
        margin: 0 25px 0 0 !important;
    }
    .navigation-menu ul li a {
        padding: 40px 0 !important;
    }
    .navigation-menu ul li.contact-btn a {
        padding: 7px 20px !important;
    }
    .navigation-menu .menu-arrow {
        margin-top: 37px;
    }
    .nato-logo-box .left-header {
        padding-left: 30px;
    }
}

@media(max-width:1199px) {
    .header-bottom {
        margin: 0 !important;
        padding: 15px 10px;
    }
    .header-bottom {
        margin: 0;
        padding: 15px 10px;
    }
    .logo img, .logo {
        width: 70px;
    }
    .nato-logo-box .left-header h1 {
        font-size: 13px;
    }
    .nato-logo-box .left-header p {
        font-size: 12px;
        margin-bottom: 0px;
    }
    .search-local input{
        font-size: 12px;
    }
    .scrollbar {
        float: left;
        height: 100%;
        width: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        margin-bottom: 25px;
        padding-right: 12px;
    }
    .scrollbar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #000;
        width: 3px;
    }
    .scrollbar::-webkit-scrollbar {
        width: 5px;
        background-color: #fff;
    }
    .scrollbar::-webkit-scrollbar-thumb {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
        background-color: #fff;
    }
    .top-footer-content.section-space {
        padding: 10px 20px;
    }
    .navigation-menu .menu-arrow {
        margin-top: 31px;
    }
    .navigation-menu ul li a {
        padding: 34px 0 !important;
        font-size: 15px;
    }
    .navigation-menu ul li {
        margin: 0 20px 0 0 !important;
    }
    .navigation-menu .sub-menu {
        top: 91px;
    }    
    .nato-logo-box .left-header {
        padding-left: 15px;
    }
}

@media(min-width:992px) {
    header .navbar-nav {
        display: none;
    }
}

@media(max-width:991px) {
footer {
    position: relative;
}
	.scrollbar {
    height: 100%;
    overflow-y: unset;
    overflow-x: hidden;
}
    .navigation-menu button {
        position: absolute;
        top: 0 !important;
        right: 0px;
        background: #FF9E45;
        border-radius: 0px;
        padding: 5px;
        width: 35px;
        height: 35px;
        transform: translate(0px, -50%) !important;
    }
    .navigation-menu{
        order: 3;
    }
    .search-local input {        
        /*padding: 10px 10px;
        font-size: 12px;*/
    }
    .nato-logo-box .left-header {
      display: none;
    }
    .open-menu .logo {
        z-index: -1;
    }
    .open-menu {
        position: relative;
    }
    .open-menu::before {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 3;
    }
    .social-icon {
        padding-right: 60px;
    }
    header .navbar-nav {
        display: block;
        margin-top: 5px;
    }
    header .navigation-menu ul li a {        
        padding: 5px 20px !important;
        font-family: 'Arial' !important;
    }
    .header-bottom {
        padding: 15px 20px;
    }
    .logo img,
    .logo {
        width: 80px;
    }
    .header-bottom {
        margin: 0;
        background: transparent;
    }
    /* .navigation-menu .sub-menu {
        position: relative;
        top: 0;
    } */
    .navigation-menu {
        justify-content: flex-end;
    }
    .navigation-menu button {
        border: none;
        padding: 0;
    }
    .navigation-menu button:hover,
    .navigation-menu .close-icon:hover {
        background-color: #000;
    }
    .navigation-menu button:focus {
        box-shadow: none;
    }
    .navigation-menu button:focus-visible {
        outline: none;
    }
    .navigation-menu button span {
        background: none !important;
    }
    .navigation-menu button span {
        width: 12px;
        height: 2px;
        background: #fff !important;
        margin: 2px;
        display: inline-block;
        position: relative;
        border-radius: 10px;
        left: -6px;
    }
}

.navigation-menu button span:after,
.navigation-menu button span:before {
    width: 16px;
    height: 2px;
    background: #fff;
    display: inline-block;
    content: "";
    position: absolute;
    left: 0;
    border-radius: 10px;
}

.navigation-menu button span::before {
    top: -8px;
}

.navigation-menu button span::after {
    bottom: -8px;
    width: 24px;
}

.navigation-menu button {
    position: absolute;
    top: -43px;
    right: 0px;
    background: #FF9E45;
    border-radius: 0px;
    padding: 5px;
    width: 35px;
    height: 35px;
}

.social-icon {
    padding-right: 0px;
}

.navigation-menu .navbar-collapse {
    position: fixed;
    right: 0;
    top: 0;
    background: #014289;
    width: 80%;
    height: 100%;
    z-index: 99;
    transition: all ease .7s;
    transform: translateX(100%);
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

.open-menu .navigation-menu .navbar-collapse {
    transform: translateX(0%);
}



.navigation-menu.navbar-expand-lg .navbar-nav {
    align-items: flex-start;
}
.navigation-menu .sub-menu {
    background: transparent;
}
.navigation-menu ul li {
    margin: 0 !important;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.open-menu {
    overflow: hidden;
}

.navigation-menu .sub-menu {
    box-shadow: none;
}

.navigation-menu ul li.contact-btn a {
    width: auto;
    margin: 15px 25px !important;
}

.navigation-menu ul li a {
    padding: 10px 25px !important;
    display: inline-block;
    width: 100%;
    font-size: 20px;
    line-height: 1;
    color: var(--white);
    font-weight: normal;
}

.navigation-menu .menu-arrow {
    margin-top: 0;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 0;
}

.navigation-menu .menu-arrow::after {
    position: absolute;
    right: 15px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    top: 14px;
}

.navigation-menu .change-icon>.menu-arrow::after {
    transform: rotate(45deg);
    top: 10px;
}

.navigation-menu ul li ul.sub-menu .menu-arrow::after {
    top: 7px;
    right: 2px;
}

.navigation-menu ul li ul.sub-menu li.change-icon .menu-arrow::after {
    top: 3px;
}

.navigation-menu .close-icon::after {
    transform: rotate(135deg);
}

.navigation-menu .close-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 24px;
    right: 20px;
    background: var(--yellow);
    z-index: 99999;
}

.navigation-menu .close-icon::after,
.navigation-menu .close-icon::before {
    width: 24px;
    height: 2px;
    background: #fff;
    display: inline-block;
    content: "";
    position: absolute;
    left: 3px;
    top: 14px;
}

.navigation-menu .close-icon::before {
    transform: rotate(41deg);
}



.navigation-menu ul li.current-menu-item>a {
    color: #fff !important;
}

.navigation-menu ul li.current_page_item a~.menu-arrow::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.navigation-menu .menu-arrow::after {
    transform: rotate(-45deg);
}

.navigation-menu .phone-no {
    display: inline-block;
    padding-top: 12px;
    width: 100%;
    border-top: 1px solid #eee;
    display: inline-block;
    margin-right: 0;
    color: #333;
    margin-left: 0;
    margin-right: 0px;
    padding-top: 12px;
    padding-left: 25px;
    margin-top: 0 !important;
}

.navigation-menu .phone-no span:before {
    color: #FFA927;
}

@media(max-width:991px) {
    .cursor .dot {
        width: 100%;
        height: 57px;
    }
    .cursor.active-dot {
        height: 65px;
        width: 65px;
    }
    .header-bottom {
        background: transparent !important;
        padding: 10px 15px !important;
    }
    /* .mobile-header {
        padding: 0;
    } */
    .logo img,
    .logo {
        width: 80px;
    }
    .top-footer-content .search-local {
        display: none
    }
    .section-space {
        padding: 0px 15px;
    }
    .top-footer-content {
        background: transparent;
    }
    .bottom-footer-content {
        padding: 10px 15px;
        background-color: rgba(0, 0, 0, 0.7);
        justify-content: center;
    }
    .bottom-footer-content .copy-right-part .allrights,
    .bottom-footer-content .copy-right-part .allrights a {
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.3125px;
    }
    .bottom-footer-content .design-part {
        font-size: 12px;
    }
    .bottom-footer-content .design-part a {
        margin-left: 10px;
        width: 80px;
    }
}

@media(max-width:767px) {
 
.navigation-menu button {
    top: -30px;
}
.social-icon li a span {
    width: auto;
}
}
@media(max-width:585px) {
   
    .banner-left {
        bottom: 80px;
    }
}

@media(max-width:567px) {
    .header-bottom {
      padding: 10px 0 !important;
    }
    .navigation-menu .close-icon {
        right: 15px;
    }
    .navigation-menu ul li.contact-btn a {
        margin: 15px 15px !important;
    }
    .box-content {
        flex-wrap: wrap;
    }
    .banner-right-box .banner-box1 {
        flex-wrap: wrap;
    }
    .bottom-footer-content .copy-right-part .allrights,
    .bottom-footer-content .copy-right-part .allrights a {
        font-size: 14px;
        line-height: 14px;
    }
    .bottom-footer-content .design-part {
        font-size: 12px;
        padding-top: 4px;
        padding-left: 0;
        padding-right: 0;
        flex-direction: column;
    }
    .top-header {
        background-color: rgba(0, 0, 0, 0.7);
    }
    .bottom-footer-content {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        margin: 0;
        justify-content: space-between;
        padding-left: 5px;
        padding-right: 5px;
    }
    .bottom-footer-content .copy-right-part {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .bottom-footer-content {
        background-color: transparent;
    }
    .bottom-footer-content .design-part a {
        margin-top: 4px;
    }
}
@media(max-width:479px) {
    .navigation-menu .close-icon {
        right: 12px;
    }
}

/* .wrapper {
    opacity: 0.7;
} */