@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a,
button {
    box-shadow: none;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-bottom: 0;
}

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

.btn-primary {
    background-color: #ffce00;
    color: #0a0803;
    border-color: #ffce00;
}
.btn-primary:hover {
    background-color: #0b0b77;
}

.btn-outline-black {
    border-color: #0a0803;
    border-width: 2px;
    border-radius: 0;
    color: #0a0803;
}
.btn-outline-black .icon svg g rect {
    transition: all 0.3s ease;
}
.btn-outline-black:hover {
    background-color: #0b0b77;
    color: #fff;
}
.btn-outline-black:hover .icon svg g rect {
    fill: #fff;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: "Poppins", sans-serif;
    min-width: 360px;
    overflow-x: hidden;
    background-color: #f1f3f2;
}

.navbar.scrolled {
    background-color: #0b0b77;
    transition: 0.5s ease;
}
.navbar .navbar-brand .navbar-logo {
    max-width: 150px;
}
.navbar .navbar-toggler {
    box-shadow: none;
}
.navbar .offcanvas {
    background-color: #ffce00;
}
.navbar .offcanvas .navbar-canvas-logo {
    max-width: 50px;
}
.navbar .offcanvas ul .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: #0b0b77;
    padding-block: 0;
    margin-bottom: 10px;
}
.navbar .offcanvas ul .nav-link.active {
    font-weight: 600;
}
.navbar .offcanvas.offcanvas-end {
    width: 300px;
}

.home-banner {
    position: relative;
}
.home-banner .slide {
    height: 100%;
    width: 100%;
    position: relative;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
}
.home-banner .slide .slide-container {
    margin-top: auto;
}
.home-banner .slide .slide-container .title-1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #ffce00;
}
@media (max-width: 768px) {
    .home-banner .slide .slide-container .title-1 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}
.home-banner .slide .slide-container .title-2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    line-height: 60px;
}
.home-banner .slide .slide-container .title-2 .highlight {
    color: #ffce00;
}
@media (min-width: 576px) {
    .home-banner .slide .slide-container .title-2 {
        max-width: 530px;
    }
}
@media (max-width: 768px) {
    .home-banner .slide .slide-container .title-2 {
        font-size: 30px;
        line-height: 38px;
    }
}
@media (min-width: 992px) {
    .home-banner .slide .slide-container .title-2 {
        max-width: 760px;
    }
}
@media (min-width: 1200px) {
    .home-banner .slide .slide-container .title-2 {
        max-width: 940px;
    }
}
@media (min-width: 1400px) {
    .home-banner .slide .slide-container .title-2 {
        max-width: 1120px;
    }
}
.home-banner .swiper {
    width: 100%;
    height: 640px;
}
.home-banner .swiper .swiper-pagination-bullets {
    margin-right: 20px;
}
.home-banner .swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}
.home-banner .swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #ffce00;
}
.home-banner .swiper .pagination-container {
    position: relative;
    margin-top: -250px;
}
.home-banner .button-container {
    margin-top: -100px;
    position: relative;
    z-index: 9;
}
.home-banner .button-container .btn-outline-white {
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.home-banner .button-container .btn-outline-white:hover {
    background-color: #0b0b77;
}
@media (max-width: 768px) {
    .home-banner .button-container {
        margin-top: -56px;
    }
}

.spacer {
    margin-top: 58px;
}
@media (max-width: 768px) {
    .spacer {
        margin-top: 14px;
    }
}

.search-section {
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: #fff;
}
.search-section .search .btn-primary {
    font-weight: 600;
    font-size: 16px;
    border-radius: 40px;
    height: -moz-fit-content;
    height: fit-content;
}
.search-section .search .btn-primary:hover {
    background-color: #0b0b77;
    color: #fff;
}
@media (max-width: 768px) {
    .search-section .search {
        flex-wrap: wrap;
    }
    .search-section .search .btn-primary {
        width: 100%;
    }
}
.search-section .search .search-wrapper {
    width: 100%;
    flex-wrap: wrap;
    /* gap: 14px;*/
    gap: 10px;
}
.search-section .search .search-wrapper .field {
    flex: 1;
}
@media (max-width: 1199px) {
    .search-section .search .search-wrapper .field {
        min-width: 25%;
    }
}
@media (max-width: 768px) {
    .search-section .search .search-wrapper .field {
        min-width: 100%;
    }
}
.search-section .wrapper {
    position: relative;
}
.search-section .wrapper .dropdown {
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 40px;
    position: relative;
}
.search-section .wrapper .dropdown::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 12px;
    z-index: 9;
    width: 10px;
    height: 10px;
    border: 2px solid grey;
    border-top: transparent;
    border-right: transparent;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: all 0.3s linear;
}
.search-section .wrapper .dropdown input {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    padding: 12px;
    padding-right: 40px;
    cursor: pointer;
    outline: none;
    border: 1px solid #e8e5e5;
    font-size: 14px;
    position: absolute;
    color: #000;
    font-weight: 500;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.search-section .wrapper .dropdown input::-moz-placeholder {
    color: #000;
}
.search-section .wrapper .dropdown input::placeholder {
    color: #000;
}
.search-section .wrapper .dropdown .options {
    width: 100%;
    border-radius: 9px;
    padding: 8px;
    cursor: pointer;
    background: white;
    border: none;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    /*  font-size: 16px;*/
    font-size: 15px;
    overflow: hidden;
    position: absolute;
    top: 42px;
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
}
.search-section .wrapper .dropdown .options .option {
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    color: #292d34;
}
.search-section .wrapper .dropdown .options .option:hover {
    color: white;
    background: #5bc5fa;
    box-shadow: 0 10px 25px rgba(42, 179, 248, 0.4);
}
.search-section .wrapper .dropdown.opened .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99999;
}
.search-section .wrapper .dropdown.opened::before {
    transform: rotate(-225deg);
    top: 16px;
}

