@import url(./responsive.css);

@font-face {
    font-family: 'ArialCustom';
    src: url('../fonts/ARIAL.TTF') format('truetype');
}

@font-face {
    font-family: 'CandaraCustom';
    src: url('../fonts/Candara.ttf') format('truetype');
}

@font-face {
    font-family: 'CenturyGothicCustom';
    src: url('../fonts/GOTHIC.TTF') format('truetype');
}

:root {
    --green: #4E751B;
    --blue: #041340;
    --light: #EBE9E9;
    --white: #ffffff;
    --black: #000;
    --heading: #04133F;
    --sub: #595959;
    --arial: 'ArialCustom', sans-serif;
    --century: 'CenturyGothicCustom', sans-serif;
    --candara: 'CandaraCustom', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    position: relative;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    margin: 0;
    list-style: none;
}

.btn {
    font-size: 16px;
    color: var(--white);
    transition: 0.3s all;
    padding: 15px 30px;
    border-radius: 6px;
    display: inline-block;
    font-family: var(--arial);
    background-color: var(--green);
}

.btn:hover {
    background-color: #04133F;
}

.my_status_btn {
    background-color: #04133F !important
}


.my_status_btn:hover {
    background-color: var(--green) !important
}




.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.full_width {
    width: 100%;
    padding: 80px 25px;
}

.container {
    height: 100%;
    margin: 0 auto;
    max-width: 1340px;
}

p {
    color: var(--sub);
    font-family: var(--candara);
}

img {
    display: block;
}


/* Header */
.header_top {
    padding: 10px 25px;
    background-color: var(--blue);
}

.header_top div {
    gap: 15px;
}

.header_top a img {
    height: 18px;
    object-fit: contain;
}

header {
    width: 100%;
    padding: 15px 25px;
    /* background: var(--light); */
    background: #ebe9e933;
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 9;
}

.logo a img {
    height: 60px;
}

nav ul a {
    padding: 36px 20px;
    font-size: 17px;
    color: #292929;
    transition: 0.3s all;
    font-family: var(--arial);
    transform: scale(1);
}



.nav_support {
    gap: 25px;
}

.nav_support div {
    gap: 5px;
}

.nav_support div p {
    gap: 5px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    font-family: var(--arial);
    justify-content: center;

}

.nav_support div p a {
    color: var(--black);
    font-weight: 700
}

.nav_support div p span {
    font-size: 14px;
    color: var(--sub);
}

nav ul li:hover ul {
    display: block;
}




.bar_icon {
    width: 30px;
    cursor: pointer;
}

.bar_icon span {
    display: block;
    height: 3px;
    background: var(--blue);
    margin: 6px 0;
    border-radius: 12px;
    transition: 0.4s ease;
}

/* Toggle Active State */
.bar_icon.bar_toogle .fb2 {
    opacity: 0;
}

.bar_icon.bar_toogle .fb1 {
    transform: translateY(9px) rotate(45deg);
}

.bar_icon.bar_toogle .fb3 {
    transform: translateY(-9px) rotate(-45deg);
}

/* home_hero */


