/*Main Css */
:root {
    --primary: #00B67A;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --shadder1: #dbebff;
    --shadder2: #fff0cf;
    --shadder3: #d8ffec;
    --shadder4: #ebebff;
    --shadder5: #ffe3e0;
    --font-heading: "Monument" , sans-serif;
    --font-accent: "Archivo" , sans-serif;
    --font-body: "Archivo" , sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --border: 1px solid #c0b5f033;
    --font-regular: 16px;
    --font-small: 14px;
    --font-extra-small: 12px;
    --font-large: 20px;
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #ff5e14;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #ff5e14;
}


/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}


/* Accordian */


.accordion-list {
    position: relative;
}

.accordion-list li {
    padding: 30px 35px 30px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #D1D5DB;
    background: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    font-size: 24px;
    color: #666666;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF ;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
}
.answer p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
}
/* Accordian */

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: var(--font-heading);
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}



span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
   
    
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}


/* Padding Classes */


.pad-zero {
    padding: 0px;
}

.pad-l-zero {
    padding-left: 0px;
}

.pad-r-zero {
    padding-right: 0px;
}

.ovr-hiddn {
    overflow: hidden;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}


/* Heading Classes */

.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}



.highlighted {
    color: #ff5e14;
}


/* Custom Slick Css */

.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/

header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: fixed;
    background: transparent;
    z-index: 3;
    left: 0;
    right: 0;
    top: 0;
}
header.sticky{
    
    
    background: white;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}
.sticky .menu > li > a {
    color: #212121;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}

.sticky .norm-logo {
    display: block !important;
}

.sticky .light-logo {
    display: none;
}
a.f-logo img {
    max-width: 200px;
}

.logo img {
    max-width: 180px;
}

img.norm-logo {
    display: none;
}

/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}



.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}


/* Menu Css */

.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}

.menu > li > a {
    display: block;
    font-size: 18px;
    color: #ffffff;
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    background: #9dff50;
    color: #000!important;
    padding: 20px 32px;
    border-radius: 100px;
    /* font-weight: 400 !important; */
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}
@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */

.has-child {
    position: relative;
    z-index: 1;
}

.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}

.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */

.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  
}
.banner-imgs {
    display: flex;

    justify-content: center;
}

.banner-imgs img:not(:first-child) {
    margin-left: -20px;
    margin-right: 0;
}

.banner-imgs img:first-child {
    position: relative;
    z-index: 1;
}

.mainBanner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/banner/ban.webp") no-repeat;
    z-index: -1;
    background-size: 100% 650px;
}
.banner-content {
    padding: 150px 0 100px;
}
 
h1.banner-heading {
    font-size: 80px;
    line-height: 86px;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}
h1.banner-heading small {
    font-size: 48px;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;

    font-weight: 500;
}

h1.banner-heading span::before {
    content: "";
    background: #9DFF50;
    color: #212121;
    padding: 10px 20px;
    border-radius: 10px;
    transform: skewX(-16deg);
    position: absolute;
    width: 120%;
    height: 110%;
    z-index: -1;
    /* margin: 0 auto; */
    /* inset: 0; */
}
h1.banner-heading.sm span::before{
    width: 110%;
}
h1.banner-heading span {
    position: relative;
    z-index: 0;
    color: #212121;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}
p.banner-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

/* -----services------- */

.service-card .ser-details {
    color: white;
    z-index: 3;
    border-radius: 32px;
    position: absolute;
    /* top: 0; */
    overflow: hidden;
    height: 100%;
    padding: 20px;
}

.service-card {
    overflow: hidden;
    position: relative;
    transition: 0.3s ease-in;
    margin-bottom: 1.5rem;
}

.ser-details h4 {
    font-size: 26px;
    position: relative;
    margin-bottom: 2rem;
}

.ser-details p {
    /* color: #000; */
    font-size: 16px;
    line-height: 24px;
    padding: 1rem 0;
}

.ser-list-ul li {
    /* color: #000; */
    font-size: 16px;
    line-height: 24px;
    position: relative;
    display: flex;
    gap: 5px;
}

.service-card {
    display: block;
    position: relative;
    z-index: 0;
    border-radius: 37px;
}

.ser-details {
    position: absolute;
    top: 101%;
    transition: .5s ease;
}

.service-card .ser-img img {
    width: 100%;
    height: 100%;
}

.service-card:hover .ser-details {
    top: 0;
}

.service-card:hover .ser-details::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000a1;
    left: 0;
    top: 0;
    z-index: -1;
}

