/* Fonts */
@font-face {
    font-display: swap;
    font-family: "Play";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Play-Regular.ttf") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Play";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Play-Bold.ttf") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/roboto-v30-latin-700.woff2") format("woff2");
}

/* Variables */
:root {
    --color-primary-light: #FFFFFF;
    --color-primary-dark: #011C44;
    --color-primary-brands: #2B7FFF;
    --color-secondary-text: #4A4A4A;
    --color-secondary-subtext: #747272;
    --color-secondary-btns: #011C44;
}

/* General */
* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-style: normal;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    display: inline-block;
}

h1, h2 {
    font-family: "Play", sans-serif;
}

ul {
    list-style-type: none;
}

.decoration {
    max-width: 529px;
    color: var(--color-primary-brands);
}

.decoration-text {
    text-transform: capitalize;
}

.section {
    padding: 48px 0;
}

/* End general */

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

/* Header section */
.header {
    padding: 42px 0;
    background: rgba(255, 255, 255, 0.25);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 40px;
}

.header-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 56px;
}

.social-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.social-link-icon:hover {
    fill: var(--color-primary-brands);
}

.header-link {
    color: var(--color-primary-dark);
}

.header-link:hover {
    color: var(--color-primary-brands);
}

/* Main banner section */
.banner-section {
    padding-top: 16px;
}

.banner-subtitle {
    padding-bottom: 16px;
}


.banner-title {
    margin-top: 0;
    font-size: 140px;
    font-weight: 700;
    line-height: .9;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.banner-btn {
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 18px;
    background-color: var(--color-primary-brands);
    border: 1px solid transparent;
    padding: 16px 32px;
    border-radius: 32px;
}

.banner-btn:hover {
    color: var(--color-secondary-btns);
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-primary-brands);
}

.banner-free-call-description {
    flex-basis: 238px;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-secondary-text);
}

/* Service section */
.services {
    padding-top: 125px;
}

.services-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    gap: 28px;
}

.services-description,
.service-images {
    flex-basis: 50%;
}

.service-description-text {
    font-size: 22px;
    line-height: 1.7;
}

.service-description-text:not(:last-child) {
    margin-bottom: 40px;
}

.service-text-bold {
    text-transform: capitalize;
    font-weight: 700;
}

.service-image {
    border-radius: 50%;
}

/* Why Choose Us section */
.why-choose-us-title {
    max-width: 432px;
    margin: 0 auto 48px;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
}

.why-choose-us-lists {
    display: flex;
    gap: 56px;
    align-items: center;
}

.list-card {
    border: 1px solid silver;
    border-radius: 32px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 4px 4px 0 rgba(168, 198, 245, 0.38);;
}

.card-icon {
    fill: var(--color-primary-brands);
}

.why-choose-us-text {
    line-height: 1.3;
}

/* Our procedure section */
.our-procedure-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.procedure-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;

}

.procedure-lists {
    display: flex;
    gap: 16px;
    align-items: center;
}

.procedure-card {
    width: 344px;
    min-height: 456px;
    border-radius: 0 120px 0 120px;
    background: linear-gradient(180deg, rgba(1, 28, 68, 0.00) 48.53%, rgba(1, 28, 68, 0.73) 84.61%, #011C44 101.39%);
}

.procedure-list-name {
    font-size: 22px;
    line-height: 1.1;
    display: inline-block;
    text-align: center;
}

/* Carousel settings*/

.carousel-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    border: 1px solid var(--color-primary-dark);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
}

.carousel-button:hover {
    border: 1px solid var(--color-primary-light);
    background-color: var(--color-primary-brands);
    fill: var(--color-primary-light);
}

/* Find Us section */
.find-us {
    padding-bottom: 96px;
}

.find-us-title {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 48px;
}

.find-us-container {
    display: flex;
    gap: 32px;
}

.find-us-map {
    flex-basis: 60%;
}

.find-us-forms {
    max-height: 481px;
    flex-basis: 40%;
    border: none;
    border-radius: 32px;
    padding: 48px 74px;
    background-color: var(--color-primary-dark);
}

.find-us-forms-title {
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary-light);
}

/* Footer */

.footer {
    background-color: var(--color-primary-dark);
    padding: 56px 0;
}

.footer-container {
    display: flex;
}

.footer-nav,
.footer-addresses {
    display: flex;
    flex-basis: 50%;
}

.footer-nav,
.footer-logo,
.footer-links,
.footer-addresses-group,
.address-info {
    flex-grow: 1;
}

.footer-link {
    color: var(--color-primary-light);
    font-size: 16px;
}

.footer-address-nav {
    margin-bottom: 16px;
}

.footer-social-icon:hover {
    fill: var(--color-primary-brands);
}

.footer-address-link {
    font-size: 16px;
    font-style: normal;
    color: var(--color-primary-light);
}

.link-decorate:hover {
    color: var(--color-primary-brands);
}

.footer-address-copyright {
    font-size: 13px;
    font-style: normal;
    color: var(--color-secondary-subtext);
}

.footer-social-icon {
    fill: var(--color-primary-light);
}


