@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --ff-main: "Montserrat", sans-serif;

    --size-title-page: 30px;
    --size-title: 26px;
    --size-text: 20px;

    --container-size: 1200px;
    --padding-inline: 20px;

    --color-gray-6F6E6E: #6F6E6E;
}

* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

input[type='file'] {
    max-width: 100%;
}

/* || =========================== || */
body {
    font-family: var(--ff-main);
}

.container {
    max-width: calc(var(--container-size) + calc(var(--padding-inline) * 2));
    width: 100%;
    padding-inline: var(--padding-inline);
    margin: 0 auto;
}

.title-page,
.title,
.text {
    line-height: 110%;
}

.title-page {
    font-size: var(--size-title-page);
    text-align: center;
}

.title {
    font-size: var(--size-title);
}

.title,
.title-page {
    text-wrap: balance;
}

.text_bold {
    font-weight: bold;
}

.text_center {
    text-align: center;
}

.text_uppercase {
    text-transform: uppercase;
}

.text {
    font-size: var(--size-text);
    line-height: 130%;
}

.top_p-top {
    padding-top: calc(var(--padding-inline) * 2);
}

.top_m-bottom {
    margin-bottom: 60px;
}

.section_m-bottom {
    margin-bottom: 40px;
}

.m-bottom {
    margin-bottom: 50px;
}

.m-bottom-min {
    margin-bottom: 25px;
}

.section-m-bottom {
    margin-bottom: 80px;
}

.info__inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-column-gap: 30px;
    align-items: center;
}

.info__picture {
    display: block;
    max-width: 400px;
    height: 100%;

    aspect-ratio: 1 / 1;

    border-radius: 50%;
}

.info__img {
    max-width: 100%;
    width: 100%;
    height: 100%;

    object-position: center;
    object-fit: cover;
    border-radius: 50%;
}

.module__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
}

.module__item {
    border: 1px solid var(--color-gray-6F6E6E);
    padding: 30px;
}

.module__item:nth-child(even) {
    background-color: black;
    color: white;
}

.module__item-sub-title,
.module__item-title {
    font-size: 18px;
    padding-bottom: 8px;
}

.module__info-item:not(:last-child) {
    margin-bottom: 5px;
}

.result__title {
    margin-bottom: 10px;
}

.line {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.6);
}

.tarif {
    background-color: #000;
    padding-block: calc(var(--padding-inline) * 4);
}

.tarif__title {
    color: white;
}

.tarif__content {
    background-color: #fff;
    padding: calc(var(--padding-inline) * 2);
}

.tarif__content-ul-item:not(:last-child),
.tarif__content-ol-item:not(:last-child) {
    margin-bottom: 5px;
}

.price {
    max-width: max-content;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;

    margin: 0 auto;
}

.text_min {
    font-size: 16px;
}

.review__slider {
    position: relative;
    overflow: hidden;
}

.review__slider .swiper-button-next:after,
.review__slider .swiper-button-prev:after {
    font-size: 30px;
    color: #000;
}

.review__slide p {
    max-width: 90%;
    width: 100%;
    margin-inline: auto;
}

/* 
.swiper-wrapper {align-items: stretch;} 
.swiper-slide {
    height: auto;
} */

.footer {
    background-color: #000;
    padding-block: calc(var(--padding-inline) * 4);
    color: white;
}

.swiper-wrapper {
    align-items: stretch;
    align-content: stretch;
}

.swiper-slide {
    height: max-content;
}
.review__slide-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.footer a{
    display: block;
    color: currentColor;
    transition: opacity 300ms linear;
}

.footer__el:not(:last-child){
    margin-bottom: 15px;
}
.footer__title:not(:last-child){
    display: block;
    padding-bottom: 10px;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

@media (hover: hover) {
    .footer a:hover{
        opacity: 0.7;
    }
}