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

body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    flex-direction: column;
    display: flex;
}

header {
    background-color: #000;
    padding: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 9;
    width: 100%;
}

header .header-content {
    display: flex;
    width: 100%;
}

header .logo-container {
    display: flex;
    align-items: center;
    flex: 1;
}

header .logo {
    width: 60px;
}

header .logo-text {
    width: 150px;
    margin-left: 30px;
}

#menu-mobile {
    display: none;
    background-color: aliceblue;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: fixed;
    margin-top: 68px;
    z-index: 9;
    width: 100%;
} 

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

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

header .btn-menu {
    background: #000;
    display: block;
    width: 30px;
    padding: 10px;
}

header .btn-menu i {
    color: #fff;
}

.btn-whatsapp {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.btn-whatsapp img {
    width: 100%;
    border-radius: 100%;
}

main {
    position: relative;
}

main .background {
    background-image: url('/public/img/banner-mobile.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 30%;
    position: relative;
    width: 101%;
    height: 95vh;
}

main .background .banner {
    background-color: rgba(77, 82, 100, 0.35);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main .heading-container {
    position: absolute;
    top: 28vh;
    z-index: 8;
    text-align: center;
    width: 100%;
    color: #fff;
}

main .heading-container h1 {
    text-transform: uppercase;
    font-size: 1.75em;
}

.btn-cta {
    margin-top: 25px;
    background-color: #ff0000;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
}

main section {
    padding: 30px 20px;
}

main section .title {
    text-align: center;
}

main .about {
    text-align: center;
    position: relative;
}

main .about img {
    max-width: 168px;
}

main .about blockquote {
	font-weight: 100;
	font-size: 1.2rem;
	line-height: 1.4;
    width: fit-content;
	position: relative;
	margin: 0 auto;
	padding: .5rem;
}

main .about blockquote:before,
main .about blockquote:after {
	position: absolute;
	color: #ddd;
	font-size: 8rem;
	width: 4rem;
	height: 4rem;
}

main .about blockquote:before {
	content: '“';
	left: -3rem;
	top: -2rem;
}

main .about blockquote:after {
	content: '”';
	right: -3rem;
	bottom: 1rem;
}

main .about cite {
	text-align: left;
}

main .about .item:first-of-type {
    margin-top: 30px;
}

main .about p {
    text-align: left;
}

main .expertise {
    background-color: #555;
    color: #fff;
}

main .expertise .title {
    margin-bottom: 40px;
}

main .expertise .item.active .content {
    margin: 0px 10px;
}

main .expertise .item .content {
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 0px 10px;
}

main .expertise .item h4 {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    color: #74D2FF;
}

main .expertise .item p {
    padding: 0px 2px;
    font-size: 14px;
}

main .expertise .item img {
    display: block;
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
}

main .expertise .btn-cta {
    margin: 30px auto 0;
    display: block;
    
}
main .expertise .item ul{
    list-style: none;
    padding-inline-start: 10px;
}

main .expertise .item ul li {
    background-image: url('/public/img/icons/checkbox.png');
    background-position-y: 2px;
    background-repeat: no-repeat;
    padding-left: 25px;
    line-height: 20px;
    font-size: 14px;
}

main .statistics {
    text-align: center;
}

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

main .statistics .item .number {
    background-color: #555;
    border-radius: 100%;
    padding: 20px;
    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: 600;
}

main .statistics .item img {
    width: 45px;
}

main .statistics .item:nth-child(3) img {
    width: 55px;
}

main .statistics .item:nth-child(4) img {
    width: 60px;
}

main .testimony {
    background-color: aliceblue;
}

main .testimony h4 {
    padding-left: 40px;
}

main .testimony article blockquote {
    font-style: italic;
}

main .contact .title {
    margin-bottom: 40px;
}

main .contact .item {
    font-size: 14px;
}

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

main .contact form .input-container input {
    width: 88%;
    padding: 10px 20px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #999;
}

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

main .contact .mailto {
    text-decoration: none;
    color: #000;
}

main .contact form .btn-cta {
    display: block;
    margin: 20px 0 0px auto;
}

main .contact .content  {
    display: flex;
    flex-direction: column-reverse;
}

main .contact .content .form-container  {
    flex: 1;
}

main .contact .content .map-container  {
    margin-bottom: 15px;
    flex: .9;
}

main .contact .content #map  {
    height: 250px;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
}

footer .social a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

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

button[class*="js-carousel--simple"].disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

button[class*="js-carousel--simple"] {
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
}

button[class*="js-carousel--simple-prev"] {
    left: 10%;
}

button[class*="js-carousel--simple-next"] {
    right: 10%;
}

footer .credits {
    font-size: 90%;
}

footer .credits .by a {
    text-decoration: none;
    color: #fff;
}

#btn-submit:disabled {
    opacity: 0.7;
}

@media screen and (min-width: 992px) {
    header {
        padding-left: 60px;
    }

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

    #menu-mobile a {
        color: #fff;
    }

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

    #menu-mobile a:hover {
        background-color: transparent;
        color: #ff0000;
        opacity: 0.9;
        text-decoration: none;
    }

    main .heading-container {
        top: 35vh;
    }

    main .heading-container .heading {
        font-size: 2.2em;
    }

    main .heading-container .sub-heading {
        font-size: 1.2em;
    }

    main .heading-container .btn-cta {
        font-size: 1.15em;
    }

    main .about {
        width: 80%;
        margin: auto;
    }

    main .about .item {
        display: flex;
        align-items: center;
    }

    main .about .item:first-of-type {
        margin-top: 50px;
    }

    main .about .item.agil {
        justify-content: right;
    }

    main .about .item img {
        max-height: 64px;
        margin-right: 20px;
    }

    main .about .item p {
        max-width: 40%;
    }

    main .expertise .item.active .content {
        margin: auto;
    }

    main .expertise .item .content {
        width: 30%;
        padding: 0px 20px;
    }

    main .expertise .item p.description {
        margin-bottom: 30px;
    }

    main .expertise .item p.example {
        text-align: left;
    }

    main .testimony h4 {
        padding-left: 0px;
    }

    main .testimony article {
        text-align: center;
    }
    
    main .testimony blockquote {
        width: 30%;
        margin: 0px auto 20px;
    }

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

    main .contact .item span span.desktop {
        display: inline-block;
    }

    main .contact form .btn-cta {
        margin: 20px auto 0px 0;
    }

    main .contact .content  {
        flex-direction: row;
        align-items: center;
    }

    main .contact .content .map-container  {
        margin-top: 0;
        margin-left: 30px;
    }

    footer {
        text-align: center;
    }

    footer .social {
        display: flex;
        justify-content: center;
    }

    footer .social a:first-of-type {
        margin-right: 15px;
    }

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

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