@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Colors */
:root {
    --black: #000000;
    --grey: #343537;
    --dark: #2F3132;
    --white: #ffffff;    
    --light: #f9f9f9;
    --lighter: #ededed;
    --ocean: #022a5f;
    --blue: #0455bf;
    --blue-ft: #034cab;
    --blue-over: #1355ab;
    --blue-light: #e7eff8;
    --blue-lighter: #c0cad7;
    --menu: rgba(0, 0, 0, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
	background: var(--blue);
}

::-webkit-scrollbar-track {
	background-color: var(--white);
}

::-webkit-scrollbar {
	width: 6px;
}

/* Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    transition: all 0.2s ease;
    scroll-behavior: smooth;
    scroll-margin-top: 130px;
    font-family: "Poppins";
}

body {
    background: var(--blue);
    color: var(--grey);
}

.container {
	max-width: 1350px;
    padding: 0px 20px;
    margin: 0px auto;
}

img {
    width: 100%;
    display: block;
}

h1 {
    font-size: 2.8rem;
    line-height: 3rem;
}

@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 2.4rem;
        line-height: 2.4rem;
    }
}

span{
    color: var(--blue-over);
}


/* Paddings */
.py-1 {
    padding: .5rem 20px;
}

.py-2 {
    padding: 1rem 20px;
}

.py-3 {
    padding: 2rem 20px;
}

.py-4 {
    padding: 4rem 20px;
}

.py-5 {
    padding: 6rem 20px;
}


/* Backgrounds */
.bg-blue {
    background: var(--blue);
}

.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--light);
}


/* Whatsapp */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 35px;
    z-index: 998;
    cursor: pointer;
    transform-origin: bottom;
    opacity: 1;
    display: flex;
    justify-content: center;
    font-size: 3rem;
    background: var(--blue);
    color: var(--white);
    padding: 10px;
    border-radius: 30%;
    box-shadow: 2px 2px 4px 2px var(--menu);
}


/* Menu */
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 2px 2px 4px 2px var(--menu);
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu a {
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
}

.menu li {
    display: inline-block;
}

.menu-left .logo {
    width: 200px;
}

.menu-center a {
    color: var(--white);
    display: block;
    border-bottom: 2px solid transparent;
}

.menu-center a:hover {
    background: var(--menu);
}

.menu-center i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.menu-right .menu-contact {
    background: var(--white);
    color: var(--blue) !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    white-space: nowrap;
}

.menu-button-mobile {
    display: none;
}

.menu-button-mobile i {
    font-size: 2rem;
    color: var(--white);
    margin-right: -20px;
}

.menu-right:hover {
    transform: scale(1.05);
}

@media only screen and (max-width: 1024px) {
    .menu-button-mobile {
        display: block;
    }

    .menu-center, .menu-right {
        display: none;
    }
}


/* Menu Mobile */
.menu-mobile {
    position: fixed;
    left: -350px;
    top: 0;
    z-index: 1000;
    width: 280px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--blue);
    box-shadow: 2px 2px 4px 2px var(--menu);
    padding: 0px 20px;
}

.menu-mobile a {
    font-weight: 600;
    padding: 12px 20px;
    margin-bottom: 5px;
    border-radius: 8px;
}

.menu-mobile li {
    display: inline-block;
}

.menu-mobile-left .logo {
    width: 170px;
    margin-left: 12px;
    margin-bottom: 10px;
}

.menu-mobile-center {
    display: flex;
    flex-direction: column;
}

.menu-mobile-center a {
    color: var(--white);
    display: block;
    border-bottom: 2px solid transparent;
}

.menu-mobile-center a:hover {
    background: var(--menu);
}

.menu-mobile-center i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.show-menu {
    left: 0;
}


/* Banner */
.banner-image{
    background-image: url("../img/banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.banner-info {
    margin-right: 80px;
}

.banner-info h1 {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 25px;
    color: var(--white);
}

.banner-info p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--white);
}