.about-section {
    padding-top: 50px;
    background-color: #f1f2f3;
}
.about-section .image-wrapper {
    padding-top: 150px;
    position: relative;
}
.about-section .image-wrapper .yellow-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffce00;
    position: absolute;
    left: 40px;
    top: 120px;
}
.about-section .image-wrapper .yellow-square {
    width: 24px;
    height: 24px;
    border: 2px solid #ffce00;
    position: absolute;
    left: 180px;
    top: 120px;
}
@media (max-width: 576px) {
    .about-section .image-wrapper .yellow-square {
        left: 120px;
    }
}
.about-section .image-wrapper .grey-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #727894;
    position: absolute;
    top: 80px;
    left: 460px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .about-section .image-wrapper .grey-circle {
        left: 400px;
    }
}
@media (max-width: 576px) {
    .about-section .image-wrapper .grey-circle {
        left: 360px;
    }
}
@media (max-width: 500px) {
    .about-section .image-wrapper .grey-circle {
        left: 300px;
    }
}
.about-section .image-wrapper .grey-square {
    width: 12px;
    height: 12px;
    border: 2px solid #c3c3c3;
    position: absolute;
    top: 30px;
    left: 260px;
}
@media (max-width: 576px) {
    .about-section .image-wrapper .grey-square {
        left: 200px;
    }
}
.about-section .image-wrapper .about-left-img {
    max-width: 500px;
    width: 100%;
    display: block;
}
@media (max-width: 992px) {
    .about-section .image-wrapper .about-left-img {
        margin-inline: auto;
        max-width: 440px;
    }
}
.about-section .image-wrapper .white-dots {
    position: absolute;
    max-width: 140px;
    left: 0;
    top: 10px;
}
.about-section .about-content {
    padding-top: 0;
    padding-bottom: 60px;
    position: relative;
    height: 100%;
}
@media (min-width: 992px) {
    .about-section .about-content {
        padding-top: 56px;
    }
}
.about-section .about-content .heading-sec {
    border-left: 6px solid #ffce00;
    padding-left: 20px;
    margin-bottom: 36px;
}
@media (max-width: 768px) {
    .about-section .about-content .heading-sec {
        margin-bottom: 24px;
    }
}
.about-section .about-content .heading-sec .title-1 {
    color: #0a0803;
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
}
@media (max-width: 768px) {
    .about-section .about-content .heading-sec .title-1 {
        font-size: 18px;
        line-height: 24px;
    }
}
.about-section .about-content .heading-sec .title-2 {
    font-size: 40px;
    font-weight: 600;
    color: #0a0803;
    line-height: 50px;
}
@media (max-width: 768px) {
    .about-section .about-content .heading-sec .title-2 {
        font-size: 30px;
        line-height: 38px;
    }
}
.about-section .about-content .description {
    font-size: 14px;
    font-weight: 300;
    color: #0a0803;
    line-height: 24px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .about-section .about-content .description {
        margin-bottom: 24px;
    }
}
.about-section .about-content .count-section {
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
}
.about-section .about-content .count-section .count-sec {
    padding-top: 10px;
    padding-inline: 30px;
}
.about-section .about-content .count-section .count-sec .count {
    font-size: 40px;
    color: #0b0b77;
    font-weight: 700;
}
@media (max-width: 768px) {
    .about-section .about-content .count-section .count-sec .count {
        font-size: 32px;
    }
}
.about-section .about-content .count-section .count-sec .desc {
    font-size: 14px;
    font-weight: 300;
    color: #0a0803;
    line-height: 24px;
    max-width: 80px;
}
@media (max-width: 768px) {
    .about-section .about-content .count-section .count-sec .desc {
        line-height: 18px;
    }
}
.about-section .about-content .count-section .count-sec.border-count-sec {
    border-left: 1px dashed #a0a0a0;
    border-right: 1px dashed #a0a0a0;
}
.about-section .about-content .plant-img {
    position: absolute;
    right: 40px;
    bottom: 0;
}

