/*! ================================== Header ================================== */
#header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:
        linear-gradient(#76849f80, #0a192f),
        url("../assets/images/bg-hero.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#header .main-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}
header .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
}
header .head .logo {
    width: 200px;
    height: 100px;
}
header .head .lang {
    color: var(--white-color);
}
header .head .lang svg {
    width: 20px;
    height: 20px;
}
header .head .lang .main-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    width: fit-content;
    padding: 5px 10px;
}

/* ========= Head Page ========= */
header .head-page .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .head-page .lang .main-btn {
    color: var(--main-color);
    border-color: var(--main-color);
}
header .head-page .lang svg path {
    stroke: #c5a059;
}
header .head-page .lang .main-btn::before,
header .head-page .lang .main-btn::after {
    background-color: var(--main-color);
}

/* ========= Hero ========= */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.hero .caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    color: var(--white-color);
    width: 50%;
}
.hero .caption h1 {
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 900;
    padding-block: 20px;
    position: relative;
    text-align: start;
    z-index: 3;
}
.hero .caption .border-h1 {
    content: "";
    position: absolute;
    width: 67%;
    height: 100%;
    border: 3px solid var(--main-color);
    border-right: none;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.hero .caption .border-h1::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 40px;
    right: 0;
    top: 0;
    background-color: var(--main-color);
}
.hero .caption .border-h1::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 40px;
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
}
.hero .caption figure {
    width: 200px;
    margin: auto;
}
.hero .caption p {
    font-size: clamp(16px, 3vw, 22px);
    color: rgb(255, 255, 255, 80%);
}

/* ===== About SECTION ===== */
.about-section {
    padding: 40px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
}
.vision-block::before,
.about-text::before {
    position: absolute;
    content: "";
    background-image: url(../assets/images/Home-Page-2.svg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

/* about Text Block */
.about-text {
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(
        90deg,
        #c5a059 -7.52%,
        rgba(197, 160, 89, 0.6) 165.29%
    );
    border-radius: 12px;
    padding: 40px 36px;
    flex: 1;
}

.about-title {
    font-family: "font_bold";
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white-color);
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 0.92rem;
    color: var(--white-color);
    line-height: 1.75;
    margin-bottom: 28px;
    opacity: 0.95;
}

/* Vision Block */
.vision-block {
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(
        90deg,
        #c5a059 -7.52%,
        rgba(197, 160, 89, 0.6) 165.29%
    );
    border-radius: 12px;
    padding: 24px 36px;
}

.vision-title {
    font-family: "font_bold";
    font-size: 1.1rem;
    color: var(--white-color);
    margin-bottom: 10px;
}

.vision-desc {
    font-size: 0.88rem;
    color: var(--white-color);
    line-height: 1.7;
    opacity: 0.9;
}

/* about Image */
.about-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 12px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-logo-badge {
    position: absolute;
    bottom: 20%;
    right: 90%;
    transform: translateX(50%);
    width: 110px;
    height: 110px;
    background: var(--white-color);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: zoom 2s ease-in-out infinite;
}
@keyframes zoom {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}
.about-logo-bg {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #fff2d9;
    border-radius: 50%;
    z-index: 3;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== NUMBERS SECTION ===== */
/* .numbers-section {
    background: var(--white-color);
} */

.number-card {
    position: relative;
    height: stretch;
    padding: 32px 20px;
    text-align: center;
    border-top: 1.5px solid;
    border-bottom: 1.5px solid;
    border-left: 1.5px solid;
    border-right: none;
    border-image: linear-gradient(
            90deg,
            #bd8d31 -5.31%,
            #bd8d31 42.08%,
            #0a192f 100%
        )
        1;
}
.number-card::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    top: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        #bd8d31 -5.31%,
        #bd8d31 42.08%,
        #0a192f 100%
    );
}
.number-card::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        #bd8d31 -5.31%,
        #bd8d31 42.08%,
        #0a192f 100%
    );
}
.number-value {
    font-family: "font_bold";
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--second-color);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.number-label {
    font-size: 0.9rem;
    color: #666;
    font-family: "font_main";
}

/* services */
/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
    min-height: 100vh;
}
.services-section .main-container {
    height: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-evenly;
    gap: 50px;
}

.services-bg {
    position: absolute;
    inset: 0;
    display: flex;
    /* background-image: url(../assets/images/about-us.webp); */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.services-bg-right {
    width: 35%;
    background-color: rgb(10 25 47 / 46%);
}

.services-bg-left {
    background-color: rgb(197 160 89 / 46%);
    width: 65%;
}

.services-title {
    position: relative;
    font-family: "font_bold";
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white-color);
    line-height: 1.3;
    padding-top: 10px;
    margin-left: 22%;
}

/* Service Card */
.service-card {
    background: var(--white-color);
    overflow: hidden;
}

.service-card:hover .service-card-img img:first-child {
    transform: scale(1.05);
}

.service-card-img {
    position: relative;
    /* height: 100%; */
    height: 200px;
}

.service-card-img img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease-in-out;
}
.contact-border {
    border: 1px solid #fff;
    padding: 20px;
}

