:root {
    /* Colors */
    --primary-color: #d63a37;
    --secondary-color: #6c757d;

    /* Fonts */
    --font-family: "Poppins", serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;

    /* Spacing */
    --spacing-small: 4px;
    --spacing-medium: 8px;
    --spacing-large: 16px;
    --spacing-xlarge: 24px;

    /* Borders */
    --border-radius: 4px;
    --border-radius-large: 8px;
    --border-color: #dee2e6;

    /* Shadows */
    --box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    /* Z-Index */
    --z-index-dropdown: 1000;
    --z-index-modal: 1050;
}

/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.5;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: rgba(72, 72, 72, 0.736);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}

::-webkit-scrollbar-track {
    background: transparent;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
}

.section {
    padding: 3rem 0;
}

/* ======================================== Nav bar ===================================================== */
.navbar-brand.logo img {
    width: 140px;
}

.dropdown.dropdownSet .dropdown-item,
.navbar-nav .nav-link {
    text-transform: capitalize;
    color: #000000;
    transition: all .5s ease-in-out;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #000 !important;
    border-radius: 1rem;
    border-bottom: 2px solid var(--primary-color);
    transition: all .5s ease-in-out;
}

.navbar-nav .nav-item {
    margin-right: .5rem;
    transition: all .5s ease-in-out;
}

.nav-item.social-icon .nav-link {
    border-radius: 2rem;
    background: #000000;
    padding: 6px 10px;
    transition: all .5s ease-in-out;
    margin: 0 4px;
    color: white;
}

button.navbar-toggler {
    background: var(--primary-color);
    color: #fff;
}

/* social media */
.social-icons .nav-item:nth-child(1) a {
    background: #1877f2;
}

.social-icons .nav-item:nth-child(1) a {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.social-icons .nav-item:nth-child(2) a {
    background: #0077B5;
}

.social-icons .nav-item:nth-child(4) a {
    background: #000;
}

/* footer */
/* .footerSocialIcon .nav-item:nth-child(1) a {
    background: #1877f2;
} */

.footerSocialIcon .nav-item:nth-child(1) a {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.footerSocialIcon .nav-item:nth-child(2) a {
    background: #0077B5;
}

.footerSocialIcon .nav-item:nth-child(4) a {
    background: #000;
}


/* ======================================== Nav bar end ===================================================== */



/* ======================================== Hero section end ===================================================== */

.hero_slider {
    width: 100%;
    position: relative;
}

.hero_slider .owl-carousel .owl-item img {
    object-fit: cover;
    height: 90vh;
}

.hero_slider .owl-carousel .owl-item .item h2 {
    position: absolute;
    bottom: 13%;
    right: 4%;
    background: #f6b90e;
    padding: .5rem;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1.8rem;
    text-transform: capitalize;
}

#hero_slider .owl-nav .owl-prev,
#hero_slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: #fff;
    background: #ffffff66;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    line-height: normal;
    font-family: var(--font-family);
    transform: translate(0%, -50%);
    transition: all 54ms ease-in-out;
}

#hero_slider .owl-nav .owl-prev:hover,
#hero_slider .owl-nav .owl-next:hover {
    background-color: #0000002d;
}

#hero_slider .owl-nav .owl-prev,
#hero_slider .owl-nav .owl-next {
    pointer-events: auto;
}

#hero_slider .owl-nav .owl-prev {
    left: 3%;
}

#hero_slider .owl-nav .owl-next {
    right: 3%;
}

#hero_slider .owl-dots {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

#hero_slider button.owl-dot {
    width: 10px;
    height: 10px;
    background: #ffffffc4;
    border-radius: 1rem;
    margin: 0 3px;
    border: none;
    outline: none;
}

#hero_slider button.owl-dot.active {
    background-color: #fff;
}

/* ======================================== Hero section end ===================================================== */

/* ======================================== Latest project section  ===================================================== */

.lProBx {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    height: 350px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 0 1rem 1rem 1rem;
}

.lProBx::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
}


.lProBx h4 {
    font-size: 2.25rem;
    font-weight: 500;
    color: #fff;
    z-index: 9;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 1px #000;
}

/* ======================================== Latest project section end ===================================================== */


/* ======================================== project insights section ===================================================== */
.proIns .item {
    opacity: 0.4;
    transition: .4s ease all;
    transform: scale(.8);
    /* max-height: 275px; */
    overflow: hidden;
    border-radius: 1rem;
}

.proIns .item a {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:1000px) {
    .proIns .item {
        margin: 0;
        transform: scale(.9)
    }
}

.proIns .active .item {
    opacity: 1;
    transform: scale(1);
    /* max-height: 275px; */
}

.proIns .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
}

.proIns .active .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
}