.button, .button-mobile {
    background: var(--white);
    border: 2px solid var(--lighter);
    color: var(--blue); 
    display: inline-block;  
    border-radius: 30px;   
    padding: 18px 36px;
    margin-right: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.button:hover {
    background: var(--blue);
    border: 2px solid var(--white);
    color: var(--white); 
}

.button-mobile {
    display: none;
}

.button-analyse {
    background: var(--blue);
    color: var(--white); 
    border: 2px solid var(--lighter);
}

.button-analyse:hover {
    background: var(--white);
    color: var(--blue);
}

@media only screen and (max-width: 1024px) {
    .banner-image{
        background-image: none;
    }

    .banner {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
        text-align: center;

        margin-top: 77px;
        padding-bottom: 100px;
    }

    .banner-info {
        margin-right: 0;
    }

    .banner-info h1 {
        font-size: 3rem;
    }

    .button {
        display: none;
    }

    .button-mobile {
        display: block;
        margin-top: 20px;
    }

}


/* Feature */
.feature {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex-grow: 1;
    flex-basis: 300px;
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
}

.feature-item i {
    color: var(--blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item-title {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-item:hover {
    box-shadow: 0px 0px 10px 4px var(--blue-light);
}

@media only screen and (max-width: 1024px) {
    .feature {
        text-align: center;
    }
}


/* Designs */
.design, .design-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.design-image {
    width: 100%;
}

.design-info {
    width: 100%;
}

.design-image img {
    border-radius: 20px;
    border: 2px solid var(--lighter);
}

.design-info-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.design-info-text {
    margin-bottom: 20px;
}

.design-info-desc {
    margin-top: 50px;
}

.design-info-desc p {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 15px;
}

.design-info-desc i {
    font-size: 2.5rem;
    background: var(--blue);
    color: var(--white);
    width: 65px;
    height: 65px;
    text-align: center;
    padding-top: 12px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 15px;
}

.design-info-desc .fa-css3 {
    padding-top: 13px;
}

.design-info-desc .fa-html5 {
    font-size: 2.7rem;
}

.design-info-desc .fa-quora {
    font-size: 2.4rem;
}

@media only screen and (max-width: 1024px) {
    .design {
        flex-wrap: wrap;
    }

    .design-2 {
        flex-direction: column-reverse;
        margin-top: -50px;
    }

    .design-info {
        text-align: center;
    }

    .design-info-title {
        font-size: 2rem;
    }

    .design-info-desc {
        text-align: left;
    }
}


/* Reason */
.reason-title {
    width: 100%;
    color: var(--grey);
    text-align: center;
    padding-bottom: 80px;
}

.reason {
    display: flex;
    gap: 30px;
}

.reason-item {
    display: flex;
    flex-direction: column;
    height: 500px;
    max-width: 500px;
    background: var(--white);
    border: 2px solid var(--lighter);
    border-radius: 12px;
    text-align: center;
    padding: 5px;
    margin-bottom: 40px;
}

.reason-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px 4px var(--blue-light);
}

.reason-header {
    background: linear-gradient(to bottom left, var(--ocean), var(--blue));
    border-radius: 12px 12px 70% 12px;
    padding: 20px 0px 40px 0px;
    margin-bottom: 40px;
}

.reason-header i {
    font-size: 4.5rem;
    color: var(--white);
}

.reason-item-title {
    font-size: 1.9rem;
    margin: 20px 0px;
    padding: 0px 10px;
}

.reason-item-text {
    font-size: 1.1rem;
    padding: 0px 30px;
}


.reason-button {
    background: linear-gradient(to bottom left, var(--blue), var(--blue));
    color: var(--white); 
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin: 30px auto 20px auto;
    cursor: pointer;
}

.reason-button:hover {
    background: linear-gradient(to bottom left, var(--blue), var(--ocean));
}

@media only screen and (max-width: 1024px) {
    .reason {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .reason-title {
        position: relative;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 50px;
    }
}


/* Method */
.method-title {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.method {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding-bottom: 50px;
}

.method-item {
    text-align: center;
    flex-basis: 350px;
}

.method-icon i {
    font-size: 2.8rem;
    background: var(--blue);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    padding-top: 18px;
    margin-bottom: 15px;
}

.method-text h5 {
    font-size: 1.2rem;
}

.method-icon .fa-paper-plane {
    padding-right: 5px;
}

.method-icon .fa-lightbulb-o {
    font-size: 3.3rem;
    padding-top: 16px;
}

.method-icon .fa-calendar-check-o {
    padding-left: 4px; 
}


/* About */
.about {
    background-image: url("../img/about.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /*
    background:
    radial-gradient(ellipse at top, var(--white), transparent),
    radial-gradient(ellipse at bottom, var(--blue-light), transparent);
    */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;
}

.about-info {
    max-width: 700px;
    margin: auto;

}

.about-title {
    margin-bottom: 50px;
}

.about-text {
    font-size: 1.4rem;
}

@media only screen and (max-width: 1024px) {
    .about-text {
        font-size: 1.2rem;
    }
}


/* Contact */
.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 0px;
}

.contact-info {
    width: 100%;
    padding: 30px;
}

.contact-title {
    margin-bottom: 30px;
}

.contact-text {
    margin-bottom: 30px;
    margin-right: 50px;
}

.contact-form {
    width: 100%;
    padding: 20px;
}

.contact-form .name-whats {
    display: flex;
    gap: 20px;
}

@media only screen and (max-width: 1024px) {
    .contact {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .contact-title {
        text-align: center;
    }

    .contact-text {
        margin-right: 0px;
    }
}


/* Form */
input[type=text], select, textarea {
    width: 100%;
    padding: 20px 24px;
    margin: 8px 0;
    display: inline-block;
    border: transparent;
    box-shadow: 0px 0px 10px 0px var(--blue-lighter);
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 0.9rem;
    color: var(--grey);
    outline-color: transparent;
    font-weight: bold;
}
  
input[type=submit] {
    width: 100%;
    background-color: var(--blue);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    background: linear-gradient(to bottom left, var(--blue), var(--blue));
}
  
input[type=submit]:hover {
    background: linear-gradient(to bottom left, var(--blue), var(--ocean));
}

textarea {
    width: 100%;
    height: 240px;
}


/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 20px 0px;
}

.footer .logo {
    width: 180px;
}

.footer-left a {
    color: var(--white);
    font-weight: 600;
}

.footer-center {
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-right a {
    color: var(--white);
}

.footer-right i {
    font-size: 2rem; 
    padding: 10px;
    border-radius: 12px;
    background: var(--blue-ft);
    cursor: pointer;
}

.footer-right i:hover {
    background: var(--ocean);
}

@media only screen and (max-width: 1024px) {
    .footer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-left {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-right {
        width: 100%;
        margin-top: 10px;
    }
}