.navbar {
    padding: 24px 0;
    transition: all .3s ease-in-out;
}

.navbar.active {
    background: var(--black);
}

.navbar .navbar-brand img {
    max-width: 244px;
    width: 100%;
}

.navbar .nav-link {
    font-size: 18px;
    color: var(--white);
    padding: 0 !important;
    margin-left: 24px;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    padding: 12px 30px;
    border-radius: 100px;
    background: var(--primary) !important;
    color: var(--white);
    border: none !important;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: var(--white);
    z-index: 0;
    transition: all .2s ease-in-out;
    border-radius: 100px;
    transform: translateX(-100%);
}

.btn-primary:hover:after {
    transform: translateX(0%);
}

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

.navbar-toggler {
    padding: 0;
    border: none;
    box-shadow: none !important;
}

.navbar-toggler img {
    width: 34px;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 120px 0 82px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: kenburnsDownRight 20s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(23 24 31 / 0%) 0%, rgb(23 24 31 / 74%) 100%);
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
}

@keyframes kenburnsDownRight {
    0% {
        transform: scale(1.2) translate(-5%, -5%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-section h1 {
    font-size: 82px;
    font-weight: 700;
    color: var(--white);
    max-width: 926px;
    margin-bottom: 28px;
}

.hero-badge {
    padding: 8px 12px 8px 25px;
    margin-bottom: 20px;
    display: block;
    width: fit-content;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    border: 1px solid var(--white);
}

.hero-badge:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--primary);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    margin: auto;
}

.hero-section p {
    max-width: 420px;
    margin-left: 186px;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 28px;
    font-weight: 600;
}

.contact-us .btn,
.exp-content .btn,
.about-section .btn,
.hero-section .btn {
    margin-left: 186px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 12px 10px 22px;
    border-radius: 30px;
    gap: 24px;
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--white);
}

.contact-us .btn span,
.exp-content .btn span,
.about-section .btn span,
.hero-section .btn span {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    rotate: -45deg;
    transition: all .3s ease-in-out;
}

.contact-us .btn:hover,
.exp-content .btn:hover,
.about-section .btn:hover,
.hero-section .btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.contact-us .btn:hover span,
.exp-content .btn:hover span,
.about-section .btn:hover span,
.hero-section .btn:hover span {
    rotate: 0deg;
}

.projects-section {
    padding: 142px 0 82px;
    background: url(../images/projects-bg.png), #f6f6f6;
    background-repeat: no-repeat;
    background-position: top right;
    overflow: hidden;
}

.projects-section .lines {
    position: relative;
}

.projects-section .lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 1px;
    border-top: 1px solid #e3e3e8;
    transform: translate(10px, -30px);
}

.projects-section .lines::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 90%;
    border-right: 1px solid #e3e3e8;
    transform: translate(-20px, -80px);
}

.projects-section .badge-title {
    padding: 8px 12px 8px 25px;
    margin-bottom: 20px;
    display: block;
    width: fit-content;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    position: relative;
    border: 1px solid #1c1c1d40;
}

.projects-section .badge-title:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--primary);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    margin: auto;
}

.projects-section h2 {
    font-size: 62px;
    font-weight: 600;
    max-width: 600px;
    margin-bottom: 28px;
}

.projects-section h2 span {
    color: var(--primary);
}

.projects-section p {
    color: var(--gray);
    max-width: 720px;
}

.project-slider {
    margin-top: 42px;
}

.project-slider .project-card .img {
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
}

.project-slider .project-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .8s ease-in-out;
}

.project-slider .project-card:hover img {
    scale: 1.1;
}

.project-slider .swiper-slide:nth-child(even) {
    margin-top: 42px;
}

.project-slider .project-card h5 {
    font-size: 24px;
    margin: 22px 0 8px;
    font-weight: 600;
}

.project-slider .project-card P {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
}

.about-section {
    background: url(../images/about-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 82px 0;
    background-attachment: fixed;
}

.about-section h2 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--white);
    max-width: 600px;
}

.about-section h2 span {
    color: var(--primary);
}

.about-section p {
    color: var(--white);
    margin-bottom: 48px;
    max-width: 600px;
}

.about-section .btn {
    margin-left: 0;
}

.about-img {
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 24px;
    max-width: 800px;
}

.experience-section {
    padding: 120px 0;
    position: relative;
}

