@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    font-family: "Poppins", serif;
}

:root {
    --primary-color: #bd2227;
}


/* Common css  */

a {
    text-decoration: none;
}

.af_section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.glass_box {
    padding: 2.91rem 2.4rem;
    background: rgba( 255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
    backdrop-filter: blur( 8.5px);
    -webkit-backdrop-filter: blur( 8.5px);
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18);
}

.max-area {
    max-width: 1550px;
    margin: 0 auto;
}

html,
body {
    overflow-x: hidden;
}

body {
    background: linear-gradient(276deg, #fcfaf8 3.67%, #eaeefa 101.16%);
}

.bg-inherit {
    background: inherit!important;
}


/*Header style*/

.head_top {
    padding: 0.6rem 0 0.7rem;
}

.site-logo {
    width: 15rem;
}

.last-menu-link {
    background-color: #221f1f;
    padding: 0.6rem 1.5rem 0.8rem;
    color: #ffffff;
    font-weight: 500;
    border-radius: 10rem;
}

.site-header {
    position: sticky;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: fit-content;
    background-color: transparent;
    transition: all 0.3s ease;
    /* border-bottom: 2px solid #e0e0e0; */
}

.site-header.active {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    color: blue;
}

.side-navbar {
    width: 100%;
    margin-inline: auto;
}

.navbar-block {
    position: absolute;
    left: 0;
    height: calc(100vh - 4rem);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    background-color: #ffffff;
    transition: opacity 0.4s ease;
}

.navbar-block.is-active {
    opacity: 1;
    pointer-events: initial;
}

@media screen and (min-width: 62rem) {
    .side-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-block {
        position: initial;
        height: initial;
        opacity: 1;
        overflow: auto;
        pointer-events: visible;
        background: none;
        transition: none;
    }
}

.menu {
    padding-block: 1rem;
    list-style: none;
}

.menu-link {
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    color: #000000;
    transition: color 0.3s ease;
}

@media screen and (min-width: 62rem) {
    .menu {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        column-gap: 1rem;
        height: 100%;
        padding: unset;
    }
    .menu-item {
        display: flex;
        cursor: pointer;
        padding: 2.2rem 0.5rem;
    }
    .site-header.active .menu-item {
        padding: 2rem 0.5rem;
    }
    .menu-link {
        padding: unset;
    }
}

.dropdown-toggle {
    cursor: pointer;
    outline: none;
    user-select: none;
}

.dropdown-content {
    height: 0;
    overflow: hidden;
    background-color: #f8f8f8;
    transition: height 0.5s ease;
}


/* .dropdown-column, */

.dropdown-group {
    display: grid;
}

.dropdown-group {
    padding-bottom: 1rem;
    padding-inline: 1.5rem;
}

.dropdown-items {
    padding-left: 0;
    list-style-type: none;
}

.dropdown_sub_title {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    margin: 10px auto 0px 10px;
    color: #bd2227;
}

#sub_menu_arrow {
    width: 12px!important;
    height: 12px!important;
    transition: all 0.3s ease;
}

#sub_menu_arrow.active {
    transform: rotate(90deg);
}

.sub_li {
    margin-left: 20px;
}

.nav_arrow {
    width: 12px!important;
}

.dropdown-items li {
    /* border: 1px solid #000; */
    /* margin: 10px auto; */
    display: flex;
    grid-gap: 10px;
    align-items: center;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: color 0.3s ease;
}

.dropdown-items li:hover {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid #00000012;
}

.dropdown-items li img {
    width: 18px;
}

.dropdown-link {
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    line-height: inherit;
    transition: color 0.3s ease;
    /* padding: 5px 10px; */
}

.dropdown-items li:hover .dropdown-link {
    color: var(--primary-color);
}