.common_hero {
    min-height: fit-content;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.hero_ul {
    gap: 31px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
}

.hero_ul li {
    font-size: 20px;
    color: white;
    margin: 10px 0px 10px 0px;
    font-weight: 600;
    font-family: var(--arial);
    list-style: disc;
    letter-spacing: 7px;
}


.home_hero {
    background-image: url(../img/home_hero.png);
}


.about_hero {
    background-image: url(../img/about_hero.png);
}

.service_hero {
    background-image: url(../img/service_hero_img.png)
}

.equipment-transport-services {
    background-image: url(../img/Equipment-Transport-Services.png);
}

.data-sanitisation-services {
    background-image: url(../img/Data-Sanitisation-Services.png);
}

.assets_recovery-services {
    background-image: url(../img/Asset-Recovery-Services.png);
}

.decommissioning_service {
    background-image: url(../img/Decommissioning-Services.png);
}

.contact_hero {
    background-image: url(../img/contact-page-background.jpg);
}

.service_hero p,
.equipment-transport-services p,
.data-sanitisation-services p,
.assets_recovery-services p,
.decommissioning_service p {
    color: var(--light) !important;
}

.contact_hero {
    z-index: 1;
    position: relative;
    padding: 120px 25px;
}

.contact_hero::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: linear-gradient(45deg, #0b1e3f, transparent);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact_hero h1 {
    font-size: 37px;
    color: var(--white);
    font-family: var(--century);
    text-transform: uppercase;
}

.contact_hero .breadcrumbs a {
    color: var(--green);
    z-index: 3 !important;
}

.home_hero>div {
    padding-bottom: 80px;
}


.home_hero h1 {
    font-size: 47px;
    color: var(--white);
    font-family: var(--century);
    text-transform: uppercase;
}

.home_about .container {
    gap: 45px;
}

.common_hero h1 {
    font-size: 37px;
    color: var(--white);
    font-family: var(--century);
    text-transform: uppercase;
}

.common_hero.home_hero h1 {
    font-size: 50px;
}

.common_hero a.btn {
    font-weight: 700;
    margin-top: 45px;
    font-family: var(--century);
}


.common_hero h2 {
    font-size: 55px;
    color: var(--white);
    font-family: var(--century);
    text-transform: uppercase;
}

.home_hero a {
    margin-top: 45px;
    font-family: var(--century);
}

.product_engineering {
    width: 100%;
    padding: 0px 25px
}

.product_engineering_box {
    margin: 0 auto;
    max-width: 1098px;
    margin-top: -80px;
    align-items: stretch;
}

.product_engineering_box {
    gap: 25px;
}

.product_engineering_box img {
    max-width: 60px;
}

.product_engineering_box>div {
    border-radius: 6px;
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product_engineering_box>div h4 {
    font-size: 18px;
    text-align: center;
    color: var(--heading);
    font-family: var(--century);
    text-transform: uppercase;
    padding: 30px 15px 29px 15px;
}

.product_engineering_box>div>div {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0px 15px 20px 15px;
}

.product_engineering_box>div>div::after {
    left: 0px;
    bottom: 0;
    content: '';
    width: 100%;
    height: 6px;
    position: absolute;
    border-radius: 8px;
    background-color: var(--green);
}

.product_engineering_box>div>div span {
    color: var(--sub);
    line-height: 25px;
    font-family: var(--candara);
}

.home_about .h_about_img {
    width: 45%;
}




.home_about .h_about_info {
    width: 55%;
}


.about_section .h_about_img {
    width: 482px;
}


.about_section .h_about_img img {
    width: 75%;
}


.about_section .h_about_info {
    padding-right: 120px;
    width: calc(100% - 482px);
}









.h_about_info h2 {
    font-size: 37px;
    color: var(--heading);
    font-family: var(--century);
}

.h_about_info p {
    max-width: 100%;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.h_about_info h4 {
    font-size: 22px;
    color: var(--green);
    margin-bottom: 15px;
    font-family: var(--century);
}

.h_about_grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr;
}

.h_about_grid span {
    gap: 15px;
    display: flex;
    color: #292929;
    font-weight: bold;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: var(--century);
    line-height: 25px;
}

.h_about_grid span img {
    margin-top: 8px;
}

.h_about_info a {
    margin-top: 25px;
}

/* home_service */

.home_service {
    position: relative;
}

.home_service.container {
    gap: 60px
}

.home_service::after {
    top: 0;
    left: 0;
    content: '';
    z-index: -1;
    width: 35%;
    height: 100%;
    position: absolute;
    background-color: var(--blue);
}

.home_service::before {
    top: 0;
    right: 0;
    content: '';
    z-index: -1;
    width: 65%;
    height: 100%;
    position: absolute;
    background-color: var(--green);
}

.h_service_info {
    width: 300px;
}

.h_service_slider {
    width: calc(100% - 400px);
    position: relative;
}

.service_pattern {
    position: absolute;
}

.p1 {
    left: 35%;
    top: -30px;
}

.p2 {
    right: 5%;
    bottom: -30px;
}

.h_service_info h4 {
    font-size: 26px;
    color: #629e14;
    font-family: var(--century);
}

.h_service_info h2 {
    font-size: 34px;
    color: var(--white);
    margin: 15px 0px 20px 0px;
    font-family: var(--century);
}

.h_service_info p {
    color: var(--light);
}

.service_flip_box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service_flip_box::after {
    left: 0;
    top: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(359deg, #041340, transparent);
}

.frotn_box>img {
    width: 100%;
    border-radius: 12px;
}

.service_flip_box .absolute_h4 {
    left: 25px;
    z-index: 2;
    bottom: 25px;
    font-size: 20px;
    color: var(--white);
    position: absolute;
    font-family: var(--century);
}

.back_box {
    top: 100%;
    z-index: 2;
    display: flex;
    height: 100%;
    padding: 25px;
    transition: 0.3s all;
    position: absolute;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    background-color: var(--blue);
}

.back_box>img,
.back_box>li>img {
    max-width: fit-content;
}

.back_box p {
    margin: 20px 0px;
    color: var(--white) !important;
}

.back_box li {
    gap: 10px;
    display: flex;
    font-size: 17px;
    color: var(--white);
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
    font-family: var(--candara);
}

.back_box a {
    margin-top: 13px;
    color: var(--white);
    transition: 0.3s all;
    border-radius: 6px;
    padding: 12px 30px;
    display: inline-block;
    max-width: fit-content;
    font-family: var(--candara);
    border: 2px solid var(--light);
}

.back_box a:hover {
    color: var(--blue);
    background-color: var(--white);
}

.service_flip_box:hover .back_box {
    top: 0;
}

#service_flip_slider .owl-nav {
    gap: 15px;
    left: -355px;
    display: flex;
    bottom: -35px;
    position: absolute;
}


/* how_we_work */
.how_we_work h2 {
    font-size: 45px;
    text-align: center;
    font-family: var(--century);
}

.how_we_work>div>p {
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
    line-height: 26px;
    margin-top: 10px;
    font-family: var(--century) !important;
}

.how_we_work_carousel {
    margin-top: 75px;
}

.how_we_work_card {
    padding: 8px;
    text-align: center;
    min-height: 275px;
    border-radius: 12px;
    background-color: var(--light);
}

.how_we_work_card span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    border-radius: 8px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
}

.how_we_work_card img {
    margin: 0 auto;
    object-fit: contain;
    max-height: 40px;
    max-width: 40px;

}

.how_we_work_card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    margin: 15px 0px;
    text-transform: uppercase;
    font-family: var(--century);
}

.how_we_work_card p {
    max-width: 80%;
    color: var(--black);
    margin: 0 auto 20px auto;
}