.proIns .owl-item {
    /*loop issue fixed*/
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.proIns .owl-item img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.proIns .inner {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.proIns .inner span {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: .3s ease border-color;
    background: #fff;
    border-radius: 4px;
    padding: .2rem .38rem;
    font-family: var(--font-family);
}

.proIns .owl-controls {
    position: absolute;
    margin-top: 300px;
}

.proIns .owl-nav .owl-prev,
.proIns .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    font-size: 2rem !important;
    color: #fff !important;
    background: #55525266 !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    line-height: normal;
    font-family: var(--font-family);
    transform: translate(0%, -50%);
    transition: all .5s ease-in-out;
}

.proIns .owl-nav .owl-prev {
    left: 3%;
}

.proIns .owl-nav .owl-next {
    right: 3%;
}

.proIns .owl-nav .owl-prev:hover,
.proIns .owl-nav .owl-next:hover {
    background-color: #313131 !important;
}

/* ======================================== project insights section end ===================================================== */


/* ======================================== discover section end ===================================================== */
.discover .whyPoint {
    display: flex;
    gap: 12px;
    padding: 1rem 0;
    text-align: left;
}

/* ======================================== discover section end ===================================================== */


/* ======================================== about section  ===================================================== */

.about img {
    border-radius: 1rem;
}

.about .lead {
    font-size: 1.2rem;
}

.a_hero {
    margin: 2rem 0;
    padding: 2rem 0 0rem 0;
}

.a_hero .title,
.teamTi .title:nth-child(1) {
    /* font-size: 4rem; */
    /* font-weight: 500; */
    /* font-style: oblique; */
    font-family: var(--font-family);
    border-bottom: 4px solid var(--primary-color);
    width: max-content;
    margin: 0.5rem auto;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.whylist {
    margin: 1.75rem 0 1.25rem 0;
}

.whyChooseUs .whyPoint {
    display: flex;
    gap: 12px;
    padding: 1rem 0;
}

.whyPoint i {
    font-size: 1.5rem;
    line-height: 1.2;
}

/* ======================================== about section end ===================================================== */




/* ======================================== Clients section  ===================================================== */
.home-logo-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.home-logo-wrapper.reverse {
    margin-top: -2rem;
}

.clients-grid.logo-animate {
    grid-column-gap: 3rem;
    opacity: 1;
    flex: none;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100rem;
    margin-top: 0;
    margin-bottom: 3rem;
    margin-right: 0;
    display: flex;
}

.logo-animate {
    animation: slide 35s infinite linear;
}

.clients-grid.logo-animate-alt {
    grid-column-gap: 3rem;
    flex: none;
    width: 100rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
    display: flex;
}

.logo-animate-alt {
    animation: slidealt 35s infinite linear;
    animation-direction: reverse;
}

.client-logo {
    width: 188px;
}

@keyframes slide {
    0% {
        transform: translateX(calc(0% + 50px));
    }

    100% {
        transform: translateX(-100%);
    }
}

.logo-animate {
    animation: slide 35s infinite linear;
}

@keyframes slidealt {
    0% {
        transform: translateX(calc(0% + 50px));
    }

    100% {
        transform: translateX(-100%);
    }
}

.logo-animate-alt {
    animation: slidealt 35s infinite linear;
    animation-direction: reverse;
}

/* ======================================== Clients section end  ===================================================== */


/* ======================================== testimonial section  ===================================================== */
.shadow-effect {
    background: #fff;
    padding: 1.25rem;
    border-radius: 1.25rem;
    text-align: center;
    border: 1px solid #ECECEC;
    border: .1px solid var(--primary-color);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    min-height: 215px;

}

#customers-testimonials .shadow-effect p {
    font-family: var(--font-family);
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

#customers-testimonials .img-circle {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    margin: 1rem auto;
}


.img-circle {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--primary-color);
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px 15px;
    margin-bottom: 10px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

#customers-testimonials .owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: var(--primary-color);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
    border-radius: 50%;
}

/* ======================================== testimonial section end  ===================================================== */


/* ======================================== team section   ===================================================== */
.teams .shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #ECECEC;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
    box-shadow: var(--box-shadow);
    border: 1px solid var(--primary-color);
}

#customers-teams .item {
    height: 385px !important;
    text-align: center;
    padding: 15px 12px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-teams .item p {
    font-size: 12px;
}

#customers-teams .item h2 {
    font-size: 28px !important;
    font-weight: 500 !important;
}

#customers-teams .item .title {
    margin-bottom: 0;
    font-size: 14px;
}

#pastexp {
    margin-top: .75rem;
    text-align: left;
}

#pastexp p {
    margin-bottom: .5rem;
}

#pastexp p i {
    color: var(--primary-color);
}

#customers-teams .item h5 {
    font-size: 15px !important;
    font-weight: 700 !important;
}

#customers-teams .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.team_header {
    display: flex;
    align-items: anchor-center;
    gap: 30px;
    margin-bottom: .75rem;
}

.team_text {
    text-align: left;
}

.team_text h2 {
    font-size: 1.5rem;
    margin: 0;
}

