:root {
    --font-family-primary: "Plus Jakarta Sans", sans-serif;
    --font-family-secondary: "Lexend", sans-serif;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;
    --theme-color-primary: #262E3F;
    --theme-bg-color: #fff;
    --text-color-primary: #7A7A7A;
    --main-heading-textcolor: #282828;
    --main-heading-textcolor-span: #FF66B2;
    --text-color-white: #fff;
    --theme-color-primary-pink: #FF66B2;
    --linear-gradient-blue:linear-gradient(90deg, #6CDFFF 0%, #1A5BC3 100%);
    --linear-gradient-green:linear-gradient(90deg, #A7CFFF 0.21%, #5FF5FF 100%);
}
/* animation*/
.inview {
    opacity: 0;
    -webkit-transition: all 0.6s 0.2s ease;
    -moz-transition: all 0.6s 0.2s ease;
    -ms-transition: all 0.6s 0.2s ease;
    -o-transition: all 0.6s 0.2s ease;
    transition: all 0.6s 0.2s ease;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
}

.inview.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.images-an {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(1.2) translate3d(40px, -40px, 0);
    -moz-transform: scale(1.2) translate3d(40px, -40px, 0);
    -ms-transform: scale(1.2) translate3d(40px, -40px, 0);
    -o-transform: scale(1.2) translate3d(40px, -40px, 0);
    transform: scale(1.2) translate3d(40px, -40px, 0);
}

.images-an.animate.activate-animation {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    -moz-transform: scale(1) translate3d(0, 0, 0);
    -ms-transform: scale(1) translate3d(0, 0, 0);
    -o-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
}
/* animation end*/
html,
body {
    height: 100%;
}


body {
    font-family: var(--font-family-primary);
    font-size: 14px;
    line-height: 24px;
    background: #090D10;
    color: var(--text-color-white);
    font-weight: 400;
    font-style: normal;


}

dl,
ol,
ul {
    list-style-type: none;
}

ol,
ul {
    padding-left: 0px;
}

.image-full {
    width: 100%;
}

.image-max-width {
    max-width: 100%;
}

a {
    text-decoration: none;
}
/* header */
.height-topheader {
    height: 146px;

}

.height-topoff {
    height: 0px;
}

.header-main-hm {
    position: fixed;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 1029;
    padding: 12px 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    background: rgba(13, 24, 43, 0.20);
    backdrop-filter: blur(4.349999904632568px);
    height: 120px;
    /* display: flex; */
    /* align-items: center; */
}

.wrp-nav {
    /* border-radius: 50px; */
    /* background: #FFF; */
    /* backdrop-filter: blur(25px); */
    /* height: 96px; */
    /* border: 1px solid transparent; */
}

.logo img {
    width: 96px;
}



.nav-header-custome {
    align-items: center;
    display: flex !important;
}
.nav-header-custome .nav-item {
    margin-right: 11px;
}


.nav-header-custome .nav-item:last-child {
    margin-right: 0px !important;
}

.nav-header-custome .nav-item .nav-link {
    font-weight: var(--font-weight-400);
    font-size: 18px;
    line-height: normal;
    color: #fff;
    position: relative;
    text-transform: capitalize;
    line-height: normal;
}

.header-main-hm-sub .nav-header-custome .nav-item .nav-link,
.fixnav .nav-header-custome .nav-item .nav-link {
    color: #fff !important;
}

.nav-header-custome .nav-link.active,
.nav-header-custome .show>.nav-link,
.nav-header-custome .nav-link:hover,
.nav-header-custome .nav-link:focus,
.fixnav .nav-header-custome .nav-item .nav-link:hover {
    color: #fff !important;
    background-color: transparent;
}

.fixnav .nav-header-custome .nav-item .nav-link:hover,
.fixnav .nav-header-custome .nav-item .nav-link:focus,
.fixnav .nav-header-custome .nav-item .nav-link.active {
    color: #fff !important;
    background-color: transparent;
}

.nav-header-custome .nav-link.active:before,
.nav-header-custome .nav-link:hover:before {
    content: '';
    width: 23px;
    height: 3px;
    background: transparent;
    display: block;
    position: absolute;
    left: 0px;
    bottom: -12px;
}

.nav-header-custome .dropdown-toggle::after {
    display: inline-block;
    content: "";
    border: none;
    position: absolute;
    right: 0px;
    top: 50%;
    /* background-image: url(../images/down-arrw.svg); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 4px;
    width: 8px;
    right: -16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.fixnav .nav-header-custome .nav-item .nav-link.show {
    color: #086ad8 !important;

}
.custome-drop {
    border-radius: 22.384px !important;
    border: 1px solid rgba(255, 102, 178, 0.05) !important;
    background: rgba(40, 40, 40, 0.05) !important;
    backdrop-filter: blur(5.484133720397949px) !important;
    padding: 7px 12px !important;
}
.nav-header-custome-first {
    display: block;
    direction: rtl;
    padding-right: 0px;
}
.nav-header-custome-first.nav-header-custome .nav-item:first-child {
    margin-right: 0px;
}

.language-dropdwon-web {
    margin-left: 30px;
}
.btn-booknw {
    border: none;
    color: #fff;
    padding: 21px 53px;
    border-radius: 30px;
    background: #1A1A1A;
    font-weight: var(--font-weight-900);
}

.header-main-hm-sub .btn-booknw {
    background: #EFF7FF;
    border: 1.5px solid #EFF7FF;
    color: #3D7FF9;
}

.nav-headerh {
    height: 149px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;

}

.header-main-hm-sub {
    background: #FFFFFF;
    box-shadow: 0px 6px 15px rgba(8, 106, 216, 0.2);
    height: 94px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
}

.ds-on {
    display: inline-block;
}

.ds-off {
    display: none;
}

.fixnav {
    top: 0px;
    /* padding: 0px; */
}


.fixnav .ds-on {
    display: none;
}

.fixnav .ds-off {
    display: inline-block;
}

.fixnav .wrp-nav {
    /* border: 1px solid rgba(236, 244, 248, 0.70); */
    /* Background-color: rgb(255 255 255 / 60%); */
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}

.offcan-custome {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(5px);
    width: 340px !important;
}

.logo-offcanvas img {
    max-width: 200px;
}

.offcan-custome .offcanvas-header {
    padding: 1.5rem 1.6rem;
}

.offcan-custome .offcanvas-body {
    padding: 0rem 1.6rem;
}

.offcanvas-header .btn-close {
    background-image: url(../images/icon-close.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 23px;
    width: 23px;
}

.offcan-custome.offcanvas-start {
    border-right: none;
}

.sidebar-pills {
    padding-bottom: 2rem;
}


.offcan-custome .dropdown-menu {
    position: static !important;
    transform: translate3d(0px, 0px, 0px) !important;
    border: transparent;
    padding: 0px;
}

.offcan-custome .dropdown-toggle::after {
    display: inline-block;
    content: "";
    border: none;
    position: absolute;
    right: 0px;
    top: 50%;
    background-image: url(../images/Next.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.offcan-custome .dropdown-toggle.show::after {
    top: 16px;
    transform: rotate(180deg);
}

.offcan-custome .drop-dd-min .dropdown-item,
.offcan-custome .drop-dd-min .dropdown-item li {
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 32px;
    color: #777777 !important;
    padding: 0px 5px 6px !important;
    background: transparent !important;
    text-transform: capitalize !important;
}

.offcan-custome .dropdown-menu li .dropdown-item {
    text-transform: uppercase;
    color: #061844;
    font-weight: 500;
    font-size: 12px;
    background-color: rgba(228, 240, 249, .50);
    padding: 2px 0px 2px 14px;
    border-radius: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.drop-dd-min {
    padding-left: 10px;
}

.nav-header-custome .dropdown-menu.show {
    transform: translate(0px, 55px) !important;
}

.dropdown-submenu {
    position: relative;
    padding: 0px 0px 11px;
}

.dropdown-submenu .dropmenu-link {
    font-weight: 500;
    font-size: 15px;
    line-height: 36px;
    color: #061844;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 25px;
}

.dropdown-submenu .dropmenu-link:hover,
.dropdown-submenu .dropmenu-link:focus {
    color: #3D7FF9;

}

.dropdown-submenu .caret {
    display: inline-block;
    background-image: url(../images/dropNext.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    right: 100%;
    margin-top: -1px;
    display: none;
    margin-right: -1px;
}

.dropdown-submenu:hover .dropdown-menu {

    display: block;
}

.nav-header-custome .dropdown-menu .dropdown-item {
    font-weight: 500;
    font-size: 13px;
    line-height: 34px;
    color: #061844;
    padding: 6px 25px;
    white-space: inherit;
    background: transparent !important;
    line-height: 24px;
}

.nav-header-custome .dropdown-menu .dropdown-item:hover,
.nav-header-custome .dropdown-menu .dropdown-item:focus {
    color: #3D7FF9;
}

.nav-header-custome .dropdown-menu {
    border-bottom: 1px solid #EBEDF0;
    padding: 25px 0px;
    background: #FFFFFF;
    box-shadow: 0px 20px 24px rgb(61 127 249 / 10%);
    border-radius: 15px;
    min-width: 300px;
}

.offcanas-contact-list {
    background: #EDF4FA;
    border-radius: 10px;
    padding: 25px 20px 6px;
    display: flex;
    flex-flow: column wrap;
    margin-top: 30px;
    /* position: absolute;
    width: 90%;
    left: 5%;
    right: 5%;
    box-sizing: border-box;
    bottom: 5%; */
}

.offcanas-contact-list li {
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: #333346;
    margin-bottom: 18px;
}

.offcanas-contact-list li a {
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: #333346;
}

.offcanas-contact-list li span {
    margin-right: 10px;
}

.offcanas-contact-list .btn-offcanvs {
    background: linear-gradient(115.17deg, #086AD8 15.8%, #378CFF 83.83%) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #FFFFFF !important;
    padding: 10px 20px;
    display: block;
    text-align: center;
}

.sidebar-pills .btn-booknw {
    padding: 15px 27px;
    border-radius: 30px;
}

.sidebar-pills .nav-link {
    padding: 0px;
    font-weight: var(--font-weight-300);
    font-size: 15px;
    line-height: 32px;
    color: #1A1A1A !important;
    border-radius: 0px;
}

.sidebar-pills .nav-item {
    padding: 19px 0px;
    border-bottom: 1px solid #EBEDF0;
}

.sidebar-pills .nav-item .nav-link {
    border-bottom: 1px solid transparent;
}

.sidebar-pills .nav-item .nav-link.show {
    border-bottom: 1px solid transparent;
}

.sidebar-pills .nav-item:last-child .nav-link {
    border-bottom: 1px solid transparent;
}

.sidebar-pills.nav-pills .nav-link.active,
.sidebar-pills.nav-pills .show>.nav-link .sidebar-pills.nav-pills .nav-link:focus,
.sidebar-pills.nav-pills .nav-link:hover {
    color: #3D7FF9;
    background-color: transparent;
}

.nav-custometp {
    background-color: #254099 !important;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .5);
    border-bottom: 1px solid #254099;
}

.nav-custometp .cn_item {
    margin-right: 7px;
}

.nav-custometp .nav-link {
    display: block;
    padding: 1rem 1.6rem 1rem 0rem;
}

.nav-custometp .nav-title {
    font-size: 14px;
}

.nav-diver-tp {
    border-left: 1px solid #4960aa;
    padding-left: 20px;
}

.nav-custometp .link-dark {
    color: #fff;
}

.nav-custometp .link-dark .cn_item svg {
    top: -2px;
}

.nav-header-custome .dropdown-menu {
    border: none;
    padding: 25px 0px 10px;
    background: #FFFFFF;
    box-shadow: none;
    border-radius: 30px;
    min-width: 174px;
    top: 50% !important;
    left: -100px !important;
}
.nav-header-custome .dropdown-menu li {
    padding: 0px 20px;
    cursor: pointer;
    /* display: flex; */
}
.nav-header-custome .dropdown-menu li .form-group {
    border-bottom: 1px dashed #EBEBEB;
    padding: 14px 0px 6px;
    position: relative;
}
.nav-header-custome .dropdown-menu li  .form-check {
    padding-left: 0em;
}

.nav-header-custome .dropdown-menu li:last-child .form-group {
    border-bottom: 1px dashed transparent;
}
.nav-header-custome .dropdown-menu li  .form-check {
    padding-left: 0em;
    color: powderblue;
    margin-bottom: 0px;
    /* display: inline-flex; */
}
.nav-header-custome .dropdown-menu li .form-check .form-check-input {
    margin-left: 0px;
    position: absolute;
    right: 0px;
    display: none;
}
.nav-header-custome .dropdown-menu .form-group label {
    display: inline-block;
    color: #1A1A1A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    position: absolute;
    left: 0px;
    width: 100%;
    cursor: pointer;
    z-index: 2;
}
.nav-header-custome .dropdown-menu .form-check-input:checked {
    background-color: #FF66B2;
    border-color: #FF66B2;
}

span.check-box {
    background: #fff;
    border-radius: 100%;
    outline: 1px solid #D1D1D6;
    width: 17px;
    height: 17px;
    display: block;
    position: absolute;
    right: 0px;
    padding: 2px;
    border: 2px solid #fff;
}
.dropdown-menu li.active span.check-box {
    background: #FF66B2;
    outline: 1px solid #FF66B2;
    border: 2px solid #fff;
}
.dropdown-menu li.active  .check-box {
    padding-left: 0em;
}
/* .navbar-toggler {
    position: absolute;
    right: 21px;
    display: block !important;
    opacity: 1;
} */
@media (max-width: 1279px) {
    .height-topheader {
        height: 61px;
    }

    .header-main-hm {
        top: 0px;
    }

    .header-main-hm,
    .nav-headerh,
    .fixnav {
        height: 70px !important;
        padding-top: 13px;
    }

    .header-main-hm,
    .nav-headerh {
        height: 61px !important;
    }

    .logo {
        margin-left: 15px;
    }



    .fixnav {
        Background-color: rgb(255 255 255 / 70%);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(2px);
    }

}

@media (max-width: 1199px) {
    .header-main-hm, .nav-headerh {
        height: 71px !important;
        top: 41px;
    }
    .fixnav {
        top: 0px;
    }
    .fixnav .navbar-toggler svg path {
       fill: #000 !important;
    }
.custome-drop {
    background: rgba(255, 255, 255, 0.20) !important;
    color: #fff !important;
}
.fixnav .custome-drop {
    background: rgba(40, 40, 40, 0.09) !important;
    color: #1A1A1A !important;
}
.nav-header-custome .dropdown-menu {
    top: 0% !important;
}
.logo img {
    width:auto;
}
}
@media (min-width: 1600px) {
.nav-header-custome .nav-item {
    margin-right: 62px;
}
}


/* header end*/
/*home-banner  */
.home-banner {
    background-color: #252243;
    background-image: url(../images/Slide41.jpg);
    height: 950px;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.img-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px ;
    top: 0px;
    object-fit: cover;
}
.text-container {
    position: relative;
    margin-top: 100vh; /* Start after some scrolling */
    text-align: center;
  }
  
  .animated-text {
    opacity: 1; 
    transform: translateY(0); 
    transition: transform 0.5s ease-out, opacity 0.5s ease-out; 
  }
  .homebanner-content h1 {
    color: var(--text-color-white);
    font-size: 72px;
    font-style: normal;
    font-weight: var(--font-weight-800);
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
    width: 80%;
}
.service-banner .homebanner-content h1 {
    width: 100% !important;

}
.homebanner-content p {
    color: var(--text-color-white);
    font-size: 25px;
    font-style: normal;
    font-weight: var(--font-weight-700);
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 53px;
    margin-top: 0px;
}
.btn-banner {
    
display: flex;
    
gap: 44px;
}
.homebanner-content .link-btn-tpbanner {
    border-radius: 20px;
background: rgba(255, 255, 255, 0.10);
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(17.5px);
display: inline-flex;
padding: 20px 45px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
color: var(--text-color-white);
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: var(--font-weight-700);
line-height: normal;
text-transform: capitalize;
border: 2px solid transparent;
}
.homebanner-content  .first-them-btn {
border: 2px solid #6CDFFF;
background: linear-gradient(195deg, rgba(158, 218, 209, 0.10) 11.27%, rgba(61, 179, 162, 0.10) 90.4%);
}
@media (max-width: 1360px) {
    .home-banner {
        height: 100vh;
    }
    .homebanner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    }
    .homebanner-content p {
        font-size: 20px;
        margin-bottom: 44px;
    }
    .btn-banner {
        
    gap: 14px;
    }
    .homebanner-content .link-btn-tpbanner {
    padding: 17px 36px;
    gap: 5px;
    font-size: 16px;
    }
}
@media (max-width:767px) {
    .homebanner-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 40px;
    }
    .homebanner-content p {
        font-size: 13px;
        margin-bottom: 24px;
        line-height: 24px;
    }
    .btn-banner {
        gap: 27px;
    }
    .homebanner-content .link-btn-tpbanner {
        padding: 13.705px 30.836px;
        gap: 0px;
        font-size: 12px;
    }
}
/*home-banner end */
.main-heading-title .sm-tilte {
   color: var(--text-color-white);
   font-family: "Plus Jakarta Sans";
   font-size: 20px;
   font-style: normal;
   font-weight: var(--font-weight-400);
   line-height: normal;
   text-transform: capitalize;
   display: block;
   margin-bottom: 15px;
}
.main-heading-title h1 {
    margin-top: 0px;
    margin-bottom: 20px;
   color: var(--text-color-white);
font-size: 50px;
font-style: normal;
font-weight: var(--font-weight-800);
line-height: normal;
text-transform: capitalize;
}
.main-heading-title h1 span {
    background: var(--linear-gradient-blue);
background-clip: text !important;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.main-heading-title p {
   color: var(--text-color-white);
   font-size: 25px;
   font-style: normal;
   font-weight: var(--font-weight-400);
   line-height: normal;
   text-transform: capitalize;
}
@media (max-width:1199px) {
    .main-heading-title .sm-tilte {
        font-size: 17px;
    }
    .main-heading-title h1 {
        margin-bottom: 20px;
        font-size: 42px;
    }
    .main-heading-title p {
        font-size: 22px;
        line-height: 34px;
    }
}
@media (max-width:767px) {
    .main-heading-title .sm-tilte {
        font-size: 11px;
    }
    .main-heading-title h1 {
        margin-bottom: 8px;
        font-size: 25px;
        line-height: 34px;
    }
    .main-heading-title p {
        font-size: 13px;
        line-height: 33px;
    }
}
/* about-banner */

.about-banner {
    background-image: url(../images/match_bg1.jpg);
    background-position:center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 121px 0px 81px;
    overflow: hidden;
}
.about-2nd-image {
    right: -16%;
    bottom: 10%;
    width: 220px;
}
.about-cotent-move {
    padding-left: 28%;
}
.link-btn-banner {
    color: var(--text-color-white);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-700);
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    width: 226.109px;
    height: 67.495px;
    /* padding: 21px 60px; */
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(17.5px);
    margin-top: 30px;
}
.gradient-about-us {
    position: absolute !important;
    bottom: -170px;
    width: 100%;
    height: 313px;
    display: block;
    z-index: 2;
}
@media (min-width:1600px) {
    .about-banner .container {
        max-width: 1530px;
    }
    .about-2nd-image {
        right: -16%;
        bottom: 10%;
        width: auto;
    }
    .about-cotent-move {
        padding-left: 28%;
    }
    
}
@media (max-width:1199px) {
    .about-2nd-image {
        left: 50%;
        top: 90%;
        width: 180px;
        transform: translate(-50%, -50%) !important;
        -webkit-transform: translate(-50%, -50%) !important;
        right: auto;
        bottom: auto;
    }
    #image1 {
        width: 100%;
    }
   
    .about-cotent-move {
        padding-left: 0%;
        margin-top: 30px;
    }
    .link-btn-banner {
        font-size: 17px;
        width: 176.109px;
        height: 67.495px;
    }
}

@media (max-width:767px) {
    .about-banner {
        padding: 81px 0px 31px;
    }
.link-btn-banner {
    font-size: 12px;
    width: 121.843px;
    height: 36.371px;
    border-radius: 10px;
    margin-top: 0px;
}
.about-2nd-image {
    width: 100px;
    left: 80%;
    top: 70%;
}
#image1 {
    max-width: 290px;
}


}
/* about-banner end */
/* serv-box */
.serv-box {
    border-radius: 30px;
    border: 1px dashed #00F0FF;
    background: rgba(30, 31, 34, 0.30);
    box-shadow: 0px 0px 117.1px 12px rgba(0, 240, 255, 0.10) inset;
    text-align: center;
    padding: 38px 40px 9px;
}
.serv-box-content p {
    color: var(--text-color-white);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-300);
    line-height: 30px;
    text-transform: capitalize;
}
.serv-box-content h1 {
    color: var(--text-color-white);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-700);
    line-height: normal;
    text-transform: capitalize;
    margin-top: 18px;
    margin-bottom: 15px;
}
.serv-box-content .serv-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.gradient-image-overlay {
    position: absolute !important;
    bottom: -170px;
    width: 100%;
    height: 313px;
    display: block;
    z-index: 2;
}
@media (min-width:1600px) {
    .serv-box .container {
        max-width: 1396px;
    }
    
}
@media (max-width:1199px) {
    .serv-box {
        padding: 38px 20px 0px;
    }
.serv-box-content p {
   
    margin-bottom: 70px;
}
.serv-box-content {
    position: relative;

}
.serv-box-content:after {
    position: absolute;
    content: '';
    border-top: 1px dashed #00F0FF;
    bottom: -30px;
    left: 50%;
    height: 1px;
    display: inline-block;
    width: 120px;
    transform: translate(-50%, 0px);
    -webkit-transform: translate(-50%, 0px);
    opacity: .2;
}
.serv-box-content.last:after {
   display: none;
}
.serv-box-content.last p {
   
    margin-bottom: 40px;
}
}
/* serv-box end*/
/* feat-banner */
.feat-banner .main-heading-title h1 span {
    background: var(--linear-gradient-green);
}
.feat-banner {
    /* background-image: url(../images/feat-banner.jpg); */
    background-image: url(../images/feat-banner.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 116px 0px 136px;
    overflow: hidden;
}
.project-slide {
        position: relative;
        z-index: 3;
        margin-top: -100px;
}
.marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 1rem;
}
.marquee__content > * {
    flex: 0 0 auto;
    color: white;
    text-align: center;
}
.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    min-width: 100%;
    align-items: end;
}
.marquee__content {
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}
.marquee-gradient {
    background: #FFF;
    box-shadow: 0px 0px 23.95425033569336px 0px rgba(0, 0, 0, 0.10) inset;
    height: 153px;
    padding-top: 10px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 1rem));
    }
}
@media (max-width:767px) {
    .feat-banner {
        padding: 76px 0px 56px;
    }
    .project-slide img {
        max-width: 310px;
    }
    .project-slide {
        margin-top: -40px;
    }
}
/* feat-banner end*/
/* partner-section*/
.partner-section {
    padding: 159px 0px 159px;
}
.partner-box {
    border-radius: 30px;
    border: 1px dashed #00F0FF;
    background: rgba(30, 31, 34, 0.30);
    box-shadow: 0px 0px 117.1px 12px rgba(0, 0, 0, 0.10) inset;
    padding: 29px 0px;
}
@media (max-width:767px) {
.partner-box-thumb {
    flex-wrap: wrap;
    flex-direction: column !important;
    gap: 50px;
}
.partner-box-thumb img {
    max-width: 110px;
}
.partner-section {
    padding: 29px 0px 20px;
}
}
/* partner-section end*/
.gallery-section {
    background-image: url(../images/Vector-bg.png);
    background-position: 0px 0px;
    background-color: #070B0F;
    background-repeat: no-repeat;
    /* background-size: cover; */
    /* padding: 40px 0px 90px; */
}
.gallery-thumbnail li {
    cursor: pointer;
}
@media (min-width:1600px) {
    .gallery-section .container{
        max-width: 1440px;
    }
}
@media (max-width:1199px) {
.gallery-thumb {
    width: 100%;
}
}
@media (max-width:767px) {
.gallery-section {
    background-image: url(../images/Vector-bg-mobile.png);
    padding: 20px 0px 30px;
    background-repeat: repeat;
    background-size: 100%;
}
}
/* gettouch-section*/
.gettouch-section {
    padding-bottom: 80px;
}
.gettouch-section .main-heading-title h1 span {
    background: var(--linear-gradient-green);
}
.address-getin-li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.address-getin-li span {
    position: relative;
    left: 0px;
    top: 0px;
    min-width: 55px;
}
.address-getin-li p {
    color: var(--text-color-white);
    font-size: 15px;
    font-style: normal;
    font-weight: var(--font-weight-500);
    line-height: normal;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0px;
}
.form-control-custome {
    background: transparent;
    border-radius: 10px;
    border: .5px solid #fff;
    font-weight: var(--font-weight-400);
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    height: 58px;
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 29px;
    
}