#how_we_work .owl-item:nth-child(odd) {
    margin-top: 50px;
}

#how_we_work .owl-nav {
    position: absolute;
    top: -75px;
    right: 0;
    display: flex;
    gap: 10px;
}

#how_we_work .owl-nav img {
    width: 45px;
}

.why_choose h2 {
    font-size: 45px;
    color: var(--blue);
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--century);
}

.why_choose>div>p {
    max-width: 570px;
    line-height: 25px;
    text-align: center;
    margin: 0 auto;
}

.why_choose_grid {
    display: grid;
    grid-gap: 25px;
    margin: 0 auto;
    max-width: 85%;
    margin-top: 40px;
    grid-template-columns: 1fr 1fr 1fr;
}

.why_choose_card {
    text-align: center;
    transition: 0.3s all;
    border-radius: 12px;
    padding: 60px 25px;
    background: var(--light);
}

.why_choose_card img {
    width: 55px;
    margin: 0 auto;
}

.why_choose_card h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--heading);
    font-family: var(--century);
}

.why_choose_card p {
    line-height: 25px;
}

.why_choose_card:hover {
    background-color: var(--green);
}

.why_choose_card:hover img {
    filter: brightness(0) invert(1);
}

.why_choose_card:hover h4,
.why_choose_card:hover p {
    color: white;
}

.lets_build {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/lets_build_background.png);
}

.lests_build_img {
    max-width: 450px;
}

.lets_build::after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #4e751be3;
}

.lets_build div {
    z-index: 2;
}

.lets_build h2 {
    font-size: 63px;
    color: var(--white);
    font-family: var(--century);
}

.lets_build a {
    font-size: 20px;
    color: var(--white);
    margin-top: 35px;
    transition: 0.3s all;
    border-radius: 6px;
    padding: 12px 12px;
    display: inline-block;
    background: #213417;
    font-family: var(--century);
}

.lets_build a span {
    width: 40px;
    height: 40px;
    margin-left: 15px;
    transition: 0.3s all;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    background: var(--green);
}

.lets_build a:hover {
    color: var(--green);
    background-color: var(--white);
}

.lets_build a:hover span {
    transform: rotate(33deg);
}

/* faqs */
.faqs_left {
    width: 35%;
    position: relative;

}

.fqqs_right {
    width: 55%;
}

.faqs_left img {
    width: 100%;
    border-radius: 12px !important;
}


.faqs_left::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 12px !important;
    background: #04134094;
}

.faq_absolute {
    z-index: 2;
    bottom: 0;
    right: -84px;
    padding: 15px;
    position: absolute;
    background: var(--green);
    border: 10px solid var(--white);
    border-radius: 12px !important;
}

.faq_absolute h3 {
    font-size: 18px;
    color: var(--white);
    font-family: var(--century);
}

.faq_absolute a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
}

.faq_absolute a img {
    width: 35px;
    transition: 0.3s all;
    transform: scale(1);
}

.faq_absolute a img:hover {
    transform: scale(1.1);
}

.faq_absolute span {
    color: white;
}



.fqqs_right h2 {
    font-size: 32px;
    color: var(--green);
    font-family: var(--century);
}

.faq-container {
    max-width: 100%;
    margin-top: 30px;
}

.faq-item {
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
    background: var(--light);
    border: 1px solid var(--light);
}

.faq-question {
    display: flex;
    cursor: pointer;
    font-weight: 600;
    align-items: center;
    font-size: 17px;
    font-family: var(--arial);
    padding: 15px 20px;
    color: var(--heading);
    justify-content: space-between;
}

.faq-question span {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--green);
}

.faq-question span img {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    font-family: var(--arial);
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
    border-top: 1px solid #d8d8d8;
}

.faq-item.active .faq-question span img {
    transform: rotate(180deg);
}

.testimonial {
    padding-top: 25px;
}

.testimonial h4 {
    font-size: 24px;
    color: var(--green);
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--century);
}

.testimonial h2 {
    font-size: 45px;
    color: var(--heading);
    text-align: center;
    font-family: var(--century);
}

#testimonial_carousel {
    margin-top: 100px;
}

#testimonial_carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -80px;
    display: flex;
    gap: 10px;
}

#testimonial_carousel .owl-nav img {
    width: 45px;
}

.testimonial_card {
    gap: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.img_box img {
    border-radius: 6px;
    width: 115px !important;
    box-shadow: 7px 7px 7px var(--green);
}

.testimonial_info p {
    font-size: 18px;
    color: var(--sub);
    line-height: 30px;
    padding-right: 80px;
    margin-bottom: 10px;
    padding-bottom: 15px;
    font-family: var(--century);
    border-bottom: 2px solid var(--light);

    height: 96px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    gap: 15px;
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content: space-between;
}

.rating .name {
    font-size: 18px;
    font-weight: bold;
    color: var(--heading);
    font-family: var(--century);
}

.rating .desination {
    font-size: 18px;
    display: block;
    color: var(--sub);
    margin-top: 5px;
    font-family: var(--century);
}

.star_rating {
    gap: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home_blog {
    padding-top: 0px
}

.home_blog h2 {
    font-size: 45px;
    text-align: center;
    margin-bottom: 35px;
    color: var(--heading);
    font-family: var(--century);
}

.blog_card img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 6px 6px 0px 0px;
}

.category_box {
    font-size: 14px;
    color: var(--sub);
    font-weight: 700;
    font-family: var(--century);
    text-transform: capitalize;
}

.category_box span {
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--green);
    margin-right: 10px;
    background-color: #4e751b2e;
}