.team_text p {
    margin-bottom: .75rem;
}

.team-box {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f8f9fa;
}

.teams .owl-carousel .owl-item .img-circle {
    transform-style: preserve-3d;
    max-width: 200px;
    margin: 0 auto 17px;
    transition: transform .5s;
    object-fit: cover;
}

.teams .owl-carousel .owl-item .img-circle:hover {
    transform: scale(0.9);
}

#customers-teams.owl-carousel .owl-dots .owl-dot.active span,
#customers-teams.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-teams.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-teams.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-teams.owl-carousel .owl-dots .owl-dot span {
    background: var(--primary-color);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    margin-top: 50px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
    outline: none;
    border-radius: 50% !important;
}

.owl-dot,
.owl-dot:active,
.owl-dot:focus {
    outline: 0 !important;
}

@media only screen and (max-width: 1000px) {
    #customers-teams.owl-carousel .owl-dots .owl-dot span {
        height: 20px;
        width: 20px;
        margin-top: 30px;
    }
}


.teamsocial {
    align-items: center;
    justify-content: center;
    display: flex;

}

.teamsocial #socialicon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* width: 40px;
    height: 40px; */
    /* margin: 0 0.5rem; */
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;

}

.teamsocial #socialicon:hover {
    font-size: 1.5rem;
    color: #0077B5;
}

/* ======================================== team section end  ===================================================== */



/* ======================================== hero header section  ===================================================== */
.hero_header {
    width: 100%;
    height: 400px;
}

.hero_bg {
    width: 100%;
    height: 100%;
    background: no-repeat center center / cover;
    padding: 1rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero_bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a1;
}

.hero_bg h1 {
    font-size: 4rem;
    font-weight: 500;
    font-family: var(--font-family);
    color: #fff;
    z-index: 9;
}

.hero_bg h5 {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    z-index: 9;
}

/* ======================================== hero header section end  ===================================================== */



/* ======================================== services page sections  ===================================================== */

.section-services {
    font-family: "Poppins", sans-serif;
    background-color: #e6edf7;
    color: #202020;
    padding-top: 115px;
    padding-bottom: 120px;
}

.section-services .header-section {
    margin-bottom: 34px;
}

.section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff4500;
    border-radius: 3px;
}

.section-services .header-section .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
    font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
}

.section-services .single-service .content {
    position: relative;
    z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #ff4500;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
}

.section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #ff4500;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
    background-color: #fff;
    color: #ff4500;
}

.section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 23px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
    color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
    color: #fff;
}

.section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
    color: #fff;
}

.section-services .single-service a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ff4500;
    transition: background-color .3s;
}

.section-services .single-service:hover a:after {
    background-color: #fff;
}

/* ======================================== services page sections end  ===================================================== */


/* ======================================== Project Details section  ===================================================== */

.missnory_layout {
    column-width: 350px;
    column-gap: 15px;
}

.missnory_layout .img_bx {
    position: relative;
    width: 100%;
    border-radius: 0.95rem;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    border: 1px solid lightgrey;
    padding: .5rem;
}

.missnory_layout img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.img_bx .inner {
    width: 100%;
    text-align: center;
    padding: .5rem;
}

.img_bx .inner span {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: .3s ease border-color;
    /* background: #fff; */
    border-radius: 4px;
    padding: .2rem .38rem;
    font-family: var(--font-family);
}

/* ======================================== Project Details section end  ===================================================== */



/* ======================================== Service section   ===================================================== */
.service_card .card {
    position: relative;
}

.service_card .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000078;
}

.service_card h3,
.service_card h6 {
    text-shadow: 1px 1px 1px #000;
    z-index: 999;
}

/* ======================================== Service section end  ===================================================== */


/* ======================================== contact section   ===================================================== */
.career .form-control:focus,
.career .form-control:focus,
.contact .form-control:focus,
.contact .form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

.carousel-container .owl-carousel .owl-dots .owl-dot span {
    background: var(--primary-color);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
    border-radius: 50%;
}

.carousel-container .owl-carousel .owl-dots .owl-dot span {
    background: var(--primary-color);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
    border-radius: 50%;
}

.carousel-container .owl-carousel .owl-dots .owl-dot.active span,
.carousel-container .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

.contact_card {
    /* border: 1px solid var(--primary-color);
    border-radius: 1rem; */
    overflow: hidden;
    margin: .5rem;
    margin-bottom: 1rem;
}

.card_con {
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.card_con h2 {
    color: #8B0000;
    font-size: 22px;
    margin-bottom: 10px;
}

.card_con p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.card_con .highlight {
    font-weight: bold;
    color: #333;
}

.locations {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #444;
}

.email {
    margin-top: 10px;
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    display: inline-block;
}

.email:hover {
    text-decoration: underline;
}


.form_border {
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    overflow: hidden;
    padding: 1rem .5rem;
}

/* ======================================== contact section end  ===================================================== */