@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&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');

* {
    appearance: none !important;
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    color: #6e6e6e;
    font-family: 'Poppins';
    font-size: 16px;
}

a {
    color: inherit;
}

img {
    display: block;
}

h1 {
    color: white;
    font-family: 'Lora', serif;
    font-size: 90px;
    font-weight: normal;
}

h2 {
    color: white;
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: normal;
}

h3 {
    color: #2c3038;
    font-family: 'Lora', serif;
    font-size: 40px;
    font-weight: normal;
}

.button {
    background: #1d4a7e;
    color: white;
    font-size: 18px;
    margin-top: 30px;
    padding: 12.5px 25px;
    width: fit-content;
}

.wrap {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

/* Header ----------------------------------- */

header {
    display: flex;
    width: 100%;
}

header .wrap {
    /* align-items: center; */
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 25px;
}

header .brand {
    margin: 25px 0 0;
}

header nav {
    display: flex;
    gap: 48px;
    margin-bottom: 20px;
}

header nav a:hover {
    color: #2c3038;
}

header .cta {
    align-items: flex-end;
    background: #fe4a4a;
    color: white;
    display: flex;
    height: 100%;
    padding: 0 20px 20px;
}

header .phone {
    color: #2c3038;
    display: flex;
    font-weight: 600;
    gap: 10px;
    margin-bottom: 20px;
}

header .hamburger {
    display: none;
}

/* Main ----------------------------------- */

main {
    display: flex;
    flex: 1;
    flex-direction: column;
}

main .banner {
    background: url('/images/banner.webp');
    height: 620px;
    width: 100%;
}

main .banner .wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

main .banner p {
    color: white;
    font-size: 24px;
}

main .banner a {
    background: #1d4a7e;
    color: white;
    font-size: 18px;
    margin-top: 30px;
    padding: 12.5px 25px;
    width: fit-content;
}

/* Stats ----------------------------------- */

main .stats {
    display: flex;
    gap: 96px;
    padding: 20px 0;
}

main .stats .item {
    display: flex;
    flex-direction: column;
    position: relative;
}

main .stats .item::after {
    background: rgba(31, 31, 31, .5);
    content: '';
    height: 60%;
    position: absolute;
    right: -48px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

main .stats .item:last-of-type::after {
    width: 0;
}

main .stats .item .number {
    color: #2c3038;
    font-family: 'Lora', serif;
    font-size: 30px;
}

main .stats .item .label {
    font-size: 20px;
}

/* Budget ----------------------------------- */

main .budget {
    background: #fe4a4a;
    padding: 25px;
    position: absolute;
    right: calc(((100vw - 1200px) / 2));
    top: 600px;
    width: fit-content;
}

main .budget form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

main .budget form .form-inputs {
    align-items: flex-end;
    column-gap: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

main .budget form .form-inputs input {
    background: transparent;
    border-bottom: 1px solid white;
    color: white;
    font-size: 18px;
    height: 46px;
    outline: none;
    padding: 16px 0;
}

main .budget form .form-inputs input::placeholder {
    color: white;
}

main .budget button {
    background: #1d4a7e;
    color: white;
    font-size: 18px;
    margin-top: 30px;
    padding: 12.5px 25px;
    width: 100%;
}

/* Services ----------------------------------- */

main .services {
    align-items: center;
    display: flex;
    padding: 100px 0;
}

main .services img {
    width: 600px;
}

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

main .services .content .items {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

main .services .content .items .item {
    align-items: center;
    color: #fe4a4a;
    display: flex;
    gap: 10px;
}

main .services .content .items .item img {
    height: 48px;
    object-fit: contain;
    width: 48px;
}

main .services span {
    color: #1d4a7e;
    margin-bottom: 30px;
    margin-top: 30px;
    text-transform: uppercase;
}

/* Differentials ----------------------------------- */

main .differentials {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
}

main .differentials .block {
    align-items: center;
    aspect-ratio: 1/1;
    background: #1d4a7e;
    color: white;
    display: flex;
    font-family: 'Lora', serif;
    font-size: 32px;
    padding: 45px;
    text-align: center;
}

main .differentials .block:nth-child(even) {
    background: white;
    border: 1px solid #fe4a4a;
    color: #1d4a7e;
}

/* Product ----------------------------------- */

main .product {
    align-items: center;
    display: flex;
    gap: 48px;
    padding: 100px 0;
}

main .product img {
    width: 600px;
}

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

main .product .content b {
    color: #fe4a4a;
}

main .product .content .items {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

main .product .content .items .item {
    align-items: center;
    color: #fe4a4a;
    display: flex;
    gap: 10px;
}

main .product .content .items .item img {
    height: 48px;
    object-fit: contain;
    width: 48px;
}

main .product span {
    color: #1d4a7e;
    margin-bottom: 30px;
    margin-top: 30px;
    text-transform: uppercase;
}

/* Segments ----------------------------------- */

main .segments {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

main .segments h2 {
    color: #2c3038;
    text-align: center;
}

main .segments .list {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

main .segments .list .item {
    align-items: center;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    width: 100%;
}

main .segments .list .item span {
    background: white;
    color: #2c3038;
    font-family: 'Lora', serif;
    font-size: 36px;
    padding: 40px 56px;
}

/* Contact ----------------------------------- */

main .contact {
    align-items: center;
    display: flex;
    gap: 48px;
    padding: 100px 0;
}

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

main .contact .content b {
    color: #fe4a4a;
}

main .contact span {
    color: #1d4a7e;
    margin-bottom: 30px;
    margin-top: 30px;
    text-transform: uppercase;
}

main .contact form {
    background: #fe4a4a;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 48px;
}

main .contact form .form-inputs {
    align-items: flex-end;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

main .contact form .form-inputs input,
main .contact form .form-inputs textarea {
    background: rgba(255, 255, 255, .3);
    border-bottom: 1px solid white;
    color: white;
    font-size: 18px;
    height: 46px;
    outline: none;
    padding: 15px;
}

main .contact form .form-inputs textarea {
    grid-column: span 2;
    height: 150px;
}

main .contact form .form-inputs ::placeholder {
    color: white;
}

main .contact button {
    background: #1d4a7e;
    color: white;
    font-size: 18px;
    padding: 12.5px 25px;
    width: 100%;
}

/* Footer ----------------------------------- */
footer {
    background: #1d4a7e;
    height: 200px;
    width: 100%;
}