.services-section {
    padding-top: 100px;
    background-color: #fff;
}
.services-section .title-sec {
    position: relative;
}
.services-section .title-sec .heading-sec {
    border-left: 6px solid #0b0b77;
    padding-left: 24px;
    margin-bottom: 36px;
}
@media (max-width: 768px) {
    .services-section .title-sec .heading-sec {
        margin-bottom: 24px;
    }
}
.services-section .title-sec .heading-sec .title-1 {
    font-size: 16px;
    font-weight: 400;
    color: #0a0803;
    line-height: 26px;
}
.services-section .title-sec .heading-sec .title-2 {
    font-size: 40px;
    font-weight: 600;
    color: #0a0803;
}
@media (max-width: 768px) {
    .services-section .title-sec .heading-sec .title-2 {
        font-size: 32px;
        line-height: 38px;
    }
}
.services-section .title-sec .description {
    font-size: 14px;
    color: #0a0803;
    font-weight: 300;
    line-height: 24px;
    margin-left: 30px;
    margin-bottom: 36px;
}
@media (max-width: 768px) {
    .services-section .title-sec .description {
        margin-bottom: 24px;
    }
}
.services-section .title-sec .dots-grey {
    position: absolute;
    top: -40px;
    right: 0;
    max-width: 160px;
}
@media (max-width: 768px) {
    .services-section .title-sec .dots-grey {
        max-width: 140px;
        top: -60px;
    }
}
.services-section .icon-section {
    margin-left: 30px;
    margin-bottom: 20px;
}
.services-section .icon-section .icon-box {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 30px;
}
.services-section .services-left-sec {
    position: relative;
    height: 100%;
    padding-bottom: 80px;
}
.services-section .services-left-sec .yellow-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffce00;
    position: absolute;
    left: 0px;
    bottom: 20px;
}
.services-section .services-left-sec .yellow-square {
    width: 24px;
    height: 24px;
    border: 2px solid #ffce00;
    position: absolute;
    left: 150px;
    bottom: 20px;
}
.services-section .services-left-sec .grey-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #727894;
    position: absolute;
    bottom: 80px;
    left: 360px;
}
@media (max-width: 400px) {
    .services-section .services-left-sec .grey-circle {
        left: 300px;
    }
}
.services-section .services-left-sec .grey-square {
    width: 12px;
    height: 12px;
    border: 2px solid #727894;
    position: absolute;
    bottom: 114px;
    left: 220px;
}
.services-section .image-wrapper .services-right-img {
    max-width: 500px;
    width: 100%;
    display: block;
}
@media (max-width: 992px) {
    .services-section .image-wrapper .services-right-img {
        max-width: 440px;
        margin-inline: auto;
    }
}
.services-section .btn-container {
    margin-left: 30px;
}

