
@import url('/public/css/fonts.css');
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-middle-blue: #a1b9cf;
    --color-dark-blue: #3c5c74;
}

html,body {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Agency Gothic CT', sans-serif;
    position: relative;
}

button {
    font-family: 'Agency Gothic CT', sans-serif;
    cursor: pointer;
}

header {
    background-color: var(--color-black);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    top: 0;
    z-index: 9;
}

header img {
    width: 70px;
}

header span {
    width: 40px;
    text-align: center;
}

footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 10px 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

footer .social a:first-of-type {
    margin-top: 10px;
}

footer .social a {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

footer a img {
    margin-right: 15px;
}

footer .credits {
    font-size: 90%;
    display: flex;
    margin-top: 10px;
    align-items: center;
}

footer .credits .year {
    margin: 0px 5px;
}

footer .credits .by a {
    text-decoration: none;
    color: var(--color-white);
}

main > section:not(.banner) {
    background-color: var(--color-white);
}

main .banner {
    text-align: center;
    background-image: url('/public/img/wallpaper.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 500px;
}

main .banner .opacity {
    background-color: rgba(118, 140, 230, 0.45);
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main .banner .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main .banner .main-title {
    font-size: 2.1em;
    margin-top: 28%;
    color: var(--color-white);
}

main .banner .actions {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .banner a {
    text-decoration: none;
}

main .banner .btn-cta {
    background-color: #25d366;
    padding: 15px 25px 10px;
    font-size: 1.2em;
    outline: none;
    border: none;
    color: var(--color-white);
    border-radius: 4px;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

main .banner .btn-cta img {
    margin-right: 10px;
    margin-top: -5px;
}

main .banner .cta-banner {
    display: flex;
}

main .banner .cta-banner #banner-phone {
    padding: 8px 10px;
    font-size: 1em;
    outline: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: none;
    border-bottom-right-radius: none;
    border: 0.5px solid #aaa;
    color: #666;
}

main .banner .cta-banner button.btn-cta-grouped {
    margin-left: -3px;
    border: 0.5px solid #1a73e8;
    border-left: none;
    border-radius: 3px;
    padding: 12px 20px;
    background-color: #1a73e8;
    color: var(--color-white);
    font-size: 1em;
}

main .banner .cta-banner button.btn-cta-grouped img {
    vertical-align: middle;
    margin-right: 5px;
}

main .banner .arrow-down {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    margin-top: 25%;
}

main .advantages {
    padding: 30px 20px;
}

main section h3 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 1.5em;
}

main section small {
    text-align: center;
    display: block;
}

main .advantages .content > img {
    width: 70px;
    display: block;
    margin: auto;
}

main .advantages .content .item span {
    font-weight: lighter;
}

main section.services h3 {
    color: var(--color-white);
}

main section.services {
    position: relative;
    margin-bottom: 5%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

main section.services .content {
    padding: 10px 20px;
    background-color: var(--color-dark-blue);
}

main .services .curve {
    width: 100vw;
    left: 0;
}

main .services .curve.bottom {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    margin-top: -1px;
}

main .services .swiper .swiper-slide {
    color: var(--color-white);
    margin-top: 15px;
    margin-bottom: 20px;
}

main .services .swiper .swiper-slide .img-container {
    text-align: center;
}

main .services .swiper .swiper-slide h4 {
    font-size: 1.2em;
    text-align: center;
}

main .services .swiper .swiper-slide p {
    font-weight: lighter;
}

main .services .swiper .swiper-button-next, .swiper-button-prev {
    color: var(--color-white);
    top: 30%;
}

main .services .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--color-white);
}

main .services .btn-cta {
    margin: 10px auto 0px;
    background-color: var(--color-white);
    padding: 15px 25px 10px;
    font-size: 1.1em;
    outline: none;
    border: none;
    color: var(--color-black);
    border-radius: 4px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    max-width: fit-content;
}

main .services .btn-cta::before {
    content: "";
    background-image: url('/public/img/icons/dollar.png');
    margin-right: 10px;
    margin-top: -3px;
    width: 24px;
    height: 24px;
}

main section.regions {
    background-color: aliceblue;
    padding-top: 50px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

main .regions .content {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;   
}

main .regions .content .item {
    margin-bottom: 10px;
}

main .regions .content .item img {
    vertical-align: middle;
}

main .regions .content .item .region {
    font-weight: lighter;
    margin-left: 2px;
}

main .contact {
    padding: 10px 20px;
    margin-bottom: 20px;
}

main .contact form .input-container {
    margin-bottom: 10px;
}

main .contact form .input-container input, main .contact form .input-container textarea {
    width: 88%;
    padding: 12px 20px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #999;
    font-family: 'Agency Gothic CT', sans-serif;
    font-weight: lighter;
}

main .contact form .input-container textarea {
    resize: none;
}

main .contact form .input-container input.error {
    border-color: #ff0000;
}

main .contact form .btn-submit {
    margin: 10px 0px 0px auto;
    background-color: var(--color-black);
    padding: 15px 25px 10px;
    font-size: 1.1em;
    outline: none;
    border: none;
    color: var(--color-white);
    border-radius: 4px;
    font-weight: 400;
    display: block;
}

main .curved-line {
    width: 100%;
    margin-bottom: -80px;
}

main .statistics {
    text-align: center;
}

main .statistics h2 {
    margin-bottom: 30px;
}

main .statistics .item .number {
    background-color: #525458;
    border-radius: 100%;
    padding: 20px 20px 18px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    max-width: auto;
    width: 20px;
    justify-content: center;
    align-items: center;
    margin: auto;
}

main .statistics .item {
    margin: 0px 0px 40px;
}

main .statistics .item p {
    font-weight: lighter;
}

#menu-mobile {
    display: none;
    background-color: aliceblue;
    position: absolute;
    right: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    top: 0;
}

#menu-mobile .close {
    margin: 20px 20px 0 auto;
    display: block;
    margin-bottom: 30%;
    background-color: transparent;
    border: none;
}

#menu-mobile a {
    padding: 10px 16px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    display: block;
    color: #555;
}