.experience-section .exp-img {
    max-width: 350px;
    width: 100%;
    border-radius: 24px;
    display: block;
    margin: auto;
}

.experience-section .exp-bg {
    width: 100%;
    max-width: 1200px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.exp-title h4 {
    font-size: 260px;
    color: var(--primary);
    font-weight: 700;
    text-align: end;
    margin: -70px 0 0;
    line-height: 90%;
}

.exp-title p {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    width: 210px;
    margin: 0 0 0 auto;
}

.exp-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}

.exp-content p {
    color: var(--gray);
    margin-bottom: 42px;
}

.exp-content .btn {
    margin-left: 0;
    color: var(--black);
    border-color: #9F9FA4A3;
}

.types-section {
    padding-top: 82px;
}

.types-section h3 {
    font-size: 24px;
    text-align: center;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto 42px;
    line-height: 150%;
}

.types-section h3 span {
    color: var(--primary);
}

.types {
    display: flex;
    flex-wrap: wrap;
}

.type-card:last-child {
    border: none;
}

.type-card {
    width: 25%;
    position: relative;
    overflow: hidden;
    border-right: 2px solid var(--white);
}

.type-card:hover img {
    scale: 1.05;
}

.type-card img {
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
}

.type-card div {
    padding: 24px;
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgb(23 24 31 / 0%) 0%, rgb(23 24 31 / 74%) 100%);
    transition: all .4s ease-in-out;
    z-index: 1;
}

.type-card:hover div {
    bottom: 0;
}

.type-card:hover div p {
    opacity: 1;
}

.type-card:hover div h4 {
    color: var(--white);
}

.type-card h4 {
    font-size: 30px;
    color: #ffffff85;
    margin: 0;
    font-weight: 600;
}

.type-card h5 {
    font-size: 30px;
    margin: 20px 0 8px;
    text-align: left;
    color: var(--white);
}

.type-card p {
    color: var(--white);
    margin: 0;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.clients-section {
    padding: 82px 0;
}

.clients-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 28px;
    color: var(--black);
    text-align: center;
    width: fit-content;
    position: relative;
}

.clients-section h2:after {
    content: '';
    height: 1px;
    width: 40vw;
    background: #e3e3e8;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(102%);
    margin: auto;
}

.clients-section h2:before {
    content: '';
    height: 1px;
    width: 40vw;
    background: #e3e3e8;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-102%);
    margin: auto;
}

.clients-section img {
    width: 100%;
    display: block;
    margin: auto;
    max-width: 120px;
    max-height: 68px;
    object-fit: contain;
}

footer {
    background: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 82px 0 24px;
}

footer .logo {
    max-width: 240px;
    width: 100%;
    margin-bottom: 24px;
}

.footer-description {
    color: var(--white);
    opacity: .8;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    border: 1px solid #ffffff6b;
    padding: 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}

.social-links a:hover {
    transform: translateY(-8px);
    background: var(--primary);
    border-color: var(--primary);
}

.social-links img {
    width: 18px;
}

footer h5 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 28px;
}

footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 18px;
}

footer ul li:last-child {
    margin: 0;
}

footer ul li a {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 16px;
    word-wrap: anywhere;
    position: relative;
}

footer ul li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
}

footer ul li a:hover::after {
    width: 100%;
}

footer ul li p {
    color: var(--white);
    font-size: 16px;
    margin-left: 32px;
}

footer ul li img {
    width: 24px;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 24px 0 0;
    border-top: 1px solid #ffffff40;
    gap: 24px;
    margin-top: 24px;
}

footer .right-text {
    color: var(--white);
    margin: 0;
}

footer .right-text a,
footer .right-text span {
    color: var(--primary);
}

.hero-sm-section {
    background: url(../images/hero-sm-bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 142px 0 82px;
    text-align: center;
}

.hero-sm-section h1 {
    font-size: 80px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 28px;
}

.hero-sm-section .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-sm-section .links p,
.hero-sm-section .links a {
    color: var(--white);
    margin: 0;
    text-decoration: none;
    position: relative;
}

.hero-sm-section .links a:after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .4s ease-in-out;
}

.hero-sm-section .links a:hover:after {
    width: 100%;
}

.projects {
    margin-top: 82px;
}

.projects .project-img {
    width: 100%;
    aspect-ratio: 630/618;
    object-fit: cover;
}

.project-content {
    padding-left: 42px;
}

.project-content span {
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;
    display: block;
}