.blog_card h3 {
    font-size: 20px;
    color: var(--heading);
    font-family: var(--century);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog_card a {
    gap: 10px;
    display: flex;
    font-size: 16px;
    color: var(--black);
    align-items: center;
    font-family: var(--century);
}

.blog_card a img {
    width: 30px !important;
    height: 30px !important;
    padding: 7px;
    transition: 0.3s all;
    border-radius: 50px;
    margin-bottom: 0px;
    background: var(--green);
}

.blog_card a:hover img {
    transform: rotate(33deg);
}

.blog_carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    gap: 10px;
}

.blog_carousel .owl-nav img {
    width: 45px;
}

.blog_card_info {
    padding: 10px 15px 0px 15px;
}


.get_in_touch {

    background-color: var(--green);
}

.get_in_touch>div {
    gap: 45px;
}

.get_in_touch>div>div {
    width: 50%;
}

.get_in_touch h2 {
    color: var(--white);
    font-family: var(--century);
}

.get_in_touch p {
    font-size: 17px;
    line-height: 25px;
    color: var(--white);
    margin: 15px 0px 20px 0px;
    font-family: var(--candara);
}

.get_in_touch a {
    gap: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.get_in_touch a img {
    width: 40px;
}

.get_in_touch a span {
    font-size: 17px;
    color: var(--white);
    font-family: var(--century);
}

.get_in_touch form {
    padding: 40px;
    border-radius: 12px;
    background: var(--white);
}

.get_in_touch form h4 {
    font-size: 37px;
    color: var(--heading);
    font-family: var(--century)
}

.input_box input,
select,
textarea {
    width: 100%;
    border: none;
    font-size: 16px;
    margin-top: 15px;
    font-family: var(--century);
    padding: 15px 0px 10px 0px;
    border-bottom: 1px solid var(--light);
}

.input_box input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--green);
}