#menu-mobile a:hover {
    background-color: #fff;
    color: black;
    text-decoration: underline;
}

@media screen and (min-width: 650px) {
    main .banner .main-title {
        margin-top: 15%;
    }
}

@media screen and (min-width: 992px) {
    footer .social {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }

    footer .social a {
        margin: 0px 15px 0px 0px;
    }

    footer .social a:first-of-type {
        margin-top: 0px;
    }

    footer .social a img {
        margin-right: 5px;
    }

    footer .social a:last-child {
        margin-right: 0px;
    }

    footer .credits {
        justify-content: center;
        margin-bottom: 10px;
    }

    main .contact {
        width: 40%;
        margin: auto;
        padding: 50px;
    }

    main .contact form .btn-submit {
        margin-right: 35px;
    }

    main .contact form .input-container input, main .contact form .input-container textarea {
        font-size: 1em;
    }

    main > section h3 {
        font-size: 2em;
    }

    main section.regions {
        margin-bottom: 0px;
    }

    main .regions .content {
        width: 30%;
        margin: auto;
    }

    main .regions .content .col .item span {
        font-size: 1.1em;
    }

    main > section {
        padding: 50px;
    }

    main .statistics .items {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    main .statistics .items .item {
        margin: 0 10px;
        width: 160px;
    }

    main .statistics .items .item span {
        font-size: 1.5em;
    }

    main .statistics .items .item p {
        font-size: 1.1em;
    }

    main section.services {
        margin-bottom: -5%;
        margin-top: -5%;
        padding: 0px;
        background-color: transparent;
    }
    
    main section.services .content {
        padding: 0px 50px;
    }

    main section.services .swiper {
        width: 50%;
        margin: auto;
    }
    
    main section.services .swiper .swiper-slide {
        width: 60% !important;
        margin: 20px 20%;
    }

    main section.services .swiper .swiper-slide .card-content h4 {
        font-size: 1.3em;
    }

    main section.services .swiper .swiper-slide .card-content p {
        text-align: center;
        font-size: 1.1em;
    }

    header {
        width: 100%;
        justify-content: initial;
        padding: 10px 0px;
    }

    header .logo-container {
        margin-left: 60px;
    }

    header h1 {
        margin-left: 15px;
    }

    main .banner {
        margin-top: 0%;
    }

    main .banner .content {
        display: flex;
        padding-top: 3%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    main .banner .main-title {
        font-size: 4em;
        margin-top: 0;
    }

    main .banner .actions {
        margin-top: 0;
    }

    main .banner .actions .btn-cta {
        padding: 15px 50px 10px;
    }

    #menu-mobile {
        display: flex !important;
        margin-top: 30px;
        background-color: transparent;
        justify-content: end;
        width: 60%;
        right: 0;
        height: auto;
        position: absolute;
    }

    #menu-mobile a {
        color: var(--color-white);
    }

    #menu-mobile a:last-child {
        margin-right: 60px;
    }

    #menu-mobile a:hover {
        background-color: transparent;
        color: var(--color-white);
        opacity: 0.9;
        text-decoration: underline;
    }

    main section.advantages {
        width: 40%;
        margin: auto;
        padding: 50px 50px 0px;
    }

    main section.advantages .content > img {
        width: auto;
        margin: 20px auto 30px;
    }

    main section.advantages .content .checkbox-container {
        width: 78%;
        margin: auto;
    }

    main section.advantages .content .checkbox-container p {
        margin-top: 0px;
    }

    main section.advantages .content .checkbox-container p span {
        font-size: 1.1em;
    }

    main section.advantages > div.desktop {
        display: flex;
        align-items: center;
    }
}

