/********** Template CSS **********/
:root {
    --primary: rgb(37 52 107);
    /* --secondary: #F57E57; */
    --light: #ffffff;
    --dark: rgb(37 52 107);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
/*
.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
} */

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: var(--primary);
    color: var(--light);
    display: inline-block;
    border-radius: 50px;
}

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.navbar {
    border-bottom: 1px solid rgba(218, 213, 213, 0.685);
}

.navbar img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Kanit", sans-serif;
    font-size: 16px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

@media (min-width: 1024px) {
    .navbar .navbar-nav .nav-item {
        margin: 0 0;
    }
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-secondary);
    opacity: 0;
    transition: 0.5s;
    /* border-radius: 20px; */
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    /* background: var(--bs-secondary); */
}

.nav-bar .navbar-toggler {
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    outline: none;
    border: none;
}

.navbar .navbar-toggler {
    color: white !important;
    border-color: white !important;
}

.navbar .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 3px solid var(--primary);
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    content: '';
    /* z-index: 2; */
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-collapse {
        position: absolute;
        background: var(--primary);
        color: white !important;
        height: 100vh;
        width: 234px;
        left: -282px;
        top: 70px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-left: 20px;
        transition: .3s linear;
        z-index: 99;
    }

    .navbar-collapse.show {
        top: 70px;
        left: 0px;
    }
}

@media screen and (min-width:577px) and (max-width: 840px) {
    .navbar-collapse {
        top: 70px;
    }

    .navbar-collapse.show {
        top: 70px;
    }
}


/*** Navbar End ***/

/* HOME LOGO =================================== */
.home-image img {
    width: 500px;
    height: 558px;
    /* background-color: darkblue; */
}



/*** gallery personal ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

/*** gallery personal ***/

/* payment start ==================================== */
.payment .card {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.payment .border-radius {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 5px;
}


.force-overflow {
    height: 400px;
    overflow-y: scroll;
}

/* payment end ==================================== */
.feature-area {
    background-color: #f0f0ef9a;
}

.feature-area .single-feature {
    background: #fff;
    padding: 32px;
    border-radius: 10px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.feature-area .single-feature .title i {
    color: #222;
    font-weight: 600;
    font-size: 25px;
    margin-right: 15px;
}

.feature-area .single-feature .title i {
    color: var(--primary);

}

.feature-area .single-feature h4 {
    color: var(--primary);

}

.single-feature:hover {
    background-color: var(--primary);
    color: var(--light);
    transition: 0.03sec ease-in-out;
}

.single-feature:hover .title i {
    color: var(--light);
}

.single-feature:hover h4 {
    color: var(--light);
}



/*! CSS Used from izmir.css */
.ls-izmir {
    --text-color: #ffffff;
    /* --primary-color: rgba(230, 232, 236, 0.752);
    --secondary-color: rgb(238, 238, 238); */
    --padding: 1em;
    --transition-duration: 600ms;
    --border-margin: 15px;
    --border-width: 3px;
    --border-color: #ffffff;
    --border-radius: 1px;
    --image-opacity: 0.25;
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    padding: 0;
    color: #ffffff;
    color: var(--text-color);
    border-radius: 1px;
    border-radius: var(--border-radius);
}

.ls-izmir:before,
.ls-izmir:after,
.ls-izmir *,
.ls-izmir *:before,
.ls-izmir *:after {
    box-sizing: border-box;
    transition: all 600ms ease;
    transition: all var(--transition-duration) ease;
}

.ls-izmir figcaption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    padding: var(--padding);
    width: 100%;
    z-index: 1;
}

.ls-izmir img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.ls-izmir h4 {
    margin-top: 0;
    color: #ffffff;
    color: var(--text-color);
}

.ls-izmir h4:last-child {
    margin-bottom: 0;
}

[class*=" ls-border"]:before,
[class*=" ls-border"]:after,
[class*=" ls-border"] figcaption:before,
[class*=" ls-border"] figcaption:after {
    background-color: #ffffff;
    background-color: var(--border-color);
    position: absolute;
    content: "";
}

[class*=" ls-border"]:before,
[class*=" ls-border"]:after {
    z-index: 1;
    height: 3px;
    height: var(--border-width);
    left: 15px;
    left: var(--border-margin);
    right: 15px;
    right: var(--border-margin);
    transform: scaleX(0);
}

[class*=" ls-border"]:before {
    top: 15px;
    top: var(--border-margin);
}

[class*=" ls-border"]:after {
    bottom: 15px;
    bottom: var(--border-margin);
}

[class*=" ls-border"] figcaption {
    z-index: 3;
}

[class*=" ls-border"] figcaption:before,
[class*=" ls-border"] figcaption:after {
    z-index: -1;
    width: 3px;
    width: var(--border-width);
    top: 15px;
    top: var(--border-margin);
    bottom: 15px;
    bottom: var(--border-margin);
    transform: scaleY(0);
}

[class*=" ls-border"] figcaption:before {
    left: 15px;
    left: var(--border-margin);
}

[class*=" ls-border"] figcaption:after {
    right: 15px;
    right: var(--border-margin);
}

[class*=" ls-border"].hover:before,
[class*=" ls-border"].hover:after,
[class*=" ls-border"].hover figcaption:before,
[class*=" ls-border"].hover figcaption:after,
[class*=" ls-border"]:hover:before,
[class*=" ls-border"]:hover:after,
[class*=" ls-border"]:hover figcaption:before,
[class*=" ls-border"]:hover figcaption:after,
[class*=" ls-border"]:focus:before,
[class*=" ls-border"]:focus:after,
[class*=" ls-border"]:focus figcaption:before,
[class*=" ls-border"]:focus figcaption:after,
:focus>[class*=" ls-border"]:before,
:focus>[class*=" ls-border"]:after,
:focus>[class*=" ls-border"] figcaption:before,
:focus>[class*=" ls-border"] figcaption:after {
    transform: scale(1);
}

.ls-border-bottom-left:before,
.ls-border-bottom-left:after,
.ls-border-bottom-left figcaption:before,
.ls-border-bottom-left figcaption:after {
    transform-origin: 0 100%;
}

.ls-border-bottom-left:before {
    transition-delay: 0s;
}

.ls-border-bottom-left:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25);
}