.input_flex {
    gap: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.submit_button_box {
    margin-top: 25px;
    display: block;
}

.submit_button_box button {
    cursor: pointer;
}

footer {
    background: var(--light);
}

.footer_grid {
    display: grid;
    grid-gap: 45px;
    margin-bottom: 25px;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer_info {
    text-align: center;
}

.footer_info img {
    margin: 0 auto;
    max-width: 200px;
}

.footer_info hr {
    height: 3px;
    width: 180px;
    background: var(--blue);
    margin: 20px auto 15px auto;
}


.footer_info p {
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    color: var(--black);
    font-family: var(--century);
}

footer h4 {
    font-size: 26px;
    color: var(--black);
    margin-bottom: 20px;
    font-family: var(--century);
}

.footer_company a {
    gap: 10px;
    display: flex;
    transition: 0.3s all;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.footer_company a:hover {
    color: var(--green);
    padding-left: 15px;
}


.footer_company a span {
    font-size: 16px;
    color: var(--black);
    font-weight: bold;
    font-family: var(--century);
}


.footer_company li {
    list-style: circle;
    padding-left: 40px;
    margin-bottom: 10px;
    list-style-position: inside !important;
}


.loaction_list li span {
    font-size: 15px;
    color: var(--black);
    font-weight: bold;
    font-family: var(--century);
}


.footer_company.arrow_img a img {
    height: 10px;
    transform: rotate(271deg);
}

.footer_details img {
    width: 30px;
}

.footer_social_media {
    gap: 8px;
    width: 31%;
}

.footer_social_media a img {
    width: 45px;
    transform: scale(1);
    transition: 0.3s all;
}


.footer_social_media a:hover img {
    transform: scale(1.1);
}

.subscription {
    width: 65%;
    display: grid;
    padding: 25px;
    grid-gap: 25px;
    border-radius: 6px;
    background-color: #23314A;
    grid-template-columns: 1.3fr 1fr .5fr;
    align-items: center;
}

.subscription input[type="email"] {
    padding: 15px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    color: var(--white);
    background-color: var(--black);
}

.subscription input[type="email"]:focus {
    outline: none;
}

.subscription h3 {
    color: var(--white);
    font-family: var(--century);
    font-size: 20px;
    margin-bottom: 5px;
}

.subscription p {
    font-size: 18px;
    color: whitesmoke;
}

.copyright {
    font-size: 15px;
    color: var(--white);
    text-align: center;
    padding: 15px 15px;
    font-family: var(--century);
    background: var(--green);
}

.top_to_down {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    background-color: var(--blue);
}

.top_to_down.active {
    opacity: 1;
    visibility: visible;
}

.top_to_down img {
    width: 23px;
    transform: rotate(-60deg);
}

/* About Page */
.breadcrumbs {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    justify-content: flex-start;
}

.breadcrumbs img {
    width: 14px;
}

.breadcrumbs a,
.breadcrumbs span {
    margin-top: 0px;
    color: var(--white);
    font-weight: bold;
    font-family: var(--century);
}

.breadcrumbs a {
    color: var(--green) !important;
}

.breadcrumbs a:hover {
    color: var(--heading);
}

.common_hero p {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-top: 30px;
    line-height: 25px;
    font-family: var(--century);
}

.about_section .right_img>img {
    margin: 0px 0px 0px auto;
    width: 100%;
}

.about_list {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 25px;
}

.about_list li {
    list-style: disc;
    font-size: 16px;
    font-weight: 800;
    margin: 10px 0px 0px 0px;
    font-family: var(--century);
}

.about_absolute_item {
    gap: 25px;
    display: flex;
    margin-top: -130px;
    align-items: stretch;
    padding-right: 13px;
    justify-content: flex-end;
}

.about_absolute_item div {
    display: flex;
    width: 135px;
    border-radius: 12px;
    padding: 20px 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--green);
}

.about_absolute_item div span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    letter-spacing: 1px;
    font-family: var(--century);
}

.about_absolute_item div h4 {
    font-size: 27px;
    color: var(--white);
    font-weight: 700;
    margin-top: 10px;
    font-family: var(--century);
}

.about_absolute_item div h5 {
    font-size: 14px;
    color: var(--white);
    letter-spacing: .5px;
    font-family: var(--century);
}

.mission_vision_section {
    padding-top: 0px;
}

.mission_vision_box {
    padding: 55px 35px;
    min-height: -webkit-fill-available;
}

.mission_box {
    background: var(--blue);
    border-radius: 12px 0px 0px 12px;
}

.vision_box {
    background-color: var(--green);
    border-radius: 0px 12px 12px 0px;
}

.mission_vision_box .icon_flex {
    gap: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mission_vision_box h4 {
    font-size: 30px;
    color: var(--white);
    font-family: var(--century);
}

.mission_vision_box img {
    width: 45px;
}

.mission_vision_box p {
    font-size: 19px;
    line-height: 30px;
    margin-top: 25px;
    color: var(--white);
    font-family: var(--century);
}

.solutionshell_glance {
    background: var(--green);
}

.solutionshell_glance h2 {
    font-size: 45px;
    color: var(--white);
    text-align: center;
    font-family: var(--century);
}

.solutionshell_glance_grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.solutionshell_glance_grid>div h4 {
    font-size: 88px;
    text-align: center;
    color: var(--white);
    font-family: var(--candara);
}

.solutionshell_glance_grid>div p {
    text-align: center;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 10px;
    text-transform: capitalize
}

.our_it_lifecycle h2,
.about_expert_team h2 {
    font-size: 45px;
    color: var(--heading);
    text-align: center;
    font-family: var(--century);
}

#our_it_lifecycle_slider {
    padding-top: 70px;
}

.our_it_lifecycle_card {
    display: flex;
    height: 100%;
    padding: 60px 25px;
    transition: 0.3s all;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s all;
    background-color: var(--green);
}

.our_it_lifecycle_card:hover {
    background-color: var(--blue);
}

.our_it_lifecycle_card img {
    max-width: fit-content
}

.our_it_lifecycle_card h4 {
    font-size: 18px;
    margin-top: 20px;
    color: var(--white);
    font-family: var(--century);
}

.our_it_lifecycle_card p {
    margin: 10px 0px 20px 0px;
    color: var(--white) !important;
}

.our_it_lifecycle_card a {
    margin-top: 13px;
    color: var(--white);
    transition: 0.3s all;
    border-radius: 6px;
    padding: 12px 30px;
    display: inline-block;
    max-width: fit-content;
    font-family: var(--candara);
    border: 2px solid var(--light);
    font-weight: 700;
}

.our_it_lifecycle_card a:hover {
    color: var(--green);
    background-color: var(--white);
}

.our_it_lifecycle .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.our_it_lifecycle .owl-nav img {
    width: 45px;
}

.about_why_choose {
    padding-top: 0;
}

.about_why_choose_left {
    width: 50%;
}

.about_why_choose_left img {
    width: 100%;
}

.about_why_choose_right {
    width: 46%;
}

.about_why_choose_right h2 {
    font-size: 45px;
    color: var(--heading);
    font-family: var(--century);
}


.about_why_choose_right>p {
    color: #252525;
    line-height: 25px;
    font-size: 18px;
    margin: 15px 0px 40px 0px
}

.about_why_choose_right .icon_list {
    gap: 25px;
    display: flex;
    margin-top: 30px;
    align-items: center;
    justify-content: flex-start;
}

.about_why_choose_right .icon_list img {
    width: 80px;
}

.about_why_choose_right .icon_list>div:first-child {
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s all;
    background-color: var(--light);
}

.about_why_choose_right .icon_list>div:first-child:hover {
    background: var(--white);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.about_why_choose_right h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    font-family: var(--century);
}

.about_why_choose_right .icon_list_info p {
    font-size: 16px;
    color: #141414;
    line-height: 25px;
    max-width: 330px;
    text-align: justify;
}

.about_expert_team {
    padding-top: 0;
}

.about_expert_team h2 {
    margin-top: 30px;
}

.team_grid {
    display: grid;
    grid-gap: 45px;
    margin-top: 35px;
    grid-template-columns: 1fr 1fr 1fr;
}

.team_grid_item>img {
    width: 100%;
    border-radius: 50% 50% 8px 8px;
}

.media_link {
    gap: 15px;
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.media_link img {
    max-width: 20px;
    transform: scale(1);
    transition: 0.3s all;
}

.media_link img:hover {
    transform: scale(1.1);
}

.team_grid_item h4 {
    font-size: 24px;
    margin-top: 15px;
    text-align: center;
    color: var(--green);
    font-family: var(--century);
}

.team_grid_item h5 {
    color: var(--sub);
    margin-top: 5px;
    text-align: center;
    font-family: var(--century);
}

.about_cta {
    padding-left: 25px;
    padding-right: 25px;
}

.about_cta_box {
    display: flex;
    padding: 45px;
    margin: 0 auto;
    max-width: 1265px;
    align-items: center;
    border-radius: 22px;
    position: relative;
    margin-bottom: -78px;
    background-color: var(--green);
    justify-content: space-between;
}

.about_cta_box .icon_text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.about_cta_box .icon_text img {
    max-width: 75px;
}

.about_cta_box .icon_text h4 {
    font-size: 35px;
    font-family: var(--candara);
    color: var(--white);
}

.about_cta_box a {
    margin-top: 13px;
    color: var(--green);
    transition: 0.3s all;
    border-radius: 6px;
    padding: 12px 30px;
    display: inline-block;
    max-width: fit-content;
    font-family: var(--candara);
    border: 2px solid var(--light);
    font-weight: 700;
    background-color: var(--white);
}

.about_cta_box a:hover {
    color: var(--white);
    background: transparent;
}

.about_footer {
    padding-top: 150px;
}

.service_about .h_about_img img {
    width: 100%;
    max-width: fit-content;
}

.service_approach {
    padding-top: 0;
}

.service_approach h4 {
    font-size: 26px;
    color: var(--green);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--century);
}

.service_approach h2 {
    font-size: 45px;
    text-align: center;
    color: var(--heading);
    font-family: var(--century);
    text-transform: capitalize;
}

.service_approch_grid {
    display: grid;
    grid-gap: 35px;
    margin-top: 45px;
    grid-template-columns: 1fr 1fr 1fr;
}

.approch_grid_card {
    border-radius: 8px;
    padding: 65px 35px;
    transition: 0.2s linear;
    background: var(--green);
}

.approch_grid_card:hover {
    background-color: var(--blue);
}

.approch_grid_card img {
    height: 85px;
    margin: 0 0 auto auto;
}

.approch_grid_card h3 {
    font-size: 22px;
    color: var(--white);
    margin-top: 35px;
    font-family: var(--century);
}

.approch_grid_card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    margin-top: 15px;
    line-height: 25px;
    font-family: var(--century);
}

