body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 32px;
}

.navigation {
    background: #101820;
    padding: 25px 0;
}
.navigation .logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 150px;
}

.top-banner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 60vh;
    max-height: 60vh;
}
.top-banner img {
    object-position: 50% 30%;
    object-fit: cover;
    width: 100%;
    height: 60vh;
}
.top-banner .information {
    position: absolute;
    background: #101820;
    color: #fff;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    padding: 25px 20px 50px 20px;
    margin: 10px;
}
.top-banner .information h1 {
    color: #ce9647;
}
.top-banner .information .number {
    font-size: 2em;
}
.top-banner .information a {
    background: #ce9647;
    color: #000;
    padding: 15px 40px;
    font-size: 1.5em;
    margin: 10px;
}

.trust-pilot {
    background: #ce9647;
    padding: 10px 0;
}
.trust-pilot .content {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: center;
}
.trust-pilot .content img {
    width: 425px;
}

.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}
.section h2 {
    color: #ce9647;
    font-size: 36px;
}
.section h3 {
    color: #101820;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
}
.section p {
    color: #1D1D1F;
    font-size: 17.5px;
}

.section.row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.section.row img {
    width: 100%;
}
.section.row div.left {
    text-align: left;
}
.section.row div.right {
    text-align: right;
}
.section.row div.w60 {
    flex: 60%;
}
.section.row div.w40 {
    flex: 40%;
}
.section.row div.w30 {
    flex: 30%;
}
.section.row div.w70 {
    flex: 70%;
}

.side-cta {
    position: fixed;
    right: -10px;
    top: 40%;
    padding: 5px 15px;
    border-radius: 2px;
    z-index: 1000;
    transform-origin: 99% 101%;
    transform: rotate(-90deg);
    background: #25d366;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 28px;
}

.contact-form {
    background: #101820;
    padding: 50px;
    border-radius: 8px;
    margin: 50px auto;
    display: flex;
}
.contact-form p, .contact-form h3 {
    color: #fff;
    margin-left: 15px;
}
.contact-form span {
    display: block;
    color: #ce9647;
    margin-left: -25px;
    border-left: 1px solid #ce9647;
    padding-left: 10px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #22355b;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form #response {
    margin-top: 20px;
    font-weight: bold;
}

.contact-form form input, .contact-form form textarea {
    width: 100%;
    padding: 15px;
}
.contact-form form label {
    color: #fff;
}
.contact-form form input#submitButton {
    display: block;
    margin: 10px 0;
    width: 60%;
    background: #0b7cac;
    color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    transition-duration: 150ms;
}
.contact-form form input#submitButton:hover {
    background: #013459;
}

.footer {
    background: #212121;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

@media only screen and (max-width: 1400px) {
    .section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .contact-form {
        padding: 50px;
        width: 80%;
    }
}

@media only screen and (max-width: 800px) {
    .section.row {
        flex-direction: column;
    }
    .section.row img {
        display: none;
    }
    .side-cta {
        background: #25d36680;
    }
    .contact-form {
        flex-direction: column;
    }
}