/*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: "Syne" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , 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 */
html {
    overflow-x: hidden;
}
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);
    font-weight: 600;
}

*: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: white;
    z-index: 1;
    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;
    
z-index: 6;
}

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}

.logo img {
    display: block;
}


/* 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: var(--black);
    /* text-transform: uppercase; */
    font-weight: 500;
}
.header-btn {
    border: 1px solid #1E1176;
    color: #fff!important;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 400 !important;
    font-size: 20px !important;
    background: #1E1176;
}
.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 {
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background: linear-gradient(135deg, #614EE0 0%, rgba(97, 78, 224, 0.70) 100%);
    z-index: 2;
}




.banner-content , .mt150 {
    padding: 150px 0 0px;
}
.mainBanner.inner .banner-content {
    padding: 150px 0 50px;
}
h1.banner-heading {
    font-size: 66px;
    line-height: 73px;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}
h1.banner-heading span.bottom-elem {
    position: relative;
}

span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}

p.banner-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2rem;
    color: #fff;
}
.banner-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.banner-img .cont-1 {
    position: absolute;
    left: 14%;
    top: 0;
    z-index: -1;
}

.banner-img .cont-2 {
    position: absolute;
    left: 0%;
    bottom: 100px;
}


.mainBanner.inner {
    background: linear-gradient(108deg, rgba(97, 78, 224, 0.13) 0%, rgba(97, 78, 224, 0.70) 100%, rgba(97, 78, 224, 0.32) 100%);
}

.mainBanner.inner h1.banner-heading {
    color: #1E1176;
}

.mainBanner.inner p.banner-text {
    color: #1E1176;
}



/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;
    
}
.sec-heading h2 {
    font-size: 66px;
    line-height: normal;
    font-weight: 700;
    line-height: 72.6px;
    letter-spacing: -1px;
    color: #1E1176;
}
.sec-heading.white h2,.sec-heading.white p{
    color:white
}
.sec-heading p {
    font-size: 16px;
    color: #1E1176;
    margin: 1rem 0;
    line-height: 30px;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 118.523%;
}

/* 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: 20px 30px;
    background: #1E1176;
    color: white;
    font-size: 20px;
    border-radius: 10px;
    border: 2px solid #1E1176;
    transition: .5s ease;
    font-weight: 600;
}

.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */





/* footer */

footer {
    background: #6754E9;
    padding: 5rem 0 0;
    color: white;
    position: relative;
    margin-top: 2rem;
}
footer::before{
    content: "";
    position: absolute;
    left: 0;
    right:0;
    margin: 0 auto;
    background: url("../images/rocket.webp")no-repeat;
    background-size: contain;
    width: 90px;
    height: 175px;
    top: -79px;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
footer p {
    font-weight: 500;
    line-height: 26px;
    color: #FFF;
}

ul.f-links li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 13px;
}

ul.f-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

ul.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

span.f-hdng {
    font-weight: 600;
    line-height: 160.4%;
    font-size: 30px;
    margin-bottom: 1rem;
}

ul.contact-list li a,ul.contact-list li p {
    font-weight: 600;
    color: #FFF;
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: start;
}

a.f-logo {
    margin-bottom: 1.5rem;
    max-width: 230px;
}

.copyright ul {
    display: flex;
    /* gap: 20px; */
}

.copyright ul li:nth-child(2) {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

.copyright ul li {
    padding: 0 10px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    background: #0C005C;
    padding: 20px;
    margin-top: 2rem;
}

.copyright p,.copyright a {
    color: white;
}

ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
.copyright .copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* footer */
/* Trusted */

section.trusted {
    background: #F7F7FA;
}

section.trusted ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

section.trusted h3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
}
/* Trusted */

/* 404 */

.error-text {
    font-size: 96px;
    line-height: 68px;
    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: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}

/* 404 */
/* terms */



.terms ul {
    /* padding-left: 40px; */
    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: 24px;
    margin: 1rem 0;
}

.terms p {
    margin-bottom: 2rem;
}
/* terms */

/* Counter */