.service_deliver {
    background: var(--blue);
}

.service_deliver h4 {
    font-size: 22px;
    color: var(--light);
    text-align: center;
    font-family: var(--century);
}

.service_deliver h2 {
    font-size: 45px;
    margin-top: 15px;
    text-align: center;
    color: var(--white);
    font-family: var(--century);
    text-transform: capitalize;
}

.service_deliver_p {
    font-size: 18px;
    font-weight: 700;
    color: var(--light) !important;
    margin-top: 15px !important;
    line-height: 35px !important;
    text-align: center;
    margin-bottom: 75px;
    font-family: var(--century);
}

.service_deliver_parent {
    width: 100%;
    display: flex;
    padding-top: 40px;
    align-items: stretch;
    justify-content: flex-end;
}

.service_deliver_parent img {
    position: absolute;
    left: 0;
    margin-top: -39px;
}

.service_deliver_card {
    padding: 35px;
    border-radius: 12px;
    width: calc(100% - 60px);
    border: 2px solid var(--white);
}

.service_deliver_card p {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 100;
}

.service_delive_slider .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
}

.service_delive_slider .owl-item {
    height: 100%
}

.service_delive_slider .owl-nav img {
    filter: brightness(200%) contrast(200%);
}


.service_why_choose h4 {
    font-size: 22px;
    color: var(--green);
    text-align: center;
    font-family: var(--century);
}


.service_why_choose h2 {
    font-size: 45px;
    margin-top: 15px;
    text-align: center;
    color: var(--heading);
    font-family: var(--century);
    text-transform: capitalize;
}

.service_why_choose_grid {
    display: grid;
    padding: 35px;
    grid-gap: 35px;
    margin-top: 45px;
    border: 2px solid var(--light);
    border-radius: 8px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.service_why_choose_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service_why_choose_card img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}


.service_why_choose_card h3 {
    font-size: 18px;
    color: var(--heading);
    margin-top: 35px;
    text-align: center;
    font-family: var(--century);
}

.service_why_choose_card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub);
    margin-top: 8px;
    line-height: 25px;
    font-family: var(--century);
    text-align: center;
}

.service_benefits {
    background-color: var(--green);
}

.service_benefits h4 {
    font-size: 22px;
    color: var(--light);
    text-align: center;
    font-family: var(--century);
}


.service_benefits h2 {
    font-size: 45px;
    margin-top: 15px;
    text-align: center;
    color: var(--white);
    font-family: var(--century);
    text-transform: capitalize;
}

.service_benefits_grid {
    max-width: 1200px;
    display: grid;
    grid-gap: 35px;
    grid-template-columns: 1fr 1fr;
    margin: 45px auto 0px auto;
}

.service_benefits_grid_card {
    padding: 73px 35px;
    border-radius: 8px;
    background-color: var(--blue);
}

.service_benefits_grid_card h3 {
    font-size: 22px;
    color: var(--white);
    font-family: var(--century);
}

.service_benefits_grid_card p {
    font-size: 18px;
    font-weight: 400;
    color: var(--light);
    margin-top: 15px;
    line-height: 25px;
    font-family: var(--century);
}

.service_lifecycle h4 {
    font-size: 22px;
    color: var(--green);
    text-align: center;
    font-family: var(--century);
}