.ls-border-bottom-left figcaption:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25);
}

.ls-border-bottom-left figcaption:after {
    transition-delay: 0s;
}

.ls-border-bottom-left.hover:before,
.ls-border-bottom-left:hover:before,
.ls-border-bottom-left:focus:before,
:focus>.ls-border-bottom-left:before {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25);
}

.ls-border-bottom-left.hover:after,
.ls-border-bottom-left:hover:after,
.ls-border-bottom-left:focus:after,
:focus>.ls-border-bottom-left:after {
    transition-delay: 0s;
}

.ls-border-bottom-left.hover figcaption:before,
.ls-border-bottom-left:hover figcaption:before,
.ls-border-bottom-left:focus figcaption:before,
:focus>.ls-border-bottom-left figcaption:before {
    transition-delay: 0s;
}

.ls-border-bottom-left.hover figcaption:after,
.ls-border-bottom-left:hover figcaption:after,
.ls-border-bottom-left:focus figcaption:after,
:focus>.ls-border-bottom-left figcaption:after {
    transition-delay: 480ms;
    transition-delay: calc(var(--transition-duration) / 1.25);
}

.ls-image-rotate-right img {
    transform: scale(1.1) translate(0, 0);
}

.ls-image-rotate-right.hover img,
.ls-image-rotate-right:hover img,
.ls-image-rotate-right:focus img,
:focus>.ls-image-rotate-right img {
    transform: scale(1.3) rotate(15deg);
}

.ls-delay-100,
.ls-delay-100>* {
    transition-delay: 100ms;
}

[class^="ls-reveal"] {
    display: inline-block;
}

[class^="ls-reveal"]>* {
    display: inline-block;
}

[class^="ls-reveal"]>*:last-child {
    margin-bottom: 0;
}

[class^="ls-reveal"] {
    overflow: hidden;
    opacity: 1;
}

.ls-izmir.hover [class^="ls-reveal"],
.ls-izmir:hover [class^="ls-reveal"],
.ls-izmir:focus [class^="ls-reveal"],
:focus>.ls-izmir [class^="ls-reveal"] {
    opacity: 1;
}

.ls-izmir.hover [class^="ls-reveal"]>*,
.ls-izmir:hover [class^="ls-reveal"]>*,
.ls-izmir:focus [class^="ls-reveal"]>*,
:focus>.ls-izmir [class^="ls-reveal"]>* {
    transform: translate(0) rotate(0deg);
}

.ls-reveal-right>* {
    transform: translateX(-100%);
}

/* .ls-gradient-bottom-right {
    background-image: linear-gradient(315deg, #257def 0%, #225ae7 100%);
    background-image: linear-gradient(315deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
} */

.ls-izmir .ls-layout-bottom-left {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
}

.ls-izmir {
    /* background-color: #2758eb; */
    background-color: rgb(55, 54, 66);
}

.ls-izmir figcaption {
    padding: 2em;
    padding: calc(var(--padding) * 2);
}

.ls-izmir figcaption>* {
    opacity: 0;
}