ul.ser-list-ul li::before {
    content: "\f178";
    font-family: var(--icon);
    color: #9DFF50;
}

.ser-details h4::before {
    height: 6px;
    content: "";
    width: 50%;
    background: #9DFF50;
    position: absolute;
    bottom: -11px;
    border-radius: 100px;
}

.ser-details h4::after {
    content: "";
    position: absolute;
    left: 48%;
    bottom: -23px;
    background:url("../images/star.webp")no-repeat;
    width: 28px;
    height: 29px;
    background-size: contain;
}


/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;
    
}
.sec-heading h2 {
    font-size: 40px;
    line-height: 48px;
}
.sec-heading.white h2 , .sec-heading.white p{
    color:white
}
.sec-heading p {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #5F5F5F;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
.sec-heading h2 span {
    position: relative;
    z-index: 0;
    color: #212121;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px;
}

.sec-heading h2 span::before {
    content: "";
    background: #9DFF50;
    color: #212121;
    padding: 10px 20px;
    border-radius: 10px;
    transform: skewX(-16deg);
    position: absolute;
    width: 110%;
    height: 110%;
    z-index: -1;
}
/* Sec Headings */


/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 


/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.btn-wrap .theme-btn {
    padding: 15px 30px;
    background: #9dff50;
    color: #000;
    font-size: 20px;
    border-radius: 100px;
    font-weight: var(--font-medium);
    border: 2px solid #9dff50;
    transition: .5s ease;
}

.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */


/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}

.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}
.newcountrycode .phone-field {
    width: 100%;
}
.newcountrycode input {
    border: 0;
}
/* Country Code */


/* footer */

footer {
    background: #030E1A;
    padding: 1.5rem 0;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.copyright p,.copyright a {
    color: white;
}

ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.f-link li:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
/* footer */

/* 404 */

.error-text {
    font-size: 40px;
    line-height: 48px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
}

.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 18px;
    line-height: 34px;
    margin-top: 20px;
    max-width: 60%;
    margin: 0 auto;
    color: #6B6B6B;
}

/* 404 */
/* terms */



.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}

.terms ul li {
    margin-bottom: 1rem;
}

.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}

.terms h4 {
    font-size: 26px;
    margin: 1rem 0;
    font-weight: 600;
    font-family: var(--font-body);
}

.terms p {
    margin-bottom: 2rem;
}
/* terms */


/* Services */
.about h2 {
    font-size: 40px;
    line-height: 1.2;
}

.about p {
    color: #444;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: -0.2px;
}

ul.services-list {
    display: flex;
    flex-direction: column;
    /* padding: 32px 40px; */
    gap: 30px;
}

ul.services-list li {
    border-radius: 120px;
    border: 1px solid #DDD;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: 32px 40px;
    display: flex;
    color: #444;
    font-size: 24px;
    cursor: pointer;
    transition: .5s ease;
}

ul.services-list li.active {
    /* border: 1px solid #DDD; */
    background: #101010;
    color: #fff;
}

ul.services-list li div span {
    font-family: var(--font-heading);
    /* color: #9DFF50; */
}