.service_lifecycle h2 {
    font-size: 45px;
    margin-top: 15px;
    text-align: center;
    color: var(--heading);
    font-family: var(--century);
    text-transform: capitalize;
}

.service_lifecycle p {
    font-size: 16px;
    font-weight: 300;
    color: var(--sub);
    line-height: 30px;
    text-align: center;
    font-family: var(--century);
    max-width: 67%;
    margin: 10px auto 0 auto;
}

.service_lifecycle_grid {
    display: grid;
    /* padding: 65px 35px; */
    padding: 30px 35px 70px 35px;
    max-width: 1300px;
    border-radius: 8px;
    align-items: baseline;
    margin: 0px auto 0 auto;
    border: 2px solid var(--light);
    grid-template-columns: 1fr .3fr 1fr .3fr 1fr .3fr 1fr .3fr 1fr .3fr 1fr;
}

.service_lifecycle_grid_card {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: end;
    flex-direction: column;
}

.service_lifecycle_grid_card img {
    max-height: 80px;
}

.service_lifecycle_grid_card span {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-top: 10px;
    line-height: 30px;
    text-align: center;
    font-family: var(--century);
}

.service_cta {
    padding-left: 25px;
    padding-right: 25px;
}

.service_cta_box {
    padding: 45px;
    margin: 0 auto;
    max-width: 1300px;
    border-radius: 22px;
    position: relative;
    margin-bottom: -123px;
    background-color: var(--green);
}

.service_cat_list {
    gap: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_cat_list li {
    font-size: 25px;
    font-weight: 700;
    list-style: inside;
    color: var(--white);
    font-family: var(--century);
}

.service_cta_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 600px; */
    max-width: 800px;
    background: var(--blue);
    padding: 25px;
    border-radius: 8px;
    margin: 30px auto 0 auto;
}

.service_cta_flex .icon_text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.service_cta_flex .icon_text img {
    width: 40px;
}

.service_cta_flex .icon_text h4 {
    color: var(--white);
    font-size: 16px;
    font-family: var(--century);
}


.service_cta_flex a {
    font-weight: 700;
    color: var(--blue);
    transition: 0.3s all;
    border-radius: 6px;
    padding: 12px 30px;
    display: inline-block;
    max-width: fit-content;
    font-family: var(--candara);
    border: 2px solid var(--light);
    background-color: var(--white);
}

.service_cta_flex a:hover {
    color: var(--white);
    border-color: var(--white);
    background-color: transparent;
}


.contact_page_info_box {
    width: calc(50% + 50px);
    margin-right: -50px;
    padding: 50px;
    display: flex;
    align-items: end;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px 0px 0px 24px;
    background-position: center center;
    background-image: url("../img/contact_image.png");
}