.contact-section {
    background: #0b0b77;
}
.contact-section .section-wrapper {
    padding-block: 60px;
    background: url("../img/bg-grid-lines.png");
}
.contact-section .heading-sec {
    position: relative;
}
.contact-section .heading-sec .title-1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.contact-section .heading-sec .title-2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}
.contact-section .heading-sec .title-2 .highlight {
    color: #ffce00;
}
.contact-section .heading-sec .plant-img {
    position: absolute;
    bottom: -60px;
    right: 0;
    max-width: 50px;
}
@media (max-width: 992px) {
    .contact-section .heading-sec .plant-img {
        bottom: -150px;
    }
}
.contact-section .contact-sec .subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
.contact-section .contact-sec .btn-outline-white {
    border-radius: 0;
    border: 2px solid #fff;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
}
.contact-section .contact-sec .btn-outline-white:hover {
    background-color: #ffce00;
    border-color: #ffce00;
}

.testimonial-section {
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
}
.testimonial-section .carousel-wrapper {
    padding-inline: 30px;
}
.testimonial-section .testimonial-swiper {
    width: 100%;
    min-height: 440px;
}
.testimonial-section .testimonial-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: #ababab;
    opacity: 1;
}
.testimonial-section .testimonial-swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #ffce00;
}
.testimonial-section .testimonial-card {
    position: relative;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid #0b0b77;
    margin-top: 60px;
    padding-inline: 30px;
    padding-bottom: 36px;
    padding-top: 80px;
    background-color: #fff;
}
.testimonial-section .testimonial-card .avatar {
    position: absolute;
    top: -50px;
    left: 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ffce00;
    overflow: hidden;
}
.testimonial-section .testimonial-card .avatar .avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonial-section .testimonial-card .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}
.testimonial-section .testimonial-card .card-content .title {
    font-size: 20px;
    font-weight: 700;
    color: #0b0b77;
    margin-bottom: 6px;
}
.testimonial-section .testimonial-card .card-content .designation {
    font-size: 16px;
    color: #0a0803;
    font-weight: 400;
}
.testimonial-section .testimonial-card .card-content .description {
    font-size: 16px;
    color: #0a0803;
    font-weight: 400;
    margin-top: 24px;
    display: -webkit-box;
  /*  -webkit-line-clamp: 3;*/
   -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-section .img-wrapper {
    position: relative;
}
.testimonial-section .img-wrapper .plant-img {
    position: absolute;
    left: 0;
    bottom: -50px;
    z-index: 999;
    max-width: 70px;
}
.testimonial-section .top-dots-section {
    position: relative;
}
.testimonial-section .top-dots-section .yellow-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffce00;
    position: absolute;
    right: 340px;
    top: 20px;
}
@media (max-width: 1200px) {
    .testimonial-section .top-dots-section .yellow-circle {
        right: 300px;
    }
}
@media (max-width: 992px) {
    .testimonial-section .top-dots-section .yellow-circle {
        right: 360px;
    }
}
@media (max-width: 768px) {
    .testimonial-section .top-dots-section .yellow-circle {
        top: 0;
        right: 300px;
    }
}
@media (max-width: 576px) {
    .testimonial-section .top-dots-section .yellow-circle {
        top: -20px;
        right: 280px;
    }
}
.testimonial-section .top-dots-section .yellow-square {
    width: 24px;
    height: 24px;
    border: 2px solid #ffce00;
    position: absolute;
    right: 210px;
    top: 15px;
}
@media (max-width: 576px) {
    .testimonial-section .top-dots-section .yellow-square {
        right: 170px;
    }
}
.testimonial-section .top-dots-section .grey-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #727894;
    position: absolute;
    top: -30px;
    right: 0px;
}
.testimonial-section .top-dots-section .grey-square {
    width: 12px;
    height: 12px;
    border: 2px solid #727894;
    position: absolute;
    top: -60px;
    right: 140px;
}
.testimonial-section .bottom-dots-section {
    position: relative;
}
.testimonial-section .bottom-dots-section .yellow-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffce00;
    position: absolute;
    left: -10px;
    bottom: -10px;
}
.testimonial-section .bottom-dots-section .yellow-square {
    width: 24px;
    height: 24px;
    border: 2px solid #ffce00;
    position: absolute;
    left: 110px;
    bottom: -25px;
}
.testimonial-section .bottom-dots-section .grey-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #727894;
    position: absolute;
    bottom: 30px;
    left: 360px;
}
@media (max-width: 400px) {
    .testimonial-section .bottom-dots-section .grey-circle {
        left: 300px;
    }
}
.testimonial-section .bottom-dots-section .grey-square {
    width: 12px;
    height: 12px;
    border: 2px solid #727894;
    position: absolute;
    bottom: 60px;
    left: 220px;
}