ul.services-list li div {
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.services-list li.active div span {
    color: #9DFF50;
}

ul.services-detail li div:first-child {
    grid-row: 2 span;
}
ul.services-detail li div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
ul.services-detail {
    height: 100%;
}
ul.services-detail li {
    display: grid;
    grid-template-columns: 1fr 274px;
    gap: 24px;
    grid-template-rows: 1fr 1fr;
    display: none;
    height: 100%;
}
ul.services-detail li.active{
    display: grid;
}
ul.services-detail li div:nth-child(2) {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    height: 100%;
    border-radius: 32px;
    background: #2B2B2B;
    color: white;
    padding: 32px;
}

ul.services-detail li div:nth-child(2) a {
    color: white;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -0.28px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.services-detail li div:nth-child(2) p {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: -0.18px;
}

ul.services-detail li div:nth-child(2) a i {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(-45deg);
}

ul.services-detail li div:nth-child(3) {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    height: 100%;
    border-radius: 32px;
    background: #9DFF50;
    color: #222222;
    padding: 32px;
}

ul.services-detail li div:nth-child(3) a {
    color: #222222;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -0.28px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.services-detail li div:nth-child(3) p {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: -0.18px;
}

ul.services-detail li div:nth-child(3) a i {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(-45deg);
}

span.vertical-text {
    font-weight: 500;
    text-transform: uppercase;
    color: #222;
    background: #9DFF50;
    transform: rotate(-90deg);
    padding: 16px 24px;
    position: absolute;
    float: left;
    right: calc(100% - 124px);
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
    top: 20%;
}


section.has-bg::after {
    content: "";
    position: absolute;
    background: #222222;
    width: 100%;
    height: 100%;
    top: 0;
    transform: skewY(-1deg);
    z-index: -1;
}

section.has-bg::before {
    content: "";
    position: absolute;
    background: #9DFF50;
    width: 100%;
    height: 30px;
    top: -16px;
    transform: skewY(-1.7deg);
    z-index: -1;
}
section.has-bg {
    margin: 2rem 0;
}
section.has-bg.d2::before{
    top: auto;
    bottom: -16px;
}


/* Why-us */
.why-us-card {
    color: white;
    border-radius: 56px;
    background: #2A2A2A;
    padding: 48px;
    margin-bottom: 1.5rem;
}

.why-us-card img {
    width: 100%;
    margin-bottom: 40px;
}

.why-us-card h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: #DDD;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: -0.18px;
}
/* Why-us */


/* Testimonials */
.testi-card .upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.testi-card .upper .client {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testi-card .upper .client .det {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.testi-card .upper .client .det .name {
    font-size: 22px;
    font-weight: 500;
}

.testi-card {
    display: flex !important;
    padding: 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 32px;
    background: #2A2A2A;
    color: white;
    min-height: 300px;
    opacity: 0.4;
    transition: .5s ease;
}
.testi-slider .slick-slide {
    margin: 30px 15px 0;
   
}
.slick-current .testi-card {
    opacity: 1;
    transform: translateY(-30px);
}
.testi-card .upper .client .det .des {
    color: #DDD;
}

.testi-card p {
    font-style: italic;
    line-height: 170%;
    font-size: 20px;
}
ul.arrows {
    display: flex;
    gap: 20px;
    margin: 2rem 0 0;
    justify-content: center;
}



ul.bottom-list {
    display: flex;
    justify-content: space-between;
    color: #000;
    font-size: 72px;
    font-family: var(--font-heading);
    font-weight: 800;
    gap: 20px;
    position: relative;
    margin-bottom: 50px;
}

ul.bottom-list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    background: url("../images/bottom-line.webp") no-repeat;
    background-size: contain;
    bottom: -45px;
}
a.next2, a.prev2 {
    display: flex;
    align-items: center;
    height: 56px;
    width: 56px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid #222;
    justify-content: center;
    top: calc(50% - 56px);
}

a.next2 {
    right: -65px;
}

a.prev2 {
    left: -65px;
}


/* footer */
.contact-card{
    background: url("../images/cont-img.webp")no-repeat;
    background-size: 100% 100%;
    width: 100%;
}
.contact-card a, .contact-card p {
    font-size: 13px;
    color: #292928;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
}
footer h3 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    margin: 40px 0;
}


span.elem1 {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 20%;
}

span.elem2 {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 20%;
    top: 13%;
}

span.elem3 {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 10%;
    top: 30%;
}

span.elem4 {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 6%;
    top: 3%;
}


.trusted{
    background: url("../images/trusted-bg.webp")no-repeat;
    background-size: 100% 100%;
    transform: translateY(-30px);
    padding: 5rem 0 7rem;
}
ul.trusted-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: rotate(2deg);
}




.contact-info .sub {
    letter-spacing: -0.28px;
    color: #121212;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #53B902;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.contact-info h2 {
    letter-spacing: -0.44px;
    color: #000;
    font-size: 22px;
    margin-bottom: 1.5rem;
}