.form-control-custome::placeholder {
    color: #C7C7C7;
    opacity: 1;
}

.form-control-custome::-webkit-input-placeholder {
    text-align: left;
}

.form-control-custome-moz-placeholder {
    text-align: left;
}

.form-control-custome:focus {
    color: #fff;
    border: .5px solid #fff;
    background: transparent;
}
.text-area-height {
    height: auto !important;
}

.button-vend {
    display: flex;
    width: 226.109px;
    height: 67.495px;
    padding: 21px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #6CDFFF 0%, #1A5BC3 100%);
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
    border: none !important;
}
.gettouch-heading .main-heading-title h1 span {
    background: var(--linear-gradient-blue) !important;
    background-clip: text !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width:767px) {
.button-vend {
    width: 100%;
    height: 44.495px;
    padding: 21px 0px;
    font-size: 13px;
}
.address-getin {
    margin-bottom: 50px;
}
.address-getin-li p {
    font-size: 13px;
}
}

/* gettouch-section end*/
/* footer */
.footer-section {
    margin-top: 60px;
    padding-top: 80px;
}
.footer-logo img {
    max-width: 67px;
}
.footer-log-bar p {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 20px 0px 20px;
}
.footer-heading {
    color: #3384D5;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 20px 0px 25px;
}
.footer-link li {
    margin-bottom: 6px;
}
.footer-link a {
    color: #FFF;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 277%; /* 41.55px */

}
.footer-link-2 {
    position: relative;
    padding-left: 0px;
}
.footer-link-2 li {
    position: relative;
    padding-left: 0px;
}
.footer-link-2 span {
    position: relative;
    position: relative;
    left: 0px;
    display: inline-block;
    text-align: center;
    margin-bottom: 14px;
}
.footer-link-2 hr {
    margin: 1.5rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) dashed rgba(210, 210, 210, 0.30);
    opacity: .25;
}
.footer-link-2 p {
    color: #FFF;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.footer-social-link {
    display: flex;
    margin-left: -37px;
    margin-bottom: 0px;
    position: relative;
    top: -8px;
    justify-content: center;
}
.footer-social-link img {
    display: flex;
}
.copyright-bar {
    border-top: 1px dashed rgba(210, 210, 210, 0.30);
    margin-top: 70px;
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center;
    color: #FFF;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 190.6%; /* 26.684px */
    letter-spacing: 4.2px;
}
@media (max-width:767px) {
    .footer-section {
        margin-top: 30px;
        padding-top: 30px;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
    }
    .copyright-bar {
        margin-top: 34px;
        padding-top: 13px;
        padding-bottom: 13px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }
    .footer-social-link {
        margin-left: 0px;
        margin-bottom: 0px;
        top: -8px;
        justify-content: center;
    }
    .footer-link-2 p {
        font-size: 13px;
    }
    .footer-heading {
        line-height: normal;
        margin: 40px 0px 25px;
    }
    }