.counter {
    font-size: 50px;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.counter-wrap {
    text-align: center;
    border-radius: 10px;
    border: 1px solid #6754E9;
    min-height: 153px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter-wrap p {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: normal;
}
/* Counter */


/* Slider */
.slider .slide {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #F0EBFF;
    align-items: start;
    gap: 10px;
    padding: 30px;
    min-height: 340px;
    transition: .5s ease;
}
.slick-current .slide{
    background: #E2D9FF;
}
span.img {
    padding: 1rem;
    background: white;
    border-radius: 6px;
    margin-bottom: 1rem;
    transition: .5s ease;

}
.slick-current span.img{
    background: #86E0C1;
}
.slider .slide h3 {
    color: #151B31;
    font-size: 28px;
    font-weight: 600;
    line-height: 119%;
    letter-spacing: -0.56px;
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

.slider .slide p {
    font-size: 20px;
    color: #6D6F75;
    line-height: 160.4%;
}

ul.arrows {
    border-radius: 70px;
    /* background: #8970DA; */
    display: flex;
    width: fit-content;
    margin: 1rem 0;
    padding: 10px;
    gap: 10px;
}

ul.arrows li a {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 20px;
    background: #f5f5f5;
    color: #111827;
}

ul.arrows li a:hover {
    background: #AE98F6;
    color: white;
}
/* Slider */


/* Why-Choose-Us */
ul.choose-list {
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 1.5rem;
    border-top: 2px dashed #D7D1FE;
}

ul.choose-list li h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 21.954px;
    margin-bottom: 1.5rem;
}

ul.choose-list li p {
    line-height: 22px;
}


ul.choose-list li {
    padding: 2rem 0;
    position: relative;
}

ul.choose-list li::before {
    width: 1rem;
    height: 1rem;
    content: "";
    position: absolute;
    background: #6754E9;
    border-radius: 100%;
    top: -.5rem;
    left: 0;
}
/* Why-Choose-Us */

/* Services */
.services-list {
    border-radius: 50px;
    background: #000;
    padding: 40px;
}

.services-list li a {
    border-radius: 50px;
    background: #000000;
    padding: 30px 40px;
    color: white;
    width: 100%;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.6px;
    font-size: 20px;
    font-family: var(--font-heading);
}

.services-list ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-list li.active  a {
    background: #6754E9;
}

.service-detail {
    border-radius: 50px;
    background: #F2F0FF;
    padding: 80px;
    height: 100%;
    display: none;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.service-detail.active {
    display: flex;
}

.service-detail h3 {
    font-weight: 700;
    line-height: 24px;
    font-size: 30px;
    margin: 1.5rem 0;
}

.service-detail img {
    width: 60px;
}

.service-detail p {
    font-weight: 500;
    line-height: 35px;
    font-size: 20px;
}
/* Services */

/* Portfolio */
section.portfolio {
    background: #F1EFFF;
}
.port-card {
    margin-bottom: 1.5rem;
}
.port-card img {
    border-radius: 22px;
}
/* Portfolio */

/* Testimonials */
.client-slider .client img {
    width: 135px;
    margin-bottom: 1.5rem;
}

.client-slider .client h4 {
    font-size: 35px;
    font-weight: 500;
    line-height: 20.8px;
    margin-bottom: 1rem;
}

.client-slider .client p {
    font-size: 24px;
    line-height: 24px;
}
.testi-slider p {
    font-size: 22px;
    letter-spacing: -0.3px;
    font-weight: 500;
    font-style: italic;
    line-height: 40px;
}
/* Testimonials */

/* About-Page  */
.vission-card {
    border-radius: 50px;
    background: #F2F0FF;
    padding: 30px;
    min-height: 340px;
}

.vission-card img {
    margin-bottom: 1rem;
}

.vission-card h3 {
    font-size: 30px;
    line-height: 38px;
    color: #263238;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vission-card p {
    line-height: normal;
    color: #555;
    line-height: 30px;
}

.about-card .sub {
    font-weight: 500;
    line-height: 37.596px;
    letter-spacing: -0.6px;
    font-size: 20px;
}

.about-card h3 {
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.9px;
    font-size: 30px;
    margin-bottom: 1rem;
}

.about-card p {
    line-height: 37.596px;
    letter-spacing: -0.6px;
    color: #555;
    font-size: 20px;
}
.statisfaction-sec{
    background: #F8F9FF;
}
section.statisfaction-sec h2 {
    line-height: 60px;
    color: #232323;
    font-size: 50px;
}

section.statisfaction-sec p {
    color: #555;
    font-size: 20px;
    line-height: 30px;
}
section.cta-sec {
    background: #6754E9;
}

.about-sec h3 {
    font-size: 45px;
    line-height: normal;
}

.about-sec p {
    font-size: 18px;
    color: #555;
    line-height: 30px;
}
/* About-Page  */

/* Services-Page */
.service-card {
    margin-bottom: 1.5rem;
    position: relative;
}
.service-card .content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: white;
}
.service-card .img {
    background: #C4B1FF;
}

.service-card h3 {
    font-weight: 600;
    line-height: 118.523%;
    letter-spacing: -0.56px;
    /* color: #151B31; */
    font-size: 28px;
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

.service-card p {
    /* color: #6D6F75; */
    line-height: 160.4%;
    font-size: 18px;
}
/* Services-Page */

/* Portfolio */
ul.overview-nav.d2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

ul.overview-nav.d2 li a {
    padding: 20px;
    border-radius: 10px;
    background: #6754E9;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 118.523%;
    font-family: var(--font-heading);
}

ul.overview-nav.d2 li.active a {
    background: #1E1176;
    color: #fff;
}
/* Portfolio */


/* Contact */
section.contact-sec {
    margin-top: 150px;
}
.form-wrap {
    padding: 30px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 10px 10px 0px 0px #1E1176;
}

.form-wrap h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 1.5rem;
    line-height: 33.6px;
    letter-spacing: -0.6px;
}

.form-wrap .field input,.form-wrap .field textarea {
    border-radius: 10px;
    background: #FFF;
    padding: 1rem 26px;
    border: 0;
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #E2E2E2;
}

.form-wrap button {
    border-radius: 10px;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.06), 0px 4px 6px -1px rgba(0, 0, 0, 0.10);
    padding: 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 102.523%;
    border: 0;
    width: 100%;
    transition: .5s ease;
    background: #1E1176;
}

body.contact {
    background: linear-gradient(108deg, rgba(97, 78, 224, 0.13) 0%, rgba(97, 78, 224, 0.70) 100%, rgba(97, 78, 224, 0.32) 100%);
}
.contact-card {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 1px 6px 44px 0px rgba(220, 228, 255, 0.60);
    padding: 30px;
    min-height: 250px;
}

.contact-card h4 {
    margin: 1.5rem 0;
    color: #232;
    font-size: 30px;
    font-weight: 600;
}

.contact-card p, .contact-card a {
    color: #223322;
    font-size: 20px;
    font-weight: 500;
  
    line-height: 30px;
}
span.sep {
    border-radius: 7px;
    background: #E9E5FF;
    width: 100%;
    display: block;
    margin: 1.5rem 0;
    height: 4px;
    position: relative;
}

span.sep::before {
    content: "";
    position: absolute;
    width: 30%;
    height: 100%;
    background: #FFBE11;
    border-radius: 7px;
}
/* Contact */

@media (max-width: 1440px) {
    .banner-heading br {
        display: none;
    }
    
    h1.banner-heading {
        font-size: 50px;
        line-height: 69px;
    }
    
    .mainBanner::before {
        opacity: .6;
        bottom: -23%;
        left: -15%;
        width: 300px;
    }
    
    .mainBanner::after {
        width: 400px;
        top: -22%;
        right: -15%;
        opacity: .5;
    }
    
    .banner-img .cont-2 {
        right: -8%;
        top: 0%;
        width: 150px;
    }
    span.circle {
        opacity: .3;
    }
    .banner-img .cont-1{
        bottom: 10%;
    }
}

@media (max-width: 1200px) {
    ul.overview-nav.d2 li a {
        font-size: 16px;
    }
    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%);
        justify-content: space-between;
    }
    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;
    }
    
}

