html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    margin: 0px;
    padding: 0px;
    width: 100%;
    font-family: 'Outfit', sans-serif;
}

nav {
    display: flex;
    position: fixed;
    width: 90%;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0px 5%;
    z-index: 2;
}
nav ul {
    display: flex;
    list-style: none;
}
    nav ul li a {
        font-size: 16px;
        color: #808080;
        margin: 20px;
        text-decoration: none;
        transition: 0.5s;
    }
        nav ul li a:hover {
            color:black;
        }
nav a {
    width: 10%;
}
nav a img {
    width: 100%;
}
.nav-shadow {
    box-shadow: 0px 2px 12px rgba(0 0 0 / 0.2);
}

.top-section {
    height: 600px;
    padding: 70px 5% 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-img {
    width: 42%;
    max-width: 600px;
}
.title-container p:nth-child(1) {
    font-size: 60px;
    font-weight: bold;
}
.rq-quote-btn {
    font-size: 16px;
    color: black;
    background-color: #DCC97D;
    padding: 20px 40px;
    border-radius: 30px;
    box-shadow: -6px 0px;
    text-decoration: none;
    transition: 0.5s;
}
.rq-quote-btn:hover {
    letter-spacing: 1px;
}

.call-box {
    display: flex;
    width: 200px;
    align-items: center;
    margin-top: 60px;
    text-decoration: none;
    transition: 0.5s;
}
.call-box:hover {
    opacity: 0.9;
    text-decoration: none;
    letter-spacing: 1px;
}
.call-box i {
    font-size: 24px;
    color: #808080;
}
.call-box-text {
    margin-left: 10px;
}
.call-box-text p:nth-child(1) {
    color: #808080;
    font-size: 12px;
    margin: 0px;
}
.call-box-text p:nth-child(2) {
    color: #808080;
    font-size: 16px;
    margin: 5px 0px 0px 0px;
}

.brief-info-section {
    padding: 36px 5%;
    text-align: center;
    background-color: #DCC97D;
}
.brief-info-section .section-title {
    font-size: 36px;
    margin-top: 0px;
}
.brief-info-section .bio {
    display: flex;
    justify-content: center;
}
.brief-info-section .bio p {
    font-size: 16px;
    width: 60%;
}


/* SERVICES */
.services-section {
    display: flex;
    padding: 0px 3% 72px 3%;
    background-color: #DCC97D;
}

.services-image-box {
    display: flex;
    height: 570px;
    align-items: flex-end;
    margin: 83px -2px 0px 0px;
}
.services-image-box img {
    height: 85%;
}

.services-container {
    width: 100%;
    background-color: white;
    border-radius: 25px;
    padding-bottom: 40px;
}
.services-container-row {
    display: flex;
    justify-content: center;
}
.services-container-row:nth-child(2) {
    margin-bottom: 56px;
}
.services-container-title {
    font-size: 36px;
    text-align: center;
}
.services-row {
    display: flex;
    justify-content: space-evenly;
    padding: 0px 36px;
}

.service-box {
    width: 30%;
    max-width: 400px;
    border-radius: 25px;
    transition: 0.5s;
}
.service-box:hover {
    transform: scale(1.05);
}
.service-box-title {
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.service-box img {
    width: 100%;
}
.service-box-text {
    text-align: center;
}
.service-box-text p:nth-child(1) {
    font-size: 22px;
}
.service-box-text ul {
    text-align: left;
}

#partners { /* just a span, using to control nav click */
    display: flex;
    margin-top: 25px;
}
.partners-section p, .customers-section p {
    font-size: 36px;
    text-align: center;
}
.partner-logos-row, .customers-logos-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.partner-logo, .cusomter-logo {
    width: 160px;
}
.partner-logo img, .customer-logo img {
    width: 100%;
}
.google-partner-logo {
    border: 1px solid #CCC;
    border-radius: 10px;
}

.contact-section {
    display: flex;
    padding: 72px 5%;
    justify-content: center;
}
.contact-container {
    background-color: #DCC97D;
    width: 40%;
    text-align: center;
    border-radius: 25px;
    padding-bottom: 40px;
}
.contact-container p {
    font-size: 36px;
    text-align: center;
}
.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-box a {
    background-color: white;
}

.footer-section {
    background-color: #DCC97D;
    padding: 24px 5%;
    text-align: center;
    font-size: 12px;
}