.page-banner {
    min-height: 200px;
    padding-top: 100px;
    padding-bottom: 50px;
    background: linear-gradient(180deg, #0b0b77 0%, #020235 113.33%);
}
.page-banner .breadcrumb .breadcrumb-item a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.page-banner .breadcrumb .breadcrumb-item.active a {
    color: #ffce00;
}
.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    margin-top: 2px;
}
.page-banner .title-sec {
    text-align: center;
}
.page-banner .title-sec .title-1 {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}
@media (max-width: 768px) {
    .page-banner .title-sec .title-1 {
        font-size: 18px;
    }
}
.page-banner .title-sec .title-2 {
    font-size: 40px;
    font-weight: 600;
    color: #ffce00;
}
@media (max-width: 768px) {
    .page-banner .title-sec .title-2 {
        font-size: 30px;
    }
}
.page-banner .dots-section {
    position: relative;
}
.page-banner .dots-section .yellow-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffce00;
    position: absolute;
    left: 0px;
    bottom: -10px;
}
.page-banner .dots-section .yellow-square {
    width: 24px;
    height: 24px;
    border: 2px solid #ffce00;
    position: absolute;
    left: 140px;
    bottom: -25px;
}
@media (max-width: 992px) {
    .page-banner .dots-section .yellow-square {
        left: 60px;
    }
}
@media (max-width: 576px) {
    .page-banner .dots-section .yellow-square {
        left: 120px;
    }
}
.page-banner .dots-section .grey-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #727894;
    position: absolute;
    top: -50px;
    left: 330px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .page-banner .dots-section .grey-circle {
        left: 300px;
    }
}
@media (max-width: 768px) {
    .page-banner .dots-section .grey-circle {
        top: -80px;
    }
}
@media (max-width: 576px) {
    .page-banner .dots-section .grey-circle {
        left: 360px;
    }
}
@media (max-width: 500px) {
    .page-banner .dots-section .grey-circle {
        left: 300px;
    }
}
.page-banner .dots-section .grey-square {
    width: 12px;
    height: 12px;
    border: 2px solid #c3c3c3;
    position: absolute;
    top: -80px;
    left: 220px;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .page-banner .dots-section .grey-square {
        top: -100px;
    }
}
@media (max-width: 992px) {
    .page-banner .dots-section .grey-square {
        top: -100px;
    }
}
@media (max-width: 576px) {
    .page-banner .dots-section .grey-square {
        left: 200px;
    }
}