@media (max-width : 1025px){
    .contact h2 {
        font-size: 40px;
    }
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    section.statisfaction-sec h2 {
        line-height: 50px;
        font-size: 36px;
    }
    span.circle {
        width: 450px;
        height: 450px;
    }
    .contact-card {
        margin-bottom: 1.5rem;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
/* Styles */
span.elem2 {
    left: 30%;
}
}
/* iPads (landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {
/* Styles */
}
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
    .reverse {
        flex-direction: column-reverse;
    }
    .vission-card {
        margin-bottom: 1.5rem;
    }
    
    .about-card {
        margin: 1.5rem 0;
    }
    
    section.statisfaction-sec h2 {
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    .banner-img {
        display: none;
    }
    
    .mainBanner::before, .mainBanner::after {
        content: none;
    }
    
    .elem1, .elem2 {
        display: none;
    }
    
    .banner-heading br {
        display: none;
    }
    ul.f-links {
        margin: 2rem 0;
    }
    .counter-wrap {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    section.trusted ul {
        margin-top: 1rem;
    }
    
    .services-list {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }
    
    .services-list ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .services-list ul li {
        width: 48%;
    }
    
    .service-detail {
        border-radius: 20px;
        padding: 20px;
    }
    
    .sec-heading h2 {
        font-size: 40px;
        line-height: 58px;
    }
    
    .copyright .copyright-content {
        flex-direction: column;
        gap: 20px;
    }
    .about-sec h3 {
        font-size: 36px;
        margin-bottom: 1rem;
    }
    ul.overview-nav.d2 {
        flex-wrap: wrap;
    }
}


/* 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) {
    .about-sec h3 {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }
    .reverse {
        flex-direction: column-reverse;
    }
    .contact::before, .contact::after {
        content: none;
    }
    .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;
        font-size: 14px;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    .mainBanner::after, .mainBanner::before {
        content: none;
    }
    
    .elem1, .elem2 {
        display: none;
    }
    
    h1.banner-heading span.bottom-elem::before {
        bottom: -24px;
        opacity: .6;
    }
    
    .counter-wrap {
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        padding: 20px 0;
    }
    
    .choose-wrap {
        padding: 20px;
    }
    
    .choose-wrap::before {
        content: none;
    }
    
    ul.f-links {
        margin: 2rem 0;
    }
    
    .copyright {
        text-align: center;
        padding: 1rem 0;
    }
    .copyright a {
        font-size: 14px;
    }
    section {
        padding: 1rem 0;
    }
    .vission-card {
        margin-top: 1.5rem;
    }
    .about-card .sub {
        font-size: 14px;
    }
    
    .about-card {
        margin-top: 1.5rem;
    }
    section.statisfaction-sec h2 {
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 1.5rem;
    }
    
    section.statisfaction-sec p {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }
    ul.overview-nav.d2 {
        flex-direction: column;
    }
    
    ul.overview-nav.d2 li a {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    .testi-card p {
        font-size: 18px;
    }
    
    .testi-card {
        min-height: auto;
    }
    .choose-wrap ul li p {
        font-size: 16px;
    }
    section.trusted ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: start;
        margin-top: 1rem;
    }
    
    section.trusted ul li {
        width: 47%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 10px;
    }
    
    .services-list {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 1.5rem;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .services-list ul li a {
        font-size: 16px;
        padding: 16px;
        white-space: nowrap;
    }
    
    .services-list ul {
        flex-direction: revert;
    }
    
    .service-detail {
        padding: 20px;
        border-radius: 20px;
    }
    
    .service-detail p {
        font-size: 16px;
        line-height: 24px;
    }
    
    ul.choose-list {
        grid-template-columns: repeat(1 , 1fr);
        border-top: 0;
        border-left: 2px dashed #D7D1FE;
    }
    
    ul.choose-list li {
        padding: 0;
        padding-left: 2rem;
    }
    
    ul.choose-list li::before {
        left: -.5rem;
        top: 0px;
    }
    
    .testi-slider p {
        font-size: 18px;
        line-height: 28px;
    }
    
    .copyright .copyright-content {
        flex-direction: column;
        gap: 1rem;
    }
}