.contact_page_info_box_child {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.contact_page_info_box_child span {
    max-width: 70px;
    max-height: 70px;
    padding: 20px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_page_info_box_child span img {
    width: 100%;
    display: block;
}

.contact_page_info_box_child p {
    padding-right: 15px;
}

.contact_page_info_box_child p,
.contact_page_info_box_child a {
    font-size: 18px;
    color: var(--light);
    font-weight: 700;
    font-family: var(--century);

}

.contact_page_info_box_child a:hover {
    color: var(--white)
}


.contact_page_form_box {
    width: 50%;
    padding: 50px;
    background: #f6f5f2;
    border-radius: 24px;
    z-index: 1;
}

.contact_page_form_box .input_flex_box {
    gap: 25px;
    display: flex;
    margin-top: 25px;
    align-items: flex-start;
    justify-content: space-around;
}

.contact_page_form_box button[type="submit"] {
    cursor: pointer;
    padding: 14px 35px;
    font-size: 18px;
    letter-spacing: .8px;
    border-radius: 6px;
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    outline: none;
    margin-top: 35px;
    transition: 0.3s all;
}

.contact_page_form_box button:hover {
    background-color: var(--blue) !important;
}


.input_box {
    margin-top: 25px;
}

.input_flex_box>div {
    width: 50%;
}

.contact_page_form_box h4 {
    font-size: 48px;
    color: var(--green);
    font-family: var(--candara);
    font-weight: 700;
}

.contact_page_form_box p {
    font-size: 18px;
    line-height: 25px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.contact_page_form_box form label {
    font-size: 16px;
    color: var(--sub);
    font-family: var(--candara);
}

.contact_page_form_box form input,
.contact_page_form_box form select,
.contact_page_form_box form textarea {
    margin-top: 10px;
    padding: 14px 10px;
    border-radius: 4px;
    border: 1px solid #8080804d;
}



form input,
form textarea,
form select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #59595947;
    font-size: 18px;
    padding: 25px 10px 15px 0px;
    margin-top: 20px;
    font-family: var(--century);
    color: var(--green);
}

form input:focus,
form textarea:focus {
    border-color: var(--green);
    outline: none;
}

.contact_cta_info {
    padding-top: 0;
}

.contact_cta_grid {
    display: grid;
    grid-gap: 35px;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
}

.contact_cta_grid_card {
    padding: 35px;
    width: 100%;
    border-radius: 12px;
    background-color: white;
    transition: 0.3s all;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact_cta_grid_card img {
    height: 120px;
    margin: 0 auto;
    width: 120px;
    transition: 0.5s all;
}

.contact_phone_icon img {
    padding: 15px;
}

.contact_cta_grid_card:hover img {
    transform: rotateY(360deg);
    filter: invert(1);
}

.contact_cta_grid_card:hover {
    background-color: #4E751B;
}

.contact_cta_grid_card:hover h4,
.contact_cta_grid_card:hover p {
    color: var(--white);
}

.contact_cta_grid_card h4 {
    font-size: 26px;
    font-weight: bold;
    color: var(--heading);
    text-align: center;
    font-family: var(--century);
    margin-top: 15px;
    transition: 0.3s all;
}

.contact_cta_grid_card p {
    text-align: center;
    font-family: var(--century);
    font-size: 16px;
    color: var(--sub);
    margin-top: 10px;
    font-weight: 700;
    line-height: 25px;
    transition: 0.3s all;
}

.enquiry_flex {
    gap: 45px;
    display: flex;
    margin-top: 45px;
    align-items: flex-start;
    justify-content: space-between;
}


.enquiry_page .enquiry_flex {
    margin-top: 0px !important
}

.enquiry_page h1 {
    font-size: 37px;
    font-weight: 700;
    color: var(--heading);
    font-family: var(--century);
}

.enquiry_page h5 {
    font-size: 18px;
    color: var(--sub);
    font-weight: 300;
    line-height: 30px;
    margin-top: -25px;
    font-family: var(--candara);
}

.enquiry_info {
    width: 35%;
    padding: 45px;
    border-radius: 12px;
    border: 2px solid var(--light);
}

.enquiry_form {
    width: 60%;
    padding: 45px;
    border-radius: 12px;
    background: var(--light);
}

.enquiry_form input,
.enquiry_form textarea,
.enquiry_form select {
    border-radius: 6px 6px 0px 0px;
    padding: 25px 10px 15px 20px;
}

.enquiry_form form button {
    margin-top: 35px;
    font-size: 18px;
    padding: 16px 35px;
    border-radius: 4px;
    color: var(--white);
    border: 2px solid var(--green);
    background: var(--green);
    cursor: pointer;
    transition: 0.3s all;
}

.enquiry_form form button:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.enquiry_card {
    padding: 45px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.enquiry_page .enquiry_info {
    top: 100px;
    position: sticky;
}

.enquiry_info {
    display: flex;
    gap: 35px;
    flex-direction: column;
}

.enquiry_card img {
    max-width: 80px;
    max-height: 80px;
    margin: 0 auto;
}

.enquiry_card h4 {
    font-size: 24px;
    margin-top: 15px;
    color: var(--heading);
    font-family: var(--century);
}


.enquiry_card p {
    font-size: 18px;
    font-weight: 700;
    color: var(--sub);
    margin-top: 5px;
    font-family: var(--century);
}




.service_deliver .owl-carousel .owl-stage {
    display: flex;
}

.service_deliver .owl-item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

.service_deliver .owl-carousel.owl-drag .owl-item {
    min-height: -webkit-fill-available;
}

.Off-site_onsite {
    background: #4f751b;
    color: white;
    font-size: 22px;
    font-weight: bold;
    max-width: fit-content;
    padding: 10px 25px;
    border-radius: 8px 8px 0px 0px;
    font-family: var(--arial);
    margin: 45px auto 0px;
}

.mt-45 {
    margin-top: 45px;
}

.pt-0 {
    padding-top: 0;
}


.popup_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup_container {
    width: 800px;
    border-radius: 12px;
    background-image: url(../img/popup_background.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: end;
}

.popup_form {
    padding: 25px;
    border-radius: 12px;
    background: var(--white);
    width: 400px;
    position: relative;
    transform: scale(0.7);
    transition: 0.4s ease;
}

.popup_form h4 {
    font-family: var(--arial);
    font-size: 22px;
    color: var(--heading);
}

.popup_box.active {
    opacity: 1;
    visibility: visible;
}

.popup_box.active .popup_form {
    transform: scale(1);
}

.popup_form form {
    width: 100%;

}

.popup_form form textarea {
    margin-top: 0px;
}

.cross_icon {
    top: 15px;
    right: 15px;
    cursor: pointer;
    position: absolute;
}

.cross_icon img {
    width: 18px;
}


.thankyou_page {
    width: 100%;
    display: flex;
    min-height: 100vh;
    padding: 40px 25px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, green, #00007b);
}

.thankyou_page .main_container {
    display: flex;
    height: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.thankyou_page .main_container .hand_shake {
    max-width: 125px;
    filter: invert(1);
    margin-bottom: 25px;
}

.thankyou_page .main_container h4 {
    font-size: 35px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--arial);
    text-align: center;
}

.thankyou_page .main_container p {
    font-size: 18px;
    margin-top: 15px;
    color: aliceblue;
    font-weight: 500;
    font-family: var(--arial);
    text-align: center;
}

.thankyou_flex {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 45px;
    margin-top: 50px;
}

.thankyou_flex_card {
    padding: 35px;
    border-radius: 12px;
    width: 330px;
    background-color: #00000037;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thankyou_flex_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: var(--arial);
    margin-bottom: 20px;
    text-align: center;
}

.thankyou_flex_card ul {
    display: flex;
    gap: 10px;
    align-content: center;
    justify-content: center;
}

.thankyou_flex_card ul a img {
    max-width: 40px;
    display: block;
    filter: invert(1);
    transition: 0.3s all;
    transform: scale(1);
}

.thankyou_flex_card a img:hover {
    transform: scale(1.1);
}