/* Custom properties */
:root {
    --white: rgb(255, 255, 255);
    --black: rgb(36, 39, 42);
    --light-violet: rgb(118, 136, 212);
    --bg-gray: rgb(245, 245, 245);
}

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

img {
    max-width: 100%;
}

/* COMMON */
/* Layout */
.container {
    width: 80%;
    max-width: 900px;
}

.flex {
    display: flex;
}

/* Elements */
* {
    font-family: sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 30px
}

h3 {
    font-size: 25px;
}

p {
    line-height: 25px;
}

.btn-small {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 12px;
}

.btn-big {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 18px;
}

/* Utilities */

.black {
    color: var(--black);
}

.white {
    color: var(--white);
}

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

.bg-black {
    background-color: var(--black);
}

.bg-gray {
    background-color: var(--bg-gray);
}

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

.pt-50 {
    padding-top: 50px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-130 {
    padding-top: 130px
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-130 {
    padding-bottom: 130px;
}

.ml-0 {
    margin-left: 0;
}

.mr-10 {
    margin-right: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    padding-bottom: 50px;
}

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

.justify-center {
    justify-content: center;
}

/* HEADER */
.header {
    background-color: rgb(53, 93, 224);
    padding: 10px;
}

.header>div {
    padding: 5px 3px;
    align-items: center;
}

header .logo,
header .login {
    width: 20%;
    padding: 5px 3px;
}

.navbar {
    width: 60%;
    color: var(--white);
    font-size: var(--font-sm);
}

.navbar ul {
    list-style-type: none;
    justify-content: center;
}

.navbar li {
    margin: 0 15px;
}

.login {
    text-align: end;
}

/* /HEADER */

/* MAIN */
/* Hero section */
.hero-section {
    background-image: url(../img/jumbo.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section .container {
    width: 60%;
    max-width: 800px;
}

/* /Hero section */

/* Image-text section */

.image-text-section .img {
    width: 60%;
}

.image-text-section .text {
    width: 40%;
}

.wave,
.wave-reverse {
    width: 100%;
    color: var(--bg-gray);
    background-color: white;
}

.wave-reverse {
    rotate: 180deg;
    transform: scaleX(-1);
}

/* /Image-text section */

/* CTA section */
.question {
    background-image: url(../img/stars.svg);
    background-repeat: no-repeat;
    background-position: top center;
    flex-direction: column;
}

/* /CTA section */
/* /MAIN */

/* FOOTER  */
.footer {
    background-color: rgb(35, 35, 35);
}

/* Footer top  */
.footer-top .large {
    width: 30%;
}

.footer-top .list-section {
    width: 70%;
}

.footer-top .list {
    width: 100%;
}

/* /Footer top */

/* Footer bottom */

/* /Footer bottom */
/* /FOOTER */