* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color: #141414;
}

body {
    background-color: #fff;
}

section {
    padding: 0 20px;
}

.container {
    margin: 0 auto;
    max-width: 1500px;
    width: 100%;
    overflow-x: hidden;
}

.header {
    padding-top: 40px;
    padding-bottom: 110px;
}

.header h1 {
    font-size: 60px;
    line-height: 90px;
    font-weight: 500;
    color: #141414;
}

.header .page {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 60px;
}

.header .page p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #141414;
    opacity: 100%;
}

.header .page a {
    text-decoration: none;
    transition: all ease 300ms;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #141414;
    opacity: 70%;
}

.header .page a:hover {
    opacity: 100%;
}

.contact {
    padding-bottom: 210px;
}

.contact .contact-flex {
    display: flex;
    justify-content: space-between;
    gap: 160px;
}

.contact .contact-flex .left {
    max-width: 440px;
}

.contact .contact-flex .left h5 {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: #141414;
}

.contact .contact-flex .left button {
    border: 1px solid #141414;
    background-color: #141414;
    transition: all ease 300ms;
    cursor: pointer;
    color: #fff;
    padding: 16px 50px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 50px;
}

.contact .contact-flex .left button:hover {
    background-color: transparent;
    color: #141414;
}

.contact .contact-flex .left h6 {
    margin-bottom: 10px;
    color: #141414;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.contact .contact-flex .left a {
    transition: all ease 300ms;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
    display: inline-block;
}

.contact .contact-flex .left a:hover {
    opacity: 70%;
}

.contact .contact-flex .right {
    max-width: 700px;
    width: 100%;
}

.contact .contact-flex .right .separator {
    width: 100%;
    height: 1px;
    background-color: #141414;
    margin-bottom: 20px;
}

.contact .contact-flex .right h3 {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

.contact .contact-flex .right .loc-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact .contact-flex .right .loc-left {
    min-width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact .contact-flex .right .loc-left h6 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact .contact-flex .right .loc-left .top a {
    font-size: 18px;
    line-height: 24px;
    transition: all ease 300ms;
    text-decoration: none;
    font-weight: 500;
    opacity: 40%;
}

.contact .contact-flex .right .loc-left .top a:hover {
    opacity: 80%;
}

.contact .contact-flex .right .bottom .loc-left a {
    transition: all ease 300ms;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.contact .contact-flex .right .loc-left .bottom a:hover {
    opacity: 70%;
}

.contact .contact-flex .right .loc-left .loc-right {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.contact .contact-flex .left .socials {
    display: flex;
    gap: 10px;
}

.contact .contact-flex .left .socials .icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    cursor: pointer;
    transition: all ease 300ms;
}

.contact .contact-flex .left .socials .icon img {
    transition: all ease 300ms;    
}

.enquiry {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity ease 500ms;
    display: none;
}

.enquiry .contact-window {
    width: 50%;
    height: 100%;
    background-color: #DADCD1;
    padding: 50px 40px;
    transform: translateX(-100%);
    transition: all ease 1.2s;
}

.enquiry .contact-window .contact-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.enquiry .contact-window .contact-header h2 {
    font-size: 40px;
    line-height: 47px;
    font-weight: 500;
}   

.enquiry .contact-window .contact-header img {
    transition: all ease 300ms;
    cursor: pointer;
}

.enquiry .contact-window .contact-header img:hover {
    opacity: 40%;
}

.enquiry .contact-window p {
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.enquiry .contact-window p a {
    font-weight: 500;
    transition: all ease 300ms;
}

.enquiry .contact-window p a:hover {
    opacity: 70%;
}

.enquiry form {
    width: 100%;
}

.enquiry .fields {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
}

.enquiry .fields .field {
    width: 100%;
}

.enquiry .label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    color: #141414;
}

.enquiry .fields .field input {
    width: 100%;
    background-color: transparent;
    padding: 14px;
    border: 1px solid #141414;
    font-size: 16px;
    line-height: 18px;
    color: #141414;
    outline: none;
}

::placeholder {
    opacity: 30%;
}

.enquiry textarea {
    width: 100%;
    background-color: transparent;
    padding: 14px;
    border: 1px solid #141414;
    font-size: 16px;
    line-height: 18px;
    color: #141414;
    outline: none;
    resize: none;
    height: 140px;
    margin-bottom: 50px;
}

.enquiry button {
    border: 1px solid #141414;
    background-color: #141414;
    transition: all ease 300ms;
    cursor: pointer;
    color: #fff;
    padding: 16px 50px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 50px;
}

.enquiry button:hover {
    background-color: transparent;
    color: #141414;
}

@media screen  and (max-width: 1100px) {
    .contact .contact-flex {
        gap: 60px;
    }
}

@media screen  and (max-width: 900px) {
    .contact .contact-flex {
        flex-direction: column;
    }

    .contact .contact-flex .right {
        max-width: none;
    }

    .contact {
        padding-bottom: 140px;
    }

    .header {
        padding-bottom: 60px;
    }

    .enquiry .contact-window {
        width: 80%;
        overflow-y: auto;
    }
}

@media screen and (max-width: 700px) {
    .header h1 {
        font-size: 50px;
        line-height: 60px;
    }
}

@media screen and (max-width: 600px) {
    .contact .contact-flex .right .loc-flex {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 500px) {
    .enquiry .contact-window {
        width: 100%;
        padding: 30px;
        
    }

    .enquiry .fields {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .enquiry .contact-window .contact-header {
        margin-bottom: 30px;
    }

    .enquiry .contact-window p {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 410px) {
    .header h1 {
        font-size: 40px;
        line-height: 50px;
    }
}