.footerSectionUpdated {
    background-image: url("https://designoweb.s3.eu-north-1.amazonaws.com/home/footerBg.webp");
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
}
.footSecBoxUpdated {
    min-width: max-content;
}
.custom_whatsapp_section {
    position: fixed;
    bottom: 24px;
    height: 100px;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 1;
}
.custom_whatsapp_box {
    position: relative;
    height: 100%;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.custom_whatsapp_layer {
    position: absolute;
    height: 45px;
    width: 45px;
    background-color: #25d366;
    border-radius: 50%;
    animation: 3s ease-in-out infinite pulse;
    z-index: 0;
    opacity: 0.5;
}
.custom_whatsapp_link {
    height: 45px;
    width: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4fce5d;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}
.custom_whatsapp_link i {
    display: inline-block;
    height: auto;
    font-size: 26px;
    color: var(--colorWhite);
}
@keyframes pulse {
    0%,
    100%,
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.7);
        opacity: 0.2;
    }
}
@media (max-width: 561px) {
    .custom_whatsapp_section {
        bottom: 12px;
    }
}


/* -------------- */
.footer_wrapper{
    background: var(--colorOffBlack);
    /* padding-top: 60px; */
    border-radius: 160px 160px 0 0;
    position: relative;
    overflow: hidden;
    /*margin-top: -8%; Old */
    margin-top: -10%;
}
.grid_layout_background{
    position: absolute;
    background: url(../images/grid_background.png) no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    top: -60px;
    z-index: 0;
}
.footer_child_wrapper{
    background: url(../images/footer_gradient.png) no-repeat;
    background-size: cover;
    background-position: top 25% center;
    /* padding-top: 60px; */
    padding-top: 100px;
    /* padding-bottom: 60px; */
    position: relative;
    z-index: 1;
}
.social_section_grid{
    display: flex;
    gap: 20px;
    margin: 40px 0 70px;
    margin: 25px 0 70px;
}
.social_section_grid .social_item_link{
    /* height: 68px;
    width: 68px; */
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FAF3E133;
    color: #C5C1B7;
    /* font-size: 28px; */
    font-size: 24px;
    cursor: pointer;
}
.social_section_grid .social_item_link svg{
    height: 28px;
    width: auto;
}
.social_section_grid .social_item_link:hover{
    background: var(--colorSecondary);
}
.footer_menu_grid{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer_menu_item_wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_menu_item_wrapper .footer_menu_grid_list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_menu_item_wrapper .footer_menu_grid_list li{
    display: flex;
    /* align-items: center; */
}
.footer_menu_item_wrapper .footer_menu_grid_list a{
    color: var(--colorOffWhite);
}
.footer_menu_item_wrapper .footer_menu_grid_list a:hover,
.footer_menu_item_wrapper .footer_menu_grid_list a:active{
    color: var(--colorSecondary);
}
.footer_contact_list li{
    display: flex;
    gap: 10px;
}
.footer_wrapper_bottom{
    padding-top: 50px;
}
.footBottomMenu ul li a{
    color: var(--colorOffWhite);
}
.footBottomMenu ul li a:hover{
    opacity: 1;
    color: var(--colorSecondary);
}
.opacity_30{
    opacity: 0.35;
}
.footer_heading_section .hero_heading{
    line-height: 100%;
}

/* Location Section */
.locations_wrapper{
    /* padding-top: 230px; */
    /*padding-top: 31vh;*/
    /*padding-top: 21vw; Old*/
    padding-top: 12vw;
    position: relative;
}
.location_section{
    position: relative;
}
.dotted_line{
    position: absolute;
}
.dotted_line_horizontal{
    /* width: 35px; */
    width: 47px;
    height: 100%;
    top: 11px;
}
.align_left .dotted_line_horizontal{
    background-image: url('./../images/location_line_1_left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
}
.align_right .dotted_line_horizontal{
    background-image: url('./../images/location_line_1_right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    right: 0;
}
.dotted_line_vertical{
    background-image: url('./../images/location_line_vertical.svg');
    background-repeat: no-repeat;
    background-size: cover;
    top: 11px;
    width: 2px;
}
.align_left .dotted_line_vertical{
    left: 0;
}
.align_right .dotted_line_vertical{
    right: -1px;
}
.location_section_wrapper{
    /* width: 250px; */
    /*width: 16vw;*/
    /*width: 230px;*/
    width: 17vw;
    position: absolute;
}
.map_marker{
    position: absolute;
}
.map_marker img{
    width: 100%;
}
.location_details_top{
    display: flex;
    align-items: center;
    gap: 5px;
}
.align_right .location_details_top{
    justify-content: end;
}
.location_details_top .location_flag{
    height: 20px;
    width: 29px;
    min-width: 29px;
    display: inline-flex;
}
.location_details_top .location_flag img{
    width: 100%;
    height: auto;
}
.location_details_top .location_name{
    color: #494A4D;
}
.location_details_bottom{
    margin-top: 5px;
}
.location_details_bottom p{
    color: #7D7E80;
}
.location_section.align_left{
    padding-left: 50px;
}
.location_section.align_right{
    padding-right: 50px;
}
.location_details_bottom .location_contact{
    margin-top: 5px;
}
.align_left .map_marker{
    left: -28px;
}
.align_right .map_marker{
    right: -28px;
}
.align_right{
    text-align: right;
}

.us_location .dotted_line_vertical{
    /* height: 260px; */
    height: 16vw;
}
.us_location.location_section_wrapper{
    left: 18vw;
    /* top: 7vw; */
    /*top: 15vh;*/
    /*top: 13vw; Old*/
    top: 6vw;
}
.us_location .map_marker{
    /* width: 56px; */
    /* left: -28px; */
    width: 3.6vw;
    top: 16vw;
    left: -1.7vw;
}


.uk_location .dotted_line_vertical{
    /* height: 180px; */
    /*height: 14.5vw; Old*/
    height: 13vw;
}
.uk_location.location_section_wrapper{
    /*left: 32vw;*/
    left: 31vw;
    /* top: 1vw; */
    /*top: 7vw; Old*/
    top: 0vw;
}
.uk_location .map_marker{
    /* width: 40px; */
    /* right: -20px; */
    width: 2.3vw;
    /*top: 14.7vw; Old*/
    top: 13vw;
    right: -1.2vw;
}


.eu_location .dotted_line_vertical{
    /* height: 180px; */
    /*height: 14vw; Old*/
    height: 12vw;
}
.eu_location.location_section_wrapper{
    /*right: 30vw;*/
    /* top: 3vw; */
    /*top: 4vh;*/
    right: 29vw;
    /*top: 9vw; Old*/
    top: 2vw;
}
.eu_location .map_marker{
    /* width: 56px; */
    left: -28px;
    width: 3.6vw;
    /*top: 14vw; Old*/
    top: 12vw;
    left: -1.7vw;
}


.in_location .dotted_line_vertical{
    /* height: 240px; */
    /*height: 18vw; Old*/
    height: 14vw;
}
.in_location.location_section_wrapper{
    /* right: 10vw;
    top: 7vw; */
    /*right: 11vw;*/
    right: 10vw;
    /* top: 6vw; */
    /*top: 12vw; Old*/
    top: 8vw;
}
.in_location .map_marker{
    /* width: 56px; */
    /* left: -28px; */
    width: 3.6vw;
    /*top: 18vw; Old*/
    top: 14vw;
    left: -1.7vw;
}
.hq_location .page_banner_description{
    position: relative;
}
.hq_location .page_banner_description .hq_tag{
    position: absolute;
    padding: 3px 10px 3px;
    font-size: 16px;
    color: var(--colorOffWhite);
    background: var(--colorSecondary);
    right: calc(-100% - 6px);
    top: -15px;
    border-radius: 4px;
    display: inline-flex;
    line-height: 22px;
}
.hq_tag .hq_tag_arrow {
    position: absolute;
    left: -2px;
    bottom: -2px;
    z-index: -1;
    height: 10px;
    width: 10px;
    display: inline-flex;
}

.hq_tag .hq_tag_arrow svg{
    height: 10px;
    width: 10px;
}
.website_footer .footer_menu_heading{
    text-transform: uppercase;
}

@media(max-width: 1200px) {
    .footer_child_wrapper{
        background-size: contain;
    }
}
@media (min-width: 1025px) and (max-width: 1367px) {
    .in_location.location_section_wrapper {
        right: 9vw;
        top: 16vh;
    }
    .eu_location.location_section_wrapper {
        right: 27vw;
        top: 10vh;
    }
    .uk_location.location_section_wrapper {
        left: 30vw;
        top: 7vh;
    }
    .us_location.location_section_wrapper {
        left: 18vw;
        top: 17vh;
    }
    .location_section_wrapper{
        width: 230px;
    }
}
@media(max-width: 1025px) {
    .footer_menu_grid{
        display: grid;
        grid-template-columns:  repeat(3, 1fr);
    }
    .footer_wrapper{
        border-radius: 90px 90px 0 0;
        margin-top: -10%;
    }
    .hq_location .page_banner_description .hq_tag{
        font-size: 12px;
        line-height: 16px;
        padding: 4px 10px 4px;
    }
}
@media (min-width: 991px) and (max-width: 1025px) {
    .location_section_wrapper{
        /* width: 22vw; */
        width: 230px;
    }
    .locations_wrapper{
        padding-top: 36vh;
    }
    .in_location.location_section_wrapper {
        right: 4.5vw;
        top: 22vh;
    }
    .eu_location.location_section_wrapper {
        right: 23vw;
        top: 9vh;
    }
    .eu_location .dotted_line_vertical{
        height: 30vh;
    }
    .eu_location .map_marker{
        top: 30vh;
    }
    .uk_location.location_section_wrapper {
        left: 26vw;
        top: 5vh;
    }
    .uk_location .dotted_line_vertical{
        height: 33vh;
    }
    .uk_location .map_marker{
        top: 33vh;
    }
    .us_location.location_section_wrapper{
        top: 24vh;
    }
}

@media(max-width: 991px) {
    .location_section_wrapper{
        width: 200px;
    }
}
@media (min-width: 901px) and (max-width: 991px) {
    .footer_wrapper{
        border-radius: 90px 90px 0 0;
        margin-top: -10%;
    }
    .locations_wrapper{
        padding-top: 36vh;
    }
    .in_location.location_section_wrapper {
        right: 5vw;
        top: 24vh;
    }
    .eu_location.location_section_wrapper {
        right: 23vw;
        top: 9vh;
    }
    .eu_location .dotted_line_vertical{
        height: 30vh;
    }
    .eu_location .map_marker{
        top: 30vh;
    }
    .uk_location.location_section_wrapper {
        left: 26vw;
        top: 5vh;
    }
    .uk_location .dotted_line_vertical{
        height: 33vh;
    }
    .uk_location .map_marker{
        top: 33vh;
    }
    .us_location.location_section_wrapper{
        top: 24vh;
    }
    .hq_location .page_banner_description .hq_tag{
        font-size: 12px;
        line-height: 16px;
        padding: 4px 10px 4px;
    }

    .location_section.align_left {
        padding-left: 30px;
    }
    .location_section.align_right {
        padding-right: 30px;
    }
    .dotted_line_horizontal{
        width: 28px;
    }
    .align_left .dotted_line_vertical{
        left: -1px;
    }
    .align_right .dotted_line_vertical {
        right: -2px;
    }
    .uk_location.location_section_wrapper{
        left: initial;
        right: 52vw;
    }
    .eu_location.location_section_wrapper{
        right: 24vw;
    }
    .us_location.location_section_wrapper{
        left: 19vw;
    }
}

@media(max-width: 900px) {
    .location_section_wrapper {
        width: 170px;
    }
    .location_section.align_right,
    .location_section.align_left{
        padding: 0;
    }
    /* .small_text {
        font-size: 11px;
    } */
}
@media(max-width: 900px) {
    .footer_wrapper{
        border-radius: 50px 50px 0 0;
        margin-top: -10%;
    }

    .location_section_wrapper{
        position: relative;
        top: initial !important;
        bottom: initial !important;
        left: initial !important;
        right: initial !important;
        width: 100%;
    }
    .locations_wrapper{
        padding-top: 0;
        padding: 30px 30px;
    }
    .locations_wrapper_child{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .dotted_line,
    .map_marker{
        display: none;
    }
    .location_section_wrapper{
        display: flex;
        justify-content: center;
    }
    .location_card_details{
        text-align: center;
    }
    .hq_location .page_banner_description .hq_tag{
        right: calc(-100% - 8px);
        top: -12px;
    }
    .location_details_top{
        justify-content: center;
    }

}
@media(max-width: 767px) {
    .footer_menu_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .footer_menu_grid .footer_contact_wrapper{
        grid-column: span 2;
    }
    .footer_menu_grid .footer_contact_wrapper .footer_contact_text br{
        display: none;
    }
    .social_section_grid .social_item_link{
        height: 40px;
        width: 40px;
        font-size: 20px;
    }
    .social_section_grid .social_item_link svg {
        height: 24px;
    }
    .social_section_grid {
        margin: 20px 0 50px;
        gap: 12px;
    }
    .footer_contact_icon{
        display: inline-flex;
    }
    .location_section_wrapper.uk_location .location_details_top{
        flex-direction: row-reverse;
    }
}
@media(max-width: 576px) {
    /* .location_section_wrapper {
        width: 160px;
    } */
    .location_address br{
        display: none;
    }
    .website_footer .hero_heading {
        font-size: 14vw;
    }
    .footer_child_wrapper{
        padding-top: 50px;
        background: unset;
    }
    .footer_wrapper {
        border-radius: 30px 30px 0 0;
        margin-top: -10%;
    }
    .footer_menu_item_wrapper .footer_menu_grid_list{
        gap: 12px;
    }
    .footer_menu_item_wrapper{
        gap: 15px;
    }
    .footer_menu_item_wrapper .footer_menu_grid_list a,
    .footer_contact_text{
        font-size: 15px;
    }
    .locations_wrapper_child{
        gap: 30px 10px;
    }
    .locations_wrapper{
        padding: 20px 18px;
    }
    .location_details_top .location_flag {
        height: 18px;
        width: 24px;
        min-width: 24px;
    }

}