.plans-section {
    padding-top: 50px;
    padding-bottom: 80px;
}
.plans-section .plans-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}
@media (max-width: 576px) {
    .plans-section .plans-section-title {
        font-size: 20px;
    }
}
.plans-section .h-p-card {
    background: #ffffff;
    box-shadow: -2px 3px 7.4px 3px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
}
.plans-section .h-p-card .thumbnail-wrapper {
    height: 180px;
    overflow: hidden;
}
.plans-section .h-p-card .thumbnail-wrapper .thumbnail {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
    transition: 0.4s ease;
}
.plans-section .h-p-card:hover .thumbnail-wrapper .thumbnail {
    transform: scale(1.2);
}
.plans-section .h-p-card .card-content {
    padding: 16px 12px;
}
.plans-section .h-p-card .card-content .code {
    font-size: 10px;
    font-weight: 400;
    color: #0b0b77;
    line-height: 14px;
}
.plans-section .h-p-card .card-content .price {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #0a0803;
}
.plans-section .h-p-card .card-content .btn-blue {
    font-size: 14px;
    font-weight: 500;
    background-color: #0b0b77;
    color: #fff;
}
.plans-section .h-p-card .card-content .btn-primary {
    font-size: 14px;
    font-weight: 500;
}
.plans-section .pagination {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.plans-section .pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0;
    color: #6C757D;
}
.plans-section .pagination .page-item.active .page-link {
    background-color: #7749F8;
    border-color: #7749F8;
    color: #fff;
}
.plans-section .sort-dropdown {
   /* max-width: 180px;*/
    max-width: 223px;
    width: 100%;
}
.plans-section .wrapper {
    position: relative;
}
.plans-section .wrapper .dropdown {
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 40px;
    position: relative;
}
.plans-section .wrapper .dropdown::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 12px;
    z-index: 9;
    width: 10px;
    height: 10px;
    border: 2px solid grey;
    border-top: transparent;
    border-right: transparent;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: all 0.3s linear;
}
.plans-section .wrapper .dropdown input {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    padding: 12px;
    padding-right: 40px;
    cursor: pointer;
    outline: none;
    border: 1px solid #e8e5e5;
    font-size: 14px;
    position: absolute;
    color: #000;
    font-weight: 500;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.plans-section .wrapper .dropdown input::-moz-placeholder {
    color: #000;
}
.plans-section .wrapper .dropdown input::placeholder {
    color: #000;
}
.plans-section .wrapper .dropdown .options {
    width: 100%;
    border-radius: 9px;
    padding: 8px;
    cursor: pointer;
    background: white;
    border: none;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    font-size: 16px;
    overflow: hidden;
    position: absolute;
    top: 42px;
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
}
.plans-section .wrapper .dropdown .options .option {
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    color: #292d34;
}
.plans-section .wrapper .dropdown .options .option:hover {
    color: white;
    background: #5bc5fa;
    box-shadow: 0 10px 25px rgba(42, 179, 248, 0.4);
}
.plans-section .wrapper .dropdown.opened .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99999;
}
.plans-section .wrapper .dropdown.opened::before {
    transform: rotate(-225deg);
    top: 16px;
}
.plans-section .no-results {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.plans-section .no-results .no-result-img {
    max-width: 70px;
    margin-bottom: 24px;
}
.plans-section .no-results .success-img {
    max-width: 82px;
    margin-bottom: 24px;
}
.plans-section .no-results .title-no-result {
    font-size: 24px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
}
.plans-section .no-results .description-no-result {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #756c6c;
    max-width: 300px;
    text-align: center;
}
.plans-section .no-results .mw-full {
    max-width: 100%;
}
.plans-section .no-results .progress-track {
    max-width: 300px;
    width: 100%;
    height: 14px;
    border-radius: 8px;
    background-color: #ffce00;
    position: relative;
}
.plans-section .no-results .progress-track .percentage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}
.plans-section .no-results .progress-track .progress-bar {
    height: 100%;
    background-color: #0b0b77;
    border-radius: 8px;
}