.service-icon {
    position: absolute;
    bottom: -40px;
    left: 85%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--main-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card:hover .service-icon {
    bottom: -20px;
    left: 50%;
}

.service-name {
    font-family: "font_bold";
    font-size: 0.95rem;
    color: var(--second-color);
    padding: 32px 16px 16px;
}

/* Explore Button */
.services-explore {
    text-align: center;
    margin-top: 36px;
    padding-bottom: 10px;
}

/* services end */

/* projects */
/* ===== PROJECTS SECTION ===== */
.projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.projects-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.projects-tab-btn {
    border: 1.5px solid var(--main-color);
    background: transparent;
    color: var(--main-color);
    padding: 7px 18px;
    font-size: 0.85rem;
    font-family: "font_main";
    transition:
        background 0.25s,
        color 0.25s;
    cursor: pointer;
}

.projects-tab-btn.active,
.projects-tab-btn:hover {
    background: var(--main-color);
    color: var(--white-color);
}

/* Project Card */
.project-card {
    position: relative;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.project-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover > img {
    transform: scale(1.05);
}

/* Normal Overlay */
.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgb(10 25 47 / 79%) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: opacity 0.35s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 0;
}

/* Hover Overlay */
.project-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.88);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.project-card:hover .project-card-hover {
    opacity: 1;
}

.project-card-title {
    font-family: "font_bold";
    font-size: 1rem;
    color: var(--white-color);
    margin-bottom: 10px;
}

.project-card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 12px;

    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card-divider {
    height: 1.5px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 12px;
}

.project-card-link {
    font-size: 0.85rem;
    color: var(--white-color);
    font-family: "font_main";
    transition: color 0.2s;
}

.project-card-link.active-link {
    color: var(--main-color);
}

.project-card-link:hover {
    color: var(--main-color);
}

/* Explore Button */
.projects-explore {
    text-align: center;
    margin-top: 40px;
}
.projects-explore .main-btn {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-right: none;
}
.projects-explore .main-btn::before {
    background-color: var(--main-color);
}
.projects-explore .main-btn::after {
    background-color: var(--main-color);
}
.projects-explore .main-btn .line-btn {
    background-color: var(--main-color);
}
.projects-explore .main-btn .bg-btn {
    background-color: var(--main-color);
}
/* projects end */

/* page why us */
/* ===== WHY SECTION ===== */
.why-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-section .title-header {
    justify-content: center;
    color: var(--white-color);
}
.why-section .title-header .title-content {
    -webkit-text-fill-color: #fff;
    color: var(--white-color) !important;
}
.why-section .title-header .title-line {
    background: var(--white-color) !important;
}

.why-section .main-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.82);
}

.why-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    margin-top: 40px;
    border-radius: 12px;
}

.why-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 200px;
    max-width: 400px;
}
.why-card-col {
    display: flex;
    justify-content: center;
}
.why-icon {
    position: relative;
    width: 64px;
    height: 64px;
    min-width: 64px;
    border: 1.5px solid var(--white-color);
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.why-icon::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background: var(--white-color);
}
.why-icon::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 1.5px;
    bottom: 0;
    right: 0;
    background: var(--white-color);
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.why-title {
    font-family: "font_bold";
    font-size: 1rem;
    color: var(--white-color);
    margin-bottom: 8px;
}

.why-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}
/* page why us end */

/* page service */
.page-service .service-card {
    box-shadow: 0px 1px 27px 0px #0000001a;
}
/* page service end */

/* page projects */
.page-project .projects-header {
    justify-content: center;
    margin: 50px 0 20px 0;
}
/* page projects end */

/* page details projects  */
/* ===== PROJECT DETAILS SECTION ===== */
.project-details-title {
    font-family: "font_bold";
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--second-color);
    line-height: 1.3;
}

/* Slider */
.project-slider.owl-carousel {
    background: #fffaf0;
    padding: 10px;
    display: inline-flex;
}
.project-slide-item {
    overflow: hidden;
    height: 280px;
}

.project-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Owl Custom Arrows */
.project-slider.owl-carousel .owl-nav {
    display: flex !important;
}
.project-slider.owl-carousel .owl-nav button.owl-prev,
.project-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--main-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--white-color) !important;
    font-size: 1.1rem !important;
    z-index: 10;
    transition: background 0.25s;
}

.project-slider.owl-carousel .owl-nav button.owl-prev {
    left: -16px;
}

.project-slider.owl-carousel .owl-nav button.owl-next {
    right: -16px;
}

.project-slider.owl-carousel .owl-nav button:hover {
    background: var(--second-color) !important;
}

.project-slider.owl-carousel .owl-nav button span {
    line-height: 1;
    margin-top: -2px;
}
.project-slider.owl-carousel .owl-nav button.owl-prev span,
.project-slider.owl-carousel .owl-nav button.owl-next span {
    display: none;
}

