@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cardo', serif;
}
.nav_border{
    border-radius: 5px;
}
ul {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

li,
a {
    list-style: none;
    text-decoration: none;
}
.container-fluid{
    padding: 0px;
}
.row{
    margin: 0px;
}
img {
    max-width: 100%;
}

.common_padding {
    padding: 0 100px;
}

:root {
    --color-black: #242424;
    --color-second: #bebebe;
}

.white {
    color: white;
}

.common_title {
    font-size: 45px;
    font-weight: 600;
    color: var(--color-black);
}

.margin_top {
    margin-top: 80px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-12,
.col-11 {
    padding: 0;
}

.width_100_banner {
    width: 100%;
}

.big_letter {
    font-size: 40px;

}

/*Header*/

nav {
    z-index: 999;
    position: fixed !important;
    top: 0;
    width: 100%;
}

.nav_bg {
    background-color: transparent;
}

.nav_bg_active {
    position: fixed !important;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.logo_header {
    width: 140px;
}

.nav_bar .nav-item {
    margin: 0 10px;
}

.nav_bar .nav-link {
    color: white;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;

}

.nav_link_active {
    color: black !important;
}
.burger {
    color: white;
    font-size: 40px;
}

.nav_bar .nav-link:hover {
    color: white;
}
.nav_bar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 3px;
    width: 0;
    height: 2.5px;
    background-color: white;
    border-radius: 50px;
    transition: 0.5s;
}

.nav_bar .nav-link:hover::before {
    width: 60px;
}

.link_active{
    position: relative;
    transition: 0.3s;
}
.link_active:before{
    content: "";
    position: absolute;
    bottom: 3px !important;
    width: 60px !important;
    height: 2.5px !important;
    background-color: white !important;
    border-radius: 50px;
    transition: 0.5s;
}
footer .link_active {
    color: #8d8d8d  !important;
}
footer .link_active:before{
    content: '';
   display: none !important;
}
.contact_btn {
    background-color: white;
    color: white;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    height: 50px;
    width: 55px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
}
.contact_btn_active{
    background-color: var(--color-black) !important;
    color: white !important;
}

.contact_btn:hover {
    color: white;
    background-color: var(--color-second);
}

.navlink_active {
    color: var(--color-second) !important;
    position: relative;
}

.navbar-toggler {
    border: none;
    box-shadow: none;
    padding: 0;
}

/*Caro*/
.carousel_content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.common_heading {
    font-weight: 600;
    font-size: 55px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);

}

.know_more_btn {
    background-color: var(--color-black);
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    border: none;
    outline: none;

}

.know_more_btn:hover {
    background-color: var(--color-second);
    color: white;
}

.arrow_btn {
    background-color: var(--color-black);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    width: 65px;
    height: 60px;
    opacity: 1;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 20px;
    border-radius: 5px;
    transition: 0.4s;
}

.arrow_btn:hover {
    box-shadow: inset 1px 1px 5px rgba(255, 255, 255, 0.5);
}

.carousel-control-prev {
    left: 100px;
}

.carousel-control-next {
    right: 100px;
}

/*Service*/
.relative {
    position: relative;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    transition: 0.5s;
}

.hover_effect {
    cursor: pointer;
}

.hover_effect:hover .bg {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset 1px 1px 10px rgba(255, 255, 255, 0.5);
}

.content_text {
    background-color: transparent;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    border-bottom: 3px solid white;
    z-index: 99;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/*Tabs*/
.bg_common {
    background-color: #F8F8F8;
}

.tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.tabs li {
    font-weight: 500;
    font-size: 18px;
    margin: 0 20px;
    background-color: #F8F8F8;
    color: black;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    flex-wrap: wrap;
    letter-spacing: 1px;
    /* box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); */
    transition: 0.3s;
}

.tabs li:hover {
    background-color: var(--color-black);
    color: white;
}

.tabs li.active {
    background-color: var(--color-black);
    color: white;
}

.container_off_all {
    display: grid;
    grid-template-columns: repeat(2,1fr)
}

.itemBox {
    margin: 15px;
    overflow: hidden;
    cursor: pointer;
}

.itemBox img {
    transition: 0.4s;
}

.itemBox img:hover {
    transform: scale(1.2);
}

.itemBox img {
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hide {
    display: none;
}

.content_service {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    
    opacity: 0;
    transition: 0.3s;
}

.itemBox:hover .content_service {
    height: 100%;
    opacity: 1;
}

.font_weight {
    font-weight: 600;
}

/*Our Process*/
.process_img {
    width: 100px;
}

.process_a {
    text-decoration: underline;
}

.process_a {
    color: var(--color-second);
}

.logo_width_process {
    width: auto;
    height: 120px;
}

.process_title {
    font-size: 26px;
    margin: 5px 0;
}

.common_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.common_bg {
    background-color: #F8F8F8;
}

.learn_more {
    text-decoration: underline;
    color: #242424;
    font-size: 20px;
}

/*Modal*/
.modal2 {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    display: none;
}

.modal_container {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    width: 900px;
    height: 600px;
    background-color: white;
    border-radius: 5px;
}

.submit_btn {
    background-color: var(--color-black);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    border: none;
}

.submit_btn:hover {
    transform: scale(1.2);
}

.modal_title {
    font-weight: 600;
    font-size: 40px;
}

.form-control {
    border: none;
    background-color: #F8F8F8;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    padding: 11px 10px
}
.form-select{
     border: none;
    background-color: #F8F8F8;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    padding: 11px 10px
}
.form-control:focus {
    border: none !important;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.form-select:focus {
    border: none !important;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.width_100 {
    border-radius: 5px 0 0 5px;
    width: 100%;
}

.close_icon_1 {
    color: rgb(255, 255, 255);
    position: absolute;
    top: 3rem;
    right: 5rem;
    font-size: 45px !important;
    cursor: pointer;
}

/**/
.key_project_slider {
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 5px 5px;
}
.

.key_project_slider h3 {
    font-size: 22px;
    margin: 0px !important;
}

.border_radius_P {
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.border_radius_P img {
    transition: 0.5s;
}

.border_radius_P:hover img {
    transform: scale(1.2);
}
.border_radius_P:hover .content_service{
    opacity: 1;
}
.projects_slider a {
    margin: 0 15px;
}
.footer_a{
    color: var(--color-black);
}
/*Footer*/
footer {
    background-color: #E9E9E9;
}

.logo_width {
    width: 140px;
}

.footer_title {
    font-weight: 600;
}

.quick_links {
    display: flex;
}

.quick_links li {
    margin: 15px 0;
}

.quick_links li a {
    color: var(--color-black);
    font-weight: 400;
    transition: 0.3s;
}

.quick_links li a:hover {
    color: var(--color-second);
}

.newsletter {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    border-radius: 5px;
}

.newsletter input {
    border: none;
    outline: none;
    width: 90%;
    padding: 15px;
    border-radius: 5px;
}

.location_circle {
    background-color: var(--color-black);
    color: white;
    border-radius: 5px;
    width: 50px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor_pointer {
    cursor: pointer;
    color: var(--color-black);
}

.cursor_pointer:hover {
    color: var(--color-black);
}

.location_circle span {
    transition: 0.5s;
}

.cursor_pointer:hover .location_circle span {
    transform: rotate(360deg);
}

.hr {
    margin: 20px 0;
    border: none;
    background-color: rgba(255,255,255,0.6);
    height: 3px;
    opacity: 1;
    width: 100%;
    padding: 0;
}

.social_icons i {
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.social_icons i:hover {
    transform: scale(1.2);
}

.color_change {
    color: var(--color-second);
}

.display_2 {
    display: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.justify {
    text-align: justify;
}

/**/
.collapse:not(.show) {
    display: initial;
}

.collapse {
    display: none;
}

.collapse_active {
    display: block !important;
}

.navbar_nav {
    display: block;
    background-color: white;
    position: absolute;
    left: 0;
    height: 100%;
    width: 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.navbar_nav_active {
    width: 40%;
    opacity: 1;
    visibility: visible;
}

.navbar_nav li {
    line-height: 70px;
}

.navbar_nav li a {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.width_100_header {
    width: 100%;
}

.header_bg {
    display: none;
}

.close_header {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 30px !important;
}

.toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.toggler_active{
    color: var(--color-black);
}
.toggler span {
    font-size: 35px;
}

/*top*/
.top_top {
    background-color: var(--color-black);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    position: fixed;
    bottom: 30px;
    right: 15px;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.top_top:hover {
    background-color: var(--color-second);
    color: white;
}

.top_active {
    visibility: visible;
}

/*Whatsapp*/
.whatsapp {
    position: fixed;
    left: 15px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--color-black);
    color: white;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    display: none;
}
.whatsapp_active{
    display: flex;
}
.whatsapp:hover {
    background-color: var(--color-second);
    color: white;
}

.project_key_res2 {
    display: none;
}
.location {
    display: flex;
    margin-top: 20px;
}
/*testi*/
.testi_bg{
    background-image: url("../imgs/testi_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
.white{
    color: white;
}
.quo_icon{
    font-size: 35px;
    color: var(--color-second);
}
.test_title{
    color: var(--color-second);
    font-weight: 600;
    font-size: 20px;
}
.testi_slider .bg_testi{
    margin: 0 20px;
}
.bg_testi{
    height: 220px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}
.key_project_slider h3{
    margin: 0px !important;
}
.process_anim {
    cursor: pointer;
    height: 400px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between !important;
}
.logo_width_process{
    transition: 0.3s;
}
.process_anim:hover .logo_width_process{
     transform: scale(1.1);
}
.nav_link_active:hover{
    color: #bebebe !important;
}
.flex_cust{
    flex-direction: column !important;
}
.view_btn{
    background-color: #272727;
    color: white;
    padding: 10px 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

@media screen and (max-width: 1600px){
    .quick_links li a{
        font-size: 13px;
    }
    .quick_links li{
        margin: 5px 0px;
    }
    .bg_testi{
    height: 280px !important;
    }
}
@media screen and (max-width: 1400px){
    .flex_cust{
    flex-direction: row;
}
}
@media screen and (max-width: 1200px) {
    .common_padding {
        padding: 0 15px;
    }

    .home-slider-prev {
        left: 15px;
    }
   .whatsapp{
       left: 15px;
   }
    .home-slider-next {
        right: 15px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .logo_width {
        width: 180px;
    }

    .bg_initial {
        background-color: transparent;
    }

    .common_bg2 {
        background-color: #F8F8F8;
    }

    .top_top {
        right: 15px;
    }
    .nav_bar .nav-item{
        margin: 0px 5px;
    }
    .nav_bar .nav-link{
        font-size: 14px;
    }
}

@media screen and (max-width: 1040px) {
    .nav_bar .nav-item {
        margin: 0 5px;
    }
}

@media screen and (max-width: 1024px) {
    .margin_top {
        margin-top: 60px;
    }
}

@media screen and (max-width: 992px) {
    .common_heading {
        font-size: 40px;
    }
   .nav_bar .nav-link:hover{
       color: var(--second-color);
   }
    .margin_minus {
        margin-top: 0rem;
    }
.nav_bar .nav-link:hover::before{
    display: none;
}
    .margin_minus2 {
        margin-top: 0px;
    }

    .arrow_btn {
        width: 55px;
        height: 50px;
        font-size: 16px;
    }

    .nav_bar .nav-link {
        justify-content: start;
    }

    .margin_top {
        margin-top: 40px;
    }

    .common_title {
        font-size: 35px;
    }

    .nav_bar .nav-item {
        margin: 0;
    }

    .contact_btn {
        margin-right: 0 !important;
    }

    /* nav {
        position: sticky !important;
        top: 20px !important;
        width: 100%;
    } */

  
    .nav_social_icons a{
        color: var(--color-black);
        margin: 0px 10px;
        font-size: 18px;
    }
    .burger {
        color: var(--color-black);
    }

    .nav_bar .nav-link {
        color: var(--color-black);
    }

    .burger {
        font-size: 35px !important;
    }

    .close_icon_1 {
        top: 3rem;
        right: 15px;
        font-size: 30px !important;
    }

    .navbar_nav {
        display: flex;
        align-items: flex-start;
        justify-content: start;
        padding: 15px 30px;
        padding-right: 60px;
    }

    .navbar_nav li {
        position: relative;
        width: 100%;
    }

    .navbar_nav li::after {
        content: "";
        position: absolute;
        bottom: 12px;
        width: 100%;
        height: 2px;
        background-color: #c0c0c0;
        border-radius: 5px;
    }

    .key_project_slider {
        height: 55px;
    }

    .key_project_slider h3 {
        font-size: 16px;
    }

    .project_key_res {
        display: none;
    }

    .project_key_res2 {
        display: block;
    }

    .header_bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.3);
        width: 0%;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .header_bg_active {
        width: 100%;
        opacity: 1;
        visibility: visible;
    }
  
}

@media screen and (max-width: 768px) {
    .common_heading {
        font-size: 35px;
    }
.process_anim {

    height: 350px;
   
}

    .display_1 {
        display: none;
    }

    .display_2 {
        display: block
    }

    .arrow_btn {
        width: 40px;
        height: 35px;
        font-size: 12px;
    }

    .content_service h3 {
        font-size: 20px;
    }

    .common_title {
        font-size: 30px;
    }

    .content_text {
        font-size: 25px;
    }

    .tabs li {
        margin: 0 10px;
    }

    p {
        font-size: 14px;
    }

    .form-control {
        font-size: 14px;
    }
    .form-select {
        font-size: 14px;
    }

    .know_more_btn {
        font-size: 12px;
        padding: 10px 15px;
        margin-top: 10px;
    }

    .nav_bar .nav-link {
        font-size: 14px;
    }

    .tabs li {
        font-size: 12px;
        padding: 10px 15px;
    }

    .footer_title {
        font-size: 20px;
    }

    .quick_links li a {
        font-size: 14px;
    }

    .carousel-item img {
        height: 450px;
        width: 100%;
        object-fit: cover;
    }

    .contact_btn {
        width: 40px;
        height: 35px;
    }

    .contact_btn span {
        font-size: 18px;
    }

    .bg_initial {
        background-color: #F8F8F8;
    }

    .common_bg2 {
        background-color: transparent;
    }

    .process_title {
        font-size: 20px;
    }

    .width_100 {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 5px 5px 0 0;
    }

    .modal_container {
        width: 90%;
        height: 650px;
    }

    .modal_title {
        font-size: 25px;
    }

    .form-control {
        padding: 8px 10px;
    }
 .form-select {
        padding: 8px 10px;
    }

    .submit_btn {
        font-size: 14px;
    }
    .navbar_nav {
        margin-bottom: 0px !important;
    }
     .bg_testi{
    height: initial !important ;
    }
}

@media screen and (max-width: 716px) {
    .tabs {
        row-gap: 25px;
    }

    .navbar_nav_active {
        width: 50%;
    }
}

@media screen and (max-width: 568px) {
    .intro-section{
    height: 250px;
}
.view_btn{
    padding: 8px 35px;
}
  
    .cursor_pointer{
        justify-content: center !important;
    }
    .close_header{
        font-size: 20px !important;
    }
    .projects_slider a{
        margin: 0px !important;
    }


   

    .margin_top2 {
        margin-top: 0px;
    }

    .common_title {
        font-size: 25px;
    }

    .common_heading {
        font-size: 25px;
    }

    .tabs {
        row-gap: 0px;
    }

    .content_text {
        font-size: 20px;
        bottom: 10px;
    }

    .logo_header {
        width: 100px;
    }

    .navbar-toggler {
        font-size: 16px;
    }

    .contact_btn {
        width: 35px;
        height: 30px;
    }

    .contact_btn span {
        font-size: 16px;
    }

    .logo_width {
        width: 120px;
    }

    .center_center {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .align {
        text-align: center;
    }

    .location {
        display: flex;
        align-items: center;
    }

    .cursor_pointer {
        text-align: start;
    }


    .location_circle span {
        font-size: 19px;
    }

    .font_small_1 {
        font-size: 18px;
        margin: 0;
    }

    .process_title {
        font-size: 18px;
    }

    .logo_width_process {
        width: auto;
        height: 80px;
    }

    .modal_container {
        height: 400px;
    }

    .width_100 {
        height: 100px;
    }

    .bg_active {
        background-image: url("../imgs/modal_img.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    }

    .modal_title {
        color: white;
        font-weight: 500;
    }

    .form-control {
        font-size: 12px;
    }
.form-select {
        font-size: 12px;
    }
    .submit_btn {
        font-size: 12px;
    }

    .process_title {
        font-size: 20px;
        line-height: 28px;
        margin-top: 10px;
    }

    p {
        font-size: 12px;
    }

    .navbar_nav_active {
        width: 65%;
    }
    .navbar_nav{
        padding: 15px 15px;
        padding-right: 60px;
    }
    .navbar_nav li::after{
        bottom: 5px;
    }
    .navbar_nav li a{
        font-size: 14px !important;

    }
    .toggler span {
        font-size: 25px;
    }

    .navbar_nav li {
        line-height: 50px;
    }

    .quick_links li {
        margin: 10px 0;
    }

    .whatsapp {
        height: 40px;
        width: 40px;
        font-size: 14px;
    }

    .top_top {
        height: 40px;
        width: 40px;
        font-size: 14px;
    }

    .hr {
        margin: 10px 0;
    }

    .social_icons i {
        font-size: 16px;
    }

    .learn_more {
        font-size: 14px;
    }
    .quick_links li a{
        font-size: 12px;
    }
    .footer_a{
        font-size: 12px;
    }
    .location{
        margin-top: 12px;
    }
    .testi_slider .bg_testi{
        margin: 0 5px;
    }
    .padding_zero{
        padding: 0px;
    }
    .location_circle{
        display: none;
    }
    .footer_title_conact{
        display: none;
    }
    .home_slider{
        height: 100vh !important;
    }
      .main-slider-nav {
        width: 40px;
        height: 35px;
    }
}

@media screen and (max-width: 429px) {
    .tabs li {
        font-size: 10px;
        padding: 6px 10px;
    }
}

@media screen and (max-width: 412px) {
    .common_heading {
        font-size: 20px;
        width: 100%;
        text-align: center;
    }

    .contact_btn {
        font-size: 10px;
    }

    .logo_header {
        width: 80px;
    }

    .arrow_btn {
        width: 32px;
        height: 26px;
        font-size: 8px;
    }

    .carousel-item img {
        height: 100vh;
    }

    .main-slider-nav {
        width: 40px;
        height: 35px;
    }
}

@media screen and (max-width: 300px) {
    .location {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 10px;
    }
    .navbar_nav_active{
        width: 80%;
    }
}

.intro-section {
    animation: bg_anim 10s linear;
}

@keyframes bg_anim {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}
@media screen and (max-width: 270px){
    .quick_links{
        display: initial;
    }
    .zero_m_footer{
        margin: 0px !important;
    }
}
.address_width{
    width: 90%;
}
@media screen and (max-width: 768px){
    .footer_a {
        color: var(--color-black);
        font-size: 14px;
    }
}
.address_width2{
    width: 70%;
    margin: 0px 10px;
}
.address_width h5{
    display: none !important;
}
.address_width2 h5{
    display: none !important;
}
/*Validation*/
.red_color{
    color: #ff0000 !important;
    margin-bottom: 5px;
    position: absolute;
    top: -20px;
    font-size: 14px;
}
.red_input{
    border: 1px solid #ff0000 !important;
}
@media screen and (max-width: 568px){
    .red_color{
        font-size: 12px; 
    }
    .cursor_pointer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: auto;
        width: 100%;
        text-align: center;
    }
  .address_width h5 {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    display: block !important;
    font-size: 20px;
    margin-bottom: 10px !important;
    font-weight: 600;
}
    .address_width2 h5{
    display: block !important;
     font-size: 20px;
    margin-bottom: 10px !important;
    font-weight: 600;
}
    .footer_a {
        font-size: 12px;
    }
    .flex_cust{
        margin-top: 0px !important;
        flex-direction: row !important;
    }
    .navbar_nav li{
        line-height: 35px;
    }
    
}
@media screen and (max-width: 300px){
.flex_cust{
    flex-wrap: wrap;
}
}