.ls-izmir.hover>img,
.ls-izmir:hover>img,
.ls-izmir:focus>img,
:focus>.ls-izmir>img {
    opacity: 0.25;
    opacity: var(--image-opacity);
}

.ls-izmir.hover figcaption>*,
.ls-izmir:hover figcaption>*,
.ls-izmir:focus figcaption>*,
:focus>.ls-izmir figcaption>* {
    opacity: 1;
}





/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.abouts {
    /* background-color: rgba(237, 235, 235, 0.638); */
}

.abouts .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.abouts .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.abouts .content ul {
    list-style: none;
    padding: 0;
}

.abouts .content ul li {
    padding-bottom: 10px;
}

.abouts .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--primary);
}

.abouts .content p:last-child {
    margin-bottom: 0;
}

.abouts .content .read-more {
    background: var(--primary);
    color: var(--light);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.abouts .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.abouts .content .read-more:hover {
    background: var(--primary);
    padding-right: 19px;
}

.abouts .content .read-more:hover i {
    margin-left: 10px;
}

.abouts .about-images img {
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us img {
    border-radius: 10px;
}

.why-choose-us .features-content {
    padding-right: 30px;
}

@media (max-width: 992px) {
    .why-choose-us .features-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

.why-choose-us .features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .why-choose-us .features-content h2 {
        font-size: 2rem;
    }
}

.why-choose-us .features-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    /* margin-bottom: 1.5rem; */
    color: var(--default-color);
}

.why-choose-us .features-content p {
    /* margin-bottom: 2rem; */
    color: var(--default-color);
}

.why-choose-us .features-content .features-list .feature-item {
    display: flex;
    margin-bottom: 10px;
}

.why-choose-us .features-content .features-list .feature-item:last-child {
    margin-bottom: 0;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon {
    flex-shrink: 0;
    width: 30px;

    /*** Projects Start ***/
    .project .project-item .project-img {
        position: relative;
    }

    .project .project-item .project-img::after {
        content: "";
        position: absolute;
        width: 70%;
        height: 70%;
        top: 0;
        left: 0;
        background: var(--bs-secondary);
        z-index: -1;
    }

    .project .project-item .project-content a.h4 {
        transition: 0.5s;
    }

    .project .project-item:hover .project-content a.h4:hover {
        color: var(--bs-secondary);
    }

    /*** Projects End ***/
    height: 30px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon:hover {
    background-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
}

.why-choose-us .features-content .features-list .feature-item .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    /* margin-bottom: 0.5rem; */
    color: var(--heading-color);
}

.why-choose-us .features-content .features-list .feature-item .feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--default-color);
}

.why-choose-us .features-image {
    position: relative;
}

.why-choose-us .features-image .main-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.why-choose-us .features-image .stats-card {
    position: absolute;
    top: -30px;
    left: -30px;
    background-color: var(--light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    z-index: 2;
    width: 220px;
}

@media (max-width: 768px) {
    .why-choose-us .features-image .stats-card {
        width: 180px;
        padding: 15px;
        top: -20px;
        left: -10px;
    }
}

.why-choose-us .features-image .stats-card .stat-item {
    text-align: center;
}

.why-choose-us .features-image .stats-card .stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .why-choose-us .features-image .stats-card .stat-item h3 {
        font-size: 1.2rem;
    }
}

.why-choose-us .features-image .stats-card .stat-item p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--default-color);
}

@media (max-width: 768px) {
    .why-choose-us .features-image .stats-card .stat-item p {
        font-size: 0.7rem;
    }
}

.why-choose-us .features-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

@media (max-width: 768px) {
    .why-choose-us .features-image .experience-badge {
        padding: 15px;
        right: 0;
    }
}

.why-choose-us .features-image .experience-badge .badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-choose-us .features-image .experience-badge .badge-content .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .why-choose-us .features-image .experience-badge .badge-content .number {
        font-size: 2rem;
    }
}

.why-choose-us .features-image .experience-badge .badge-content .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}



/*** Projects Start ***/
.project .project-item .project-img {
    position: relative;
}

.project .project-item .project-img::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    z-index: -1;
}

.project .project-item .project-content a.h4 {
    transition: 0.5s;
}

.project .project-item:hover .project-content a.h4:hover {
    color: var(--bs-secondary);
}

/*** Projects End ***/




/*--------------------------------------------------------------
# interior Section
--------------------------------------------------------------*/

#food_arena .food_arena-end {
    background: linear-gradient(rgb(37 52 107), rgba(64, 91, 189, 0.76)), center center no-repeat;
    background-size: cover;
    padding: 32px;
}

#food_arena h3 {
    color: var(--yellow);
    margin-bottom: 32px;
}

#food_arena p {
    color: var(--white);
}

