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

/* CUSTOM PROPS */

:root {
    --blue-dark: #34313D;
    --blue-purple: #3A3054;
    --purple: #4B3F6B;
    --grey: #9E9AA8;
    --white-grey: #EFF1F7;
    --blue-green: #2BD0D0;
    --white: #fff;

}


/* GLOBAL STYLES */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul {
    list-style:   none;
}

a {
    text-decoration: none;
}

/* CONTAINER */

.container {
    max-width: 1156px;
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* BUTTON */
.btn {
    display: block;
    padding: 14px 40px 12px;
    text-align: center;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--blue-green);
    border-radius: 28px;
    width: max-content;
    transition: 0.4s;

}

/* BTN HOVER */
.btn:hover{
    box-shadow: 0 0 5px var(--blue-green);
    cursor: pointer;
}

/* BTN ACTIVE */

.btn:active {
   background-color: #9AE3E3;
}

/* BODY */

body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

/* D-FLEX */

.d-flex {
    display: flex;
    align-items: center;
    column-gap: 45px;
}

.site-header-hero {
    height: 800px;
    /* background-color: var(--white); */
}
.burgers {
    display: none;
}
.site-header {
    padding-top: 48px;
    padding-bottom: 48px;
}
.logo {
    width: 120px;
    display: flex;
    align-items: center;
}
.logo-image {
    width: 120px;
    height: 32px;
    object-fit: cover;
    margin-right: 15px;
}
.site-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.site-header__menu {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.site-header__link {
    color: var(--grey);
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s;
}

.site-header__link:hover {
    color: var(--blue-dark);
}

.site-header__auth {
    display: flex;
    align-items: center;
    column-gap: 37px;
}
.site-header__login,
.site-header__sign {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
}
.site-header__login {
    color: var(--grey);
}
.site-header__sign {
    color: var(--white);
    background-color: var(--blue-green);
    padding: 8px 23px;
    display: block;
    border-radius: 28px;
    transition: 0.4s;
}

/* HOVER */

.site-header__sign:hover {
    box-shadow: 0 0 5px var(--blue-green);
    cursor: pointer;
}
/* ACTIVE */
.site-header__sign:active {
    background-color: #9AE3E3;
}



/* SITE-HERO */
.site-hero {
    position: relative;
}

.site-hero__banner {
    position: absolute;
    right: 0;
    z-index: 0;
}

.site-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;
    color: var(--blue-dark);
    letter-spacing: -2px;
    max-width: 565px;
    width: 100%;
}
.site-desc {
    color: var(--grey);
    font-size: 22px;
    max-width: 540px;
    width: 100%;
    line-height: 36px;
    letter-spacing:  0.15px;
    margin-top: 5px;
    margin-bottom: 38px;
}


.search-form {
    width: 100%;
    position: relative;
    bottom: -150px;
    border-radius: 10px;
    height: 168px;
    overflow: hidden;
    background-color: #3A3054;
}
.search-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #3A3054;
    z-index: -10;

}

.search-input {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh;
    column-gap: 24px;

}
.search-input__item {
    padding: 14px 32px;
    max-width: 769px;
    width: 100%;
    font-size:20px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.15px;
    color: var(--blue-dark);
    background-color: var(--white);
    border-radius: 10px;
    border: none;
}
.search-input__item:focus {
    outline: none;
}

.search-input__item::placeholder {
    opacity: 0.5;
}
.search-btn {
    background-color: var(--blue-green);
    border-radius: 10px;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--white);
    border: none;
}
/* SITE-HERO */


/* STATISTICS */

.statistics {
    background-color: var(--white-grey);
    padding-top: 204px;
    position: relative;
    padding-bottom: 120px;

}
.statistics-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -1px;
    color: var(--blue-dark);
    text-align: center;
}

.statistics-text {
    max-width: 540px;
    width: 100%;
  margin: auto;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.123px;
    text-align: center;
    color: var(--grey);
    margin-top: 18px;
    margin-bottom: 56px;
}
.statistics-cards {
    display: flex;
    justify-content: space-between;

}

.statistics-card {
    max-width: 350px;
    width: 100%;
    background-color: var(--white);
    border-radius: 5px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 41px;
    z-index: 2;
}

.statistics-brend {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: var(--blue-purple);
    display: grid;
    place-items: center;
    transform: translateY(-44px);
}
.statistics-headline {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-purple);
}
.statistics-desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--grey);
    margin-top: 12px;
    line-height: 26px;
}

.statistics-card:nth-child(2) {
    transform: translateY(44px);
}
.statistics-card:nth-child(3) {
    transform: translateY(88px);
}
.position {
    position: relative;
}
.statistics-line {
    width: 1108px;
    height: 8px;
    background-color: var(--blue-green);
    position: absolute;
    left: 24px;
    margin: auto;
    top: 75%;
    z-index: 0;
}
/* STATISTICS */

/* CONTACT */

.contact {
    width: 100%;
    height: 250px;
    background-image: url("../images/bg-boost-desktop.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--blue-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 32px;
}
.contact-title {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -1px;
}
/* CONTACT */


/* SITE-FOOTER */
.site-footer {
    background-color: #232127;
    padding-top: 70px;
    padding-bottom: 70px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}
.footer-info {
    display: flex;
    column-gap: 100px;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.footer-menu .footer-item:nth-child(1) {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--grey);
    font-size: 15px;
    font-weight: 500;
}
.footer-link:hover {
    color: var(--blue-green);
}
.footer-menu .footer-item:nth-child(1) .footer-link {
    color: var(--white);
    font-size: 16px;
    fontweight: 700;
    letter-spacing: -0.25px;
}


.footer-social {
    display: flex;
    column-gap: 24px;
}
.footer-icon {
    color: var(--white);
    transition: .5s;
}
.footer-icon:hover svg{
    color: var(--blue-green);
}
/* SITE-FOOTER */