.contact-info p {
    line-height: 26px;
    letter-spacing: -0.18px;
    color: #A8A8A8;
    font-size: 18px;
    margin-bottom: 1.5rem;
}
.contact-info li{
    background: url("../images/con-img.webp") no-repeat;
    background-size: 100% 100%;
    height: 100px;
    padding: 20px;
}
.contact-info li a, .contact-info li p {
    line-height: 19px;
    color: #FFF;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li  img {
    height: 64px;
}

.field input, .field textarea {
    border-radius: 48px;
    border: 1px solid #E8E8E8;
    width: 100%;
    padding: 20px;
    margin-bottom: 1.5rem;
    resize: none;
}

.field textarea {
    border-radius: 20px;
}

button.submit {
    padding: 20px 32px;
    border-radius: 32px;
    background: #9DFF50;
    border: 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .5s ease;
}
button.submit:hover {
    transform: scale(1.03);
}
@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    
    .container {
        position: relative;
    }
    
    header .main-header ul.menu>li > a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    .menu.btns li {
    border: 0;
}
}

@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
    ul.services-detail li div:nth-child(2) a, ul.services-detail li div:nth-child(3) a {
        width: 100%;
    }
    ul.services-detail li div:nth-child(2) , ul.services-detail li div:nth-child(3)  {
        width: 100%;
    }
    li.active.first {
        grid-template-columns: 1fr;
    }
    .banner-imgs {
        max-width: 100%;
    }
    
    .banner-imgs img {
        flex-shrink: unset;
        flex-basis: 100%;
    }
    
    .about h2 {
        font-size: 32px;
        line-height: 1.4;
    }
    
  
    ul.bottom-list {
        font-size: 50px;
    }

    .copyright {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 16px;
    }
    .why-us-card h3 {
        font-size: 20px;
    }
    
    .why-us-card {
        padding: 20px;
    }
    h1.banner-heading {
        font-size: 60px;
        line-height: 86px;
    }
    
    h1.banner-heading small {
        font-size: 40px;
    }
}
/* iPads (landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {
    .contact-card {
        background: white;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
}
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
    .banner-imgs {
        display: none;
    }
    
    .mainBanner::before {
        background-size: cover;
    }
    
    ul.services-list {
        margin-bottom: 1.5rem;
    }
    
    ul.bottom-list {
        font-size: 30px;
        align-items: center;
    }
    
    .contact-card {
        background: white;
        border-radius: 10px;
        margin-bottom: 1.5rem;
    }
    
    .copyright {
        flex-direction: column;
        gap: 10px;
    }
}


/* iPhone 6-8 Plus */
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : landscape) {
/* Styles */
}



/* iPhone 6-8  */
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : landscape) {
/* Styles */
}



/* Android (Pixel 2) */
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : landscape) {
/* Styles */
}

/* Iphone X */
@media only screen
and (min-width : 375px)
and (max-width : 734px)
and (orientation : portrait) {

}
@media only screen
and (min-width : 320px)
and (max-width : 767px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 100px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    h1.banner-heading small {
        font-size: 19px;
    }
    
    .banner-imgs {
        display: none;
    }
    
    .about h2 {
        font-size: 24px;
    }
    
    ul.services-detail li {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }
    
    .why-us-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    ul.bottom-list {
        flex-direction: column;
        align-items: center;
        font-size: 40px;
        /* gap: 20px; */
    }
    
    .contact-card {
        background: #fff;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .copyright p, .copyright a {
        font-size: 12px;
    }
    
    section {
        padding: 2rem 0;
    }
    ul.services-detail li div:nth-child(3) a,ul.services-detail li div:nth-child(2) a{
        width: 100%;
    margin-top: 12px;
    }
    ul.services-detail li div:nth-child(3), ul.services-detail li div:nth-child(2){
        padding:20px;
    }
    span.vertical-text {
        display: none;
    }
    ul.services-list {
        margin-bottom: 1.5rem;
    }
    .testi-card {
        opacity: 1 !important;
        transform: translateY(0px) !important;
    }
}