/* footer end */
/* services page */
.service-banner {
    background-color: #252243;
    background-image: url(../images/Slide42.png);
    height: 630px;
}
.content-banner-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;

}
.services-section {
    background-image: url(../images/match_bg2.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 121px 0px 81px;
}
.services-section .main-heading-title h1 span {
    background: var(--linear-gradient-green);
}
.services-content {
    border-radius: 30px;
    border: 1px dashed #00F0FF;
    background: rgba(30, 31, 34, 0.30);
    box-shadow: 0px 0px 117.1px 12px rgba(0, 240, 255, 0.10) inset;
    padding: 15px 15px 40px;
}
.services-content-inner {    
    padding: 18px 20px 0px;
}
.services-content h3 {
    background: linear-gradient(90deg, #6CDFFF 0%, #1A5BC3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
    margin: 10px 0px 17px;
}
.services-content p {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 212%;
    text-transform: capitalize;
}
.powerfulservices-section {
    background-image: url(../images/powerservice-bg.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 157px 0px 133px;
}

.powerfulservices-section .main-heading-title h1 span {
    background: var(--linear-gradient-green);
}

.powerfulser-content h3 {
    background: linear-gradient(90deg, #6CDFFF 0%, #1A5BC3 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 20px;
font-style: normal;
font-weight: 800;
line-height: normal;
text-transform: capitalize;
margin: 17px 0px 17px
}
.powerfulser-content p {
    color: var(--text-color-white);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 212%; /* 31.8px */
    text-transform: capitalize;
}
@media (max-width:1199px) {
.service-banner {
    height: 430px;
}
.services-section {
    padding: 71px 0px 61px;
    background-position: center;
}
.services-content p {
    font-size: 9px;
}
.services-content-inner {
    padding: 18px 6px 0px;
}
.services-content h3 {
    font-size: 16px;
}
.powerfulservices-section {
    padding: 67px 0px 93px;
}
}
@media (max-width:767px) {
.powerfulser-content p {
    font-size: 13px;
}
}
/* services page end */
.anim-sec-wraper {
    padding: 105px 0px 150px;
}
.anim-section-outer {
   
}

.anim-section-full {
    display: flex;
}
.anim-section-heading {
    padding-right: 170px;
    padding-top: 100px;
}
.anim-section-thumb {
    display: flex;
    margin-left: auto;
    position: relative;
}

.anim-svg-roat {
    background: #090D10;
    padding: 20px;
    right: 0px;
    z-index: 2;
    display: none !important;
}
.anim-section-thumb-right {
    position: relative;
    padding-left: 15px;
}
.anim-section-p{
    position: absolute;
    width: 73%;
    left: 25%;
    bottom: -62px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 212%;
    z-index: 55;
}
.anim-section-logo {
    position: relative;
    z-index: -1;
    margin-top: -100px;
}
@media (max-width:991px) {
    .anim-section-heading {
        padding-right: 20px;
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .anim-section-full {
        flex-flow: wrap;
    }
    
    .anim-sec-wraper {
        padding: 0px 0px 150px;
    }
}
@media (max-width:767px) {
    .anim-sec-wraper {
        padding: 0px 0px 60px;
    }
    .anim-section-heading {
        padding-right: 20px;
        padding-top: 67px;
        padding-bottom: 30px;
        text-align: center;
        width: 100%;
    }
    .anim-section-thumb {
        margin-left: auto;
        position: relative;
        flex-direction: column;
    }
    .anim-section-p {
        position: relative;
        width: 100%;
        left: 0px;
        bottom: 0px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        line-height: 212%;
        z-index: 55;
        padding: 60px 0px 60px;
    }
   
    .anim-section-thumb-right {
        padding-left: 0px;
    }
    .anim-section-logo {
        position: relative;
        z-index: -1;
        margin-top: 40px;
    }
    .anim-svg-roat {
        background: #090D10;
        padding: 10px;
        right: 0px;
    }
}
@media (max-width:540px) {
.anim-section-p-center {
    text-align: center;
    font-size: 13px;
    margin: 0px 0px;
    padding: 16px 0px 0px;
}
.anim-section-logo {
    position: absolute;
    z-index: -1;
    margin-top: -20px;
}
}

.service-anim .main-heading-title h1 span {
    background: var(--linear-gradient-green);
}
/* plugin */
.lg-outer .lg-image {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%) !important;
}
.my-parallax-window {
    height: 900px;
    width: 100%;
}









.gallery-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 407px;
}
  
  .gallery-thumbnail-mb {
    display: flex;
    flex-wrap: wrap; /* Wrap items into rows */
    width: calc(200% + 20px); /* Double the width for infinite scroll */
    padding: 0;
    margin: 0;
    list-style: none;
    cursor: grab; /* Change cursor to grab */
    animation: scroll 90s linear infinite; /* Infinite scroll animation */
  }
  
  .gallery-thumbnail-mb:hover {
    animation-play-state: paused; /* Pause animation on hover */
  }
  
  .gallery-thumbnail-mb li {
    flex: 0 0 7%;
    margin: 5px;
}
  
.gallery-thumbnail-mb img {
    display: block;
    width: auto;
    max-height: 170px;
    border-radius: 8px;
    /* width: auto; */
    max-width: 280px;
}
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Hide scrollbar for Webkit browsers */
  .gallery-thumbnail-mb::-webkit-scrollbar {
    display: none;
  }