.project-content span:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    height: 1px;
    width: 85px;
    background-color: #111;
    right: 100%;
    margin-right: 15px;
}

.project-content h5 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 600;
}

.project-content .title,
.project-content .address {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.project-content .text,
.project-content .description {
    color: var(--gray);
}

.project-content div {
    margin-bottom: 22px;
}

.right-project .project-content {
    text-align: right;
    padding: 0 42px 0 0;
}

.right-project .project-content span:after {
    right: unset;
    left: 100%;
    margin-left: 15px;
    margin-right: 0;
}

.contact-us h2 {
    max-width: 830px;
}

.contact-map iframe {
    width: 100%;
    height: 600px;
    margin-bottom: -6px;
}

.contact-detail h5 {
    font-size: 16px;
    font-weight: 600;
    color: #9f9fa4;
    margin-bottom: 22px;
}

.contact-detail a {
    text-decoration: none;
    display: block;
    width: fit-content;
}

.contact-detail .address {
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
}

.contact-detail .number {
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
}

.contact-detail .email {
    font-size: 28px;
    color: var(--black);
    font-weight: 600;
}

.contact-us {
    background-color: #f6f6f6;
}

.contact-img {
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 624/514;
}

.contact-us label {
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 600;
}

.contact-us input {
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid rgba(159, 159, 164, .18);
    border-radius: 18px;
    height: 60px;
}

.contact-us textarea {
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid rgba(159, 159, 164, .18);
    border-radius: 18px;
    height: 140px;
    resize: none;
}

.contact-us input::-webkit-outer-spin-button,
.contact-us input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-us input:focus,
.contact-us textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgb(246 161 44 / 25%);
}

.contact-us .form-group {
    margin-bottom: 28px;
}

.contact-us .btn {
    border-color: #9F9FA4A3;
    color: var(--black);
    margin-left: 0;
}

#contact_form {
    scroll-margin-top: 200px;
}

.totals {
    margin-bottom: 28px;
}

.totals div {
    border-right: 1px solid #9F9FA4A3;
    height: calc(100% - 24px);
}

.totals h5 {
    font-size: 24px;
    padding-top: 8px;
}

.totals div p {
    margin-bottom: 0;
    font-size: 16px;
}

.side-part {
    position: sticky;
    top: 0;
    height: fit-content;
}

.other-sites {
    padding-top: 82px;
}

.other-sites-projects {
    padding: 82px 0;
}

.other-sites h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 28px;
    color: var(--black);
    text-align: center;
    width: fit-content;
    position: relative;
}

.other-sites h2:before {
    content: '';
    height: 1px;
    width: 40vw;
    background: #e3e3e8;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-102%);
    margin: auto;
}

.other-sites h2:after {
    content: '';
    height: 1px;
    width: 40vw;
    background: #e3e3e8;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(102%);
    margin: auto;
}

.other-sites-card {
    text-align: center;
    padding: 24px 14px;
    border: 1px solid #e3e3e8;
    border-radius: 14px;
    background: #fff;
    height: 100%;
}

.other-sites-card img {
    width: 82px;
}

.other-sites-projects .other-sites-card{
    padding: 14px 14px 24px;
}

.other-sites-projects .other-sites-card .site-icon {
    object-fit: contain;
}

.other-sites-projects .other-sites-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.other-sites-projects .other-sites-card p{
    font-size: 18px;
}

.other-sites-card p {
    margin: 8px auto 0;
}

.expertise-section {
    background: #f6f6f6;
    padding-bottom: 82px;
}

.architects-section {
    background: none;
}

.architects-section h2 {
    max-width: 900px;
}

.team-slider img {
    width: 100%;
    border-radius: 14px;
}

.team-slider {
    position: relative;
}

.team-slider .project-card {
    border-radius: 24px;
    overflow: hidden;
}

.team-slider .project-card img {
    transition: all .4s ease-in-out;
    aspect-ratio: 357/454;
}

.team-slider .project-card:hover img {
    scale: 1.1;
}

.team-slider .content {
    position: absolute;
    bottom: 0;
    padding: 24px;
    left: 0;
    right: 0;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, rgba(0 0 0/ 0) 0%, #000 100%);
}

.team-slider .content p {
    color: var(--white);
    margin: 0;
    font-size: 14px;
}

.team-slider .content h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.client-logos div {
    flex-grow: 1;
}