.project-slider.owl-carousel .owl-nav button.owl-prev::after,
.project-slider.owl-carousel .owl-nav button.owl-next::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("../assets/images/Arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.project-slider.owl-carousel .owl-nav button.owl-prev,
.project-slider.owl-carousel .owl-nav button.owl-next {
    background: linear-gradient(
        90deg,
        #bd8d31 -5.31%,
        #bd8d31 42.08%,
        #0a192f 100%
    ) !important;
}

.project-slider.owl-carousel .owl-nav button.owl-prev::after {
    transform: scaleX(-1);
}

/* Info Row */
.project-info-row {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.project-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-info-icon {
    width: 44px;
    height: 44px;
    background: var(--main-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.project-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-info-label {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 2px;
}

.project-info-value {
    font-family: "font_bold";
    font-size: 0.92rem;
    color: var(--main-color);
}

.project-divider {
    height: 1.5px;
    background: #e5e5e5;
    margin: 24px 0;
}

/* Description */
.project-description p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.project-description p:last-child {
    margin-bottom: 0;
}

.page-details-project .header-content {
    width: 100%;
    align-items: self-start;
    justify-content: flex-start;
}
/* page details projects end  */

/* our products */
.our-products {
    position: relative;
    padding: 50px 0;
}
.our-products .main-container {
    width: 80%;
    position: relative;
}

.our-products::before {
    content: "";
    position: absolute;
    /* background-image: url(../assets/images/our-products-bg.webp); */
    background-image: var(--products-bg);
    width: 100%;
    height: 50%;
    max-height: 220px;
    top: 0;
    z-index: -1;
}

.our-products::after {
    content: "";
    position: absolute;
    background-color: #152032b6;
    width: 100%;
    height: 50%;
    max-height: 220px;
    top: 0;
    z-index: -1;
}
.our-products .section-title {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    font-size: 30px;
    color: var(--white-color);
}

.product-item {
    background: linear-gradient(180deg, #cca55c -7.52%, #bd8d31 165.29%);
    overflow: hidden;
    height: 250px;
    /* cursor: pointer; */
    position: relative;
    display: flex;
}

.product-item h2 {
    width: 80%;
    font-family: "font_bold";
    font-size: 20px;
    color: var(--white-color);
    padding: 10px;
}

.product-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

/* our partners */

.partner-item {
    width: 130px;
    height: 130px;
    object-fit: cover;
    position: relative;
    margin: 30px;
}

.partner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border: 1px solid var(--main-color);
    transform: rotate(45deg);
}
.owl-partners {
    direction: ltr;
    margin: 40px 0;
}

/* page products */
.page-products .our-products::before,
.page-products .our-products::after {
    display: none;
}

/* product- details */
.gallery-card {
    position: relative;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(197, 160, 89, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 20px;
}

.gallery-card:hover .gallery-card-hover {
    opacity: 1;
}

.gallery-card-title {
    font-family: "font_bold";
    font-size: 1rem;
    color: var(--white-color);
    text-align: center;
    line-height: 1.5;
}
/* product- details end */

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: flex;
    align-items: stretch;
    overflow: visible;
    position: relative;
}

.contact-form-side {
    background: linear-gradient(90.13deg, #c5a059 -24.32%, #d8bf90 75.16%);
    padding: 48px 40px;
    flex: 3;
}

.contact-title {
    font-family: "font_bold";
    font-size: 1.6rem;
    color: var(--white-color);
    margin-bottom: 28px;
}

.contact-form {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-section .projects-explore {
    text-align: start;
}
.contact-section .projects-explore .main-btn {
    background: transparent;
    color: var(--white-color);
    border-color: #ffffff;
}
.contact-section .projects-explore .main-btn::after,
.contact-section .projects-explore .line-btn,
.contact-section .projects-explore .main-btn::before {
    background: #fff;
}
.contact-input {
    background: transparent;
    width: 80%;
    border: none;
    border: 1px solid #ffffff;
    padding: 12px 4px;
    font-size: 0.88rem;
    color: var(--white-color);
    font-family: "font_main";
    width: 100%;
    transition: border-color 0.25s;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-input:focus {
    border-bottom-color: var(--white-color);
}

.contact-textarea {
    resize: none;
    height: 90px;
}

.contact-info-side {
    flex: 2;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-info-box {
    background: var(--second-color);
    padding: 40px 36px;
    position: relative;
    z-index: 2;
    margin-left: -40px;
    width: 100%;
    height: 105%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    outline: 1.5px solid rgba(255, 255, 255, 0.4);
    outline-offset: -1px;
    /* clip-path: inset(0 0 0 40px); */
}

.contact-info-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/about-us.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-info-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.82);
    z-index: 1;
}

.contact-info-box > * {
    position: relative;
    z-index: 2;
}

.contact-info-title {
    font-family: "font_bold";
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 12px;
}

.contact-info-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1.5px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.contact-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-info-label {
    font-family: "font_bold";
    font-size: 0.88rem;
    color: var(--white-color);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-side {
        border-radius: 12px 12px 0 0;
    }

    .contact-info-box {
        margin-left: 0;
        border-radius: 0 0 12px 12px;
    }
}
/* contact us end*/