.dropdown-block {
    display: flex;
    align-items: flex-start;
    column-gap: 1rem;
    padding-top: 1rem;
    padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
    .dropdown-toggle {
        column-gap: 0.35rem;
        pointer-events: none;
    }
    .dropdown-content {
        position: absolute;
        left: 50%;
        right: 0;
        top: 6rem;
        opacity: 0;
        height: max-content;
        pointer-events: none;
        transition: top 0.4s, opacity 0.3s ease;
        transform: translateX(-50%);
        background: #f9f9fd;
        box-shadow: 0 0 40px 3px #755cf71a, 2px 2px 4px #fff inset;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    .dropdown-column {
        /* grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 2rem; */
        max-width: 90vw;
        margin-inline: auto;
        padding: 0 30px;
    }
    .dropdown-group {
        align-content: baseline;
        row-gap: 0.1rem;
        padding: 2rem 0;
    }
    .dropdown-group:first-child,
    .dropdown-group:last-child {
        margin: unset;
    }
    .dropdown-items {
        padding-top: unset;
    }
    .dropdown-block {
        padding-top: unset;
        padding-inline: unset;
    }
    .side-dropdown:hover>.dropdown-content {
        cursor: initial;
        top: 5rem;
        opacity: 1;
        pointer-events: initial;
    }
    .side-dropdown:hover>.dropdown-toggle i.bx {
        rotate: 180deg;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    width: 1.5rem;
    height: 1rem;
    border: none;
    outline: none;
    visibility: visible;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.15px;
    opacity: 1;
    rotate: 0deg;
    border-radius: 0.15rem;
    background-color: #000000;
    transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger.is-active>.burger-line:nth-child(1) {
    top: 0.5rem;
    rotate: 135deg;
}

.burger.is-active>.burger-line:nth-child(2) {
    opacity: 0;
}

.burger.is-active>.burger-line:nth-child(3) {
    top: 0.5rem;
    rotate: -135deg;
}

@media screen and (min-width: 62rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}

@media screen and (max-width: 992px) {
    .site-header {
        padding: 10px 0px;
    }
    .aboutus-content {
        width: 100% !important;
    }
    .banner-title {
        font-size: 2rem !important;
        margin-top: 1.5rem;
    }
    .banner-tag {
        font-size: inherit !important;
    }
    .footer-head .site-logo {
        width: 10rem;
    }
    .navbar-block {
        width: 100%;
    }
    .owl-client-slider img {
        height: 10rem;
    }
}

@media screen and (max-width: 767px) {
    .head_top .container>div {
        width: 100%;
    }
    .w-sm-100 {
        width: 100% !important;
    }
    .why-info,
    .why-thumbnail img {
        width: 95vw !important;
        height: 95vw !important;
        margin: 0 auto;
    }
    .blog_card a {
        margin: 0 auto !important;
    }
    .footer-above {
        width: 90%;
        margin: 3rem auto !important;
    }
    .menu {
        padding-inline: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .menu-link {
        font-size: 19px;
    }
    .dropdown-content {
        width: 95%;
    }
    .dropdown-items {
        padding-inline: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 10px;
    }
    .owl-client-slider img {
        width: 70% !important;
    }
    .site-banner {
        padding: 2rem 0 8rem 0 !important;
    }
    .top_banner_cloud {
        width: 250% !important;
        height: 130px !important;
    }
    .about_thumbnail_base {
        width: 100% !important;
        height: 15rem !important;
    }
    .about_thumbnail_ref {
        top: auto !important;
        bottom: 0rem;
        left: 0rem !important;
    }
}


/*Banner style*/

.hero_section {
    /* border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px; */
    /* height: 75vh; */
    /* background: #f9f9fd; */
    /* box-shadow: 0 0 40px 3px #755cf71a, 2px 2px 4px #fff inset; */
    /* margin-bottom: 50px; */
    position: relative;
}

.hero_holder {
    background: url('../images/banners/banner_bg.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page_ms365 .hero_holder {
    background: url('../images/banners/365.png') no-repeat center center;
}

.page_infra .hero_holder {
    background: url('../images/banners/infra.jpg') no-repeat center center;
    background-size: cover;
}

.page_manage_aws .hero_holder {
    background: url('../images/banners/cloud.jpg') no-repeat center center;
    background-size: cover;
}

.page_manage_noc_soc .hero_holder {
    background: url('../images/banners/soc_noc.jpg') no-repeat center center;
    background-size: cover;
}

.page_manage_it .hero_holder {
    background: url('../images/banners/manage_it.jpg') no-repeat center center;
    background-size: cover;
}

.page_manage_gcp .hero_holder {
    background: url('../images/banners/manage_gcp.jpg') no-repeat center center;
    background-size: cover;
}

.hero_holder::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.banner-title span {
    color: #ee0979;
}

.banner-tag {
    font-size: 20px;
}

.banner-read-more {
    width: fit-content;
    background-color: #191919;
    color: #ffffff;
    padding: 0.8rem 2rem 1rem;
}

.owl-client-slider img {
    filter: grayscale(100);
    opacity: 0.5;
    transition: 0.5s;
}

.owl-client-slider img:hover {
    filter: none;
    opacity: 1;
}

.carousel-indicators button {
    height: 3.5px !important;
    background-color: var(--primary-color) !important;
    width: 20px !important;
}

.carousel-indicators {
    transform: rotate(90deg);
    top: -55%;
    right: -40%;
}

@media screen and (max-width: 1050px) {
    .carousel-indicators {
        transform: none;
        bottom: -2rem;
        top: auto;
        right: 0;
    }
}


/*Thrid Section*/

.af_section.thrid_section {
    /* padding-top: 50px; */
    padding-bottom: 50px;
}

.af_section.thrid_section .glass_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 10px;
}

.af_section.thrid_section img {
    height: 64px;
    width: 64px;
    margin: auto;
}

.af_section.thrid_section h5 {
    font-weight: 600;
}

.af_section.thrid_section a i {
    margin-left: 5px;
}


/*Fourth Section*/

.af_section.fourth_section {
    /* padding-top: 50px; */
    padding-bottom: 50px;
    background: #fff;
}

.af_section.fourth_section .fourth_section {
    width: 80%;
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/*About us style*/

.aboutus_banner {
    height: 28rem;
}

.aboutus-border {
    height: 28rem;
    display: block;
    border: 2px solid var(--primary-color);
    width: 100%;
    top: 10px;
    right: -10px;
}

.w-2 {
    width: 2%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-65 {
    width: 65%;
}

.w-68 {
    width: 68%;
}

.w-70 {
    width: 70%;
}

.w-90 {
    width: 90%;
}

.aboutus_customers>div {
    background-color: #191919;
    color: #ffffff;
}

.fs-small {
    font-size: small;
}

.red-prime {
    color: var(--primary-color);
}

.fill-red-prime {
    fill: var(--primary-color);
}

.stroke-red-prime {
    stroke: var(--primary-color);
}

.bg-red-prime {
    background-color: var(--primary-color);
}

.aboutus_customers>div span {
    width: 3rem;
    height: 3rem;
    margin-top: -2.5rem;
}


/*What we do style*/

#all_serv_list .owl-stage {
    padding-top: 20px;
    padding-bottom: 20px;
}

.blog_card {
    align-items: center;
    background: #fff;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.blog_card .blog_img_container {
    position: relative;
    height: 260px;
    width: 100%;
}

.blog_card .blog_img_container img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: center;
}

.blog_card .blog_content_container {
    padding: 1.5rem;
}

.blog_card p {
    font-size: 14px;
    color: #666;
}

.blog_card a {
    color: var(--primary-color);
}

.blog_card a i {
    font-size: 13px;
    margin-left: 5px;
}


/*Why section*/

.why-info {
    background: linear-gradient(to right, var(--primary-color), #ee097969);
    width: 30rem;
    height: 30rem;
}

.section_card {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 13px;
}

.why-info .col:first-child {
    padding: 4rem 0.5rem 0.5rem 3rem;
}

.why-info .col:nth-child(2) {
    padding: 4rem 3rem 0.5rem 0.5rem;
}

.why-info .col:nth-child(3) {
    padding: 0.5rem 0.5rem 4rem 3rem;
}

.why-info .col:last-child {
    padding: 0.5rem 3rem 4rem 0.5rem;
}

.why-info-doted {
    border: 2px dashed #bebebe;
    height: 24rem;
    width: 24rem;
    transform: translate(-50%, -50%);
}

.btn-grade {
    padding: 0.5rem 1.5rem 0.6rem;
    width: fit-content;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
    cursor: pointer;
    margin: 20px;
    font-size: 17px;
    z-index: 1;
    color: #ffffff;
    border-radius: 5px;
    position: relative;
    background: linear-gradient(to right, var(--primary-color), #ee0979);
}

.btn-grade::before {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #ff262d, #b10057);
    width: 20rem;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
}

.btn-grade:hover {
    color: white;
}

.btn-grade:before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

.btn-grade:hover::before {
    top: -50px;
    left: -16px;
}


/*Why section*/

.why-section {
    background-color: #ffffff;
    box-shadow: 0px 4px 12px 2px #ececec;
}

.why-section .border-line {
    height: 4rem;
    width: 1.6px;
    background-color: #f3f3f3;
}

.why-thumbnail img {
    height: 25rem;
    width: 25rem;
    transform: scaleX(-1);
    border: 3rem solid #ffffff;
    outline: 2px dashed var(--primary-color);
    padding: 3rem;
    background: #ffd7d7;
}


/*Faq section*/

.faq-image-section img {
    height: 20rem;
    width: 50%;
}

.faq-image-section img:first-child {
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
    margin: 0 0 0 auto;
}

.faq-image-section img:nth-child(3) {
    border-bottom-left-radius: 10rem;
    border-bottom-right-radius: 10rem;
}

.faq-image-section p {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px #aeaeaecf;
    width: fit-content;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.faq-base-round {
    height: 20rem;
    width: 20rem;
    display: block;
    position: absolute;
    background-color: #ff000024;
    outline: 3rem solid #ffc8c838;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -9999;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #ffffff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion {
    margin-top: 2.5rem;
}

.faq-accordion .accordion-item {
    box-shadow: 0px 2px 7px 1px #ededed;
}

.faq-content {
    width: 90%;
    margin: 0 0 0 auto;
}


/*Review section*/

.review-thumbnail {
    width: 2rem !important;
}

footer .social-link a {
    color: #ffffff;
}

footer .social-link li a i {
    height: 2.3rem;
    width: 2.3rem;
    font-size: 13px;
    border: 1px solid #ffffff;
    border-radius: 16rem;
    cursor: pointer;
    transition: 0.5s;
}

footer .social-link li a i:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/*Footer above section*/

.footer-above {
    border-radius: 10px;
    padding: 5rem 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
}

.footer-above a:first-child {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.7rem 2rem;
}

.footer-above a:last-child {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.7rem 2rem;
}

.footer-head .container>div {
    gap: 1rem;
}

.footer-above_left {
    padding: 25px 50px;
}

.footer-above img {
    position: absolute;
    height: 100%;
    right: 0;
}

@media screen and (max-width: 600px) {
    .overlap_card_img,
    .af_section.fourth_section .fourth_section {
        width: 100%!important;
    }
    .footer-head .container>div {
        flex-direction: column;
        align-items: start !important;
    }
}

@media screen and (min-width: 1024px) {
    .footer-head .container>div {
        gap: 10rem;
    }
}


/*Footer section*/

.tooltip_content {
    display: none;
}

footer ul li a:hover .tooltip_content {
    display: block;
    position: absolute;
    top: -100%;
    transform: translate(-25%, -75%);
    background-color: #fff;
    color: #171717;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

.tooltip_content:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}


/*About us page styles*/

.site_banner_cover {
    position: relative;
}

.top_banner_cloud {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
}

.site-banner {
    padding: 8rem 8rem 10rem 8rem;
    /* background: url(../images/page-header-bg_1.png) no-repeat right bottom/contain #fffbfba3; */
    background: #f0f0f8;
}

.site-banner h1 {
    font-size: 3.3rem;
}

.site-banner a,
.site-banner span {
    font-size: 14px;
    color: var(--primary-color);
}

.bread_crump {
    width: fit-content;
    border: 1px solid var(--primary-color);
}

.about_thumbnail_base {
    width: 90%;
    height: 25rem;
    border-radius: 30px;
}

.about_thumbnail_sub {
    width: 37%;
    border-radius: 20px;
    bottom: -3rem;
    right: 0;
    border: 4px solid #ffffff;
}

.about_thumbnail_ref {
    border-radius: 16px;
    top: 2rem;
    left: -2rem;
}

.about_secure {
    background: linear-gradient(276deg, #fcfaf8 3.67%, #eaeefa 101.16%);
}

.owl-about-network-slider .item,
.owl-secure-network-slider .item {
    border-radius: 20px;
    width: 95%;
    /* height: 10rem; */
    box-shadow: 0px 0 24px 3px #755cf703;
}


/*Service page*/

.service_left_part .service_left_contents span i {
    background-color: #bd22270f;
    padding: 10px;
    height: 5rem;
    width: 5rem;
}

.service_left_part {
    background-color: #ffd8d952;
}

.service_left_img_part,
.service_right_img_part {
    background-color: #ffa5a7;
    padding: 5rem 0;
}

.service_left_img_part_home {
    clip-path: polygon(0 1%, 100% 1%, 100% 100%, 10% 100%);
    position: relative;
}

.service_left_img_part_home::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 992px) {
    .service_left_img_part {
        clip-path: polygon(0 1%, 100% 1%, 100% 100%, 10% 100%);
    }
    .service_right_img_part {
        clip-path: polygon(0 1%, 100% 1%, 95% 100%, 0% 100%);
    }
}

.short_service {
    margin: 3rem 0 6rem 0;
}

.edr_mdr {
    border-top: 6px solid #bd2227;
}


/* Card Over lap section */

.card_overlap_container {
    position: relative;
}

.overlap_card_img {
    width: 80%;
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advantages_section_net h5 {
    font-weight: 500;
    font-size: 17px;
}

.advantages_section_net p {
    font-weight: 500;
    font-size: 14px;
}

.service_left_contents p {
    font-size: 14px;
}


/* Inline Contact Form */

.inline_contact_form input:focus,
.inline_contact_form input:active,
.inline_contact_form input:target,
.inline_contact_form input:focus-visible,
.inline_contact_form input:valid,
.inline_contact_form input,
.inline_contact_form textarea {
    border: none!important;
    width: 95%;
    padding: 10px !important;
    border-bottom: 1px solid #a6a6a6 !important;
    margin-bottom: 20px !important;
    outline: none !important;
    box-shadow: none !important;
}

.inline_contact_form textarea {
    width: 100% !important;
}

.inline_contact_form_btn {
    background-color: #221f1f;
    padding: 0.6rem 1.5rem 0.8rem;
    color: #ffffff;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 2.5px;
}

.af_black_section {
    background: #232734;
}

.af_black_section .section_header {
    color: #fff;
}

.af_black_section p {
    color: #b1b7cd;
    font-size: 1rem;
}

.af_black_section .service_left_contents {
    width: 95%;
    margin: 0 auto;
}

.af_black_section .service_left_contents span i {
    background-color: #bd22270f;
    padding: 10px;
    height: 3rem;
    width: 3rem;
    color: #b1b7cd;
}


/* table design */

.content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.vertical_glass_box {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


/* Privacy policy  */

.policy_box {
    margin: 50px auto;
    padding: 20px;
}

.policy_box h1 {
    color: var(--primary-color);
    font-weight: bold;
}

.policy_box a {
    color: var(--primary-color);
}

.circle_icon_box {
    border-radius: 50%;
    background-color: var(--primary-color);
    margin: auto;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}