@media (min-width: 992px) {

    #food_arena .food_arena-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

#food_arena .food_arena-ends {
    background: linear-gradient(rgb(37 52 107), rgba(64, 91, 189, 0.76)), center center no-repeat;
    background-size: cover;
    padding: 32px;
}

@media (min-width: 992px) {

    #food_arena .food_arena-ends {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }
}

#food_arena img {
    border-radius: 20px;
}


.image-column {
    position: relative;
    margin-bottom: 50px;
}

.image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
}

.image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
}

.image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 160px;
    height: 160px;
}

.image-column .inner-column .image img {
    position: relative;
    width: 100%;
    height: 360px;
    display: block;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
}

.image-column .inner-column:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 40px;
    bottom: 100px;
    z-index: -1;
    border: 5px solid var(--primary);
    border-radius: 32px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}



/*feature css starts*/
.timeline__cover {
    color: #ffffff;
}

.timeline__cover .timeline__title {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.timeline__cover .timeline__title h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.timeline__cover .timeline__title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    color: #959595;
}

.timeline__cover .timeline {
    padding-top: 30px;
}

.timeline__cover .timeline ul {
    padding-top: 100px;
}

.timeline__cover .timeline ul li {
    background: #9a9a9a;
    position: relative;
    margin: 0 auto;
    width: 2px;
    margin-bottom: 48px;
    list-style-type: none;
}

.timeline__cover .timeline ul li:last-child {
    padding-bottom: 7px;
    width: 0;
    height: 0;
}

.timeline__cover .timeline ul li:before {
    content: '';
    background: #dc4a38;
    position: absolute;
    left: 50%;
    top: -32px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 16px;
    height: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.timeline__cover .timeline ul li .hidden {
    opacity: 0;
}

.timeline__cover .timeline ul li .content {
    position: relative;
    top: -100px;
    width: 289px;
}

.timeline__cover .timeline ul li .content .badge {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    border-radius: 1000px;
}

.timeline__cover .timeline ul li .content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #ffffff;
    margin: 16px 0 8px;
}

.timeline__cover .timeline ul li .content p {
    color: #acacac;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content {
    left: 70px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content:before {
    left: -38px;
}

.timeline__cover .timeline ul li:nth-child(even) .content {
    left: calc(-289px - 70px);
}

.timeline__cover .timeline ul li:nth-child(even) .content:before {
    right: -38px;
}

/* Media Queries */
@media screen and (max-width: 1020px) {
    .timeline__cover .timeline ul li .content {
        width: 41vw;
    }

    .timeline__cover .timeline ul li:nth-child(even) .content {
        left: calc(-41vw - 45px);
    }
}

@media screen and (max-width: 700px) {
    .timeline__cover {
        /* padding: 32px 0; */
        /* background: #27272C; */
    }

    .timeline__cover .timeline__title {
        text-align: left;
    }

    .timeline__cover .timeline {
        padding-top: 32px;
    }

    .timeline__cover .timeline ul li {
        margin-left: 0 !important;
    }

    .timeline__cover .timeline__title h2 {
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 0.08px;
    }

    .timeline__cover .timeline ul li {
        margin-left: 20px;
    }

    .timeline__cover .timeline ul li .content {
        width: calc(100vw - 100px);
        transition: .2s;
    }

    .timeline__cover .timeline ul li .content p {
        min-height: 110px;
    }

    .timeline__cover .timeline ul li:nth-child(even) .content {
        left: 38px;
    }

    .timeline__cover .timeline ul li:nth-child(even) .content:before {
        left: -33px;
    }

    .timeline__cover .timeline ul li:nth-child(odd) .content {
        left: 38px;
    }
}

/* timeline__cover ends */

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, 0.542);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

.construction-item .construction-img {
    position: relative;
    overflow: hidden;
}

.construction-item .construction-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(10, 97, 246, 0.123);
    transition: 0.5s;
}

.construction-item:hover .construction-img::after {
    width: 100%;
    height: 100%;
}

.construction-item .construction-img img {
    transition: 0.5s;
}

.construction-item:hover .construction-img img {
    transform: scale(1.2);
}


.content-item .content-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.content-item .content-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(10, 97, 246, 0.123);
    transition: 0.5s;
}

.content-item:hover .content-img::after {
    width: 100%;
    height: 100%;
}

.content-item .content-img img {
    transition: 0.5s;
}

.content-item:hover .content-img img {
    transform: scale(1.2);
}

.contact-section .one {
    background-color: rgb(37 52 107) !important;
    height: 444px;
}

@media (max-width: 576px) {
    .contact-section .one {
        background-color: rgb(37 52 107) !important;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .contact-section .one {
        background-color: rgb(37 52 107) !important;
        height: 360px;
    }
}