.details-modal .code {
    font-size: 16px;
    color: #0a0803;
    font-weight: 700;
}
.details-modal .modal-title {
    font-size: 24px;
    color: #0a0803;
    font-weight: 600;
    line-height: 28px;
}
.details-modal .modal-body {
    padding-top: 40px;
}
@media (max-width: 992px) {
    .details-modal .modal-body {
        padding-top: 20px;
    }
}
.details-modal .modal-body .label {
    font-size: 14px;
    font-weight: 400;
    color: #a3a3a3;
    margin-bottom: 6px;
    line-height: 16px;
}
.details-modal .modal-body .content {
    font-size: 16px;
    font-weight: 500;
    color: #0a0803;
    line-height: 20px;
}

.article-section-wrapper {
    padding-top: 30px;
    padding-bottom: 80px;
}

.contact-form-section {
    padding-top: 60px;
    padding-bottom: 40px;
}
@media (max-width: 992px) {
    .contact-form-section .img-wrapper .contact-left-img {
        max-width: 500px;
        width: 100%;
        margin-inline: auto;
    }
}
.contact-form-section .form-section .title {
    font-size: 24px;
    font-weight: 600;
    color: #0a0803;
    margin-bottom: 6px;
}
.contact-form-section .form-section .description {
    font-size: 16px;
    font-weight: 300;
    color: #0a0803;
    margin-bottom: 30px;
}
.contact-form-section .form-section .btn-blue {
    background-color: #0b0b77;
    color: #fff;
}

.connect-section {
    padding-block: 16px;
    background-color: #ffce00;
}
.connect-section .c-box .title {
    font-size: 16px;
    font-weight: 600;
    color: #0a0803;
    margin-bottom: 6px;
}
.connect-section .c-box .icon-text {
    display: flex;
    align-items: center;
}
.connect-section .c-box .smiley-img {
    max-width: 50px;
}

.article-section {
    padding-top: 66px;
    padding-bottom: 40px;
}
.article-section.service-sec {
    padding-top: 30px;
    padding-bottom: 30px;
}
.article-section .img-wrapper img {
    border-radius: 4px;
}
.article-section .title-1 {
    font-size: 20px;
    font-weight: 300;
    color: #0a0803;
    line-height: 24px;
    margin-bottom: 5px;
}
.article-section .title-2 {
    font-size: 24px;
    font-weight: 600;
    color: #0a0803;
    line-height: 28px;
    margin-bottom: 40px;
}
.article-section .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #756c6c;
    margin-bottom: 20px;
}

.footer {
    background-color: #111010;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
.footer ul {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .footer ul {
        justify-content: center;
        width: 100%;
    }
}
.footer ul li .link {
    font-size: 14px;
    color: #c3c3c3;
    font-weight: 300;
}
.footer ul li .link.active {
    font-weight: 500;
    color: #ffce00;
}
.footer ul li .link:hover {
    color: #ffce00;
}
.footer .copy-right {
    font-size: 14px;
    color: #3e3e3e;
    font-weight: 400;
    position: relative;
    z-index: 1;
}
.footer .social-icons {
    position: relative;
    z-index: 1;
}
.footer .footer-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    max-width: 120px;
}
@media (max-width: 992px) {
    .footer .footer-logo {
        max-width: 160px;
        left: unset;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }
}
@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes reverse-rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
.rotate {
    animation: rotating 5s linear infinite;
}

.rotate-2 {
    animation: reverse-rotating 3s linear infinite;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.floating-2 {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, 0px);
    }
}/*# sourceMappingURL=styles.css.map */