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

:root
{
    --white: #fff;
    --black: #1e1e1e;
    --l-black: #232323;
    --orange: #FFC326;
    --px15: 15px;
    --px20: 10px;
    --px40: 20px;
    --px50: 25px;
}

body
{
    position: relative;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    background: var(--light-gray);
}
.container
{
    padding-left: 15px;
    padding-right: 15px;
}
.d-flex
{
    display: flex;
}
.row
{
    display: flex;
    flex-wrap: wrap;
    gap: var(--px20);
}
.row__two-col,
.row__four-col
{
    width: 100%;
}
.p-t-b
{
    padding-top: var(--px50);
    padding-bottom: var(--px50);
}
.m-b
{
    margin-bottom: var(--px50);
}
img,
svg
{
    max-width: 100%;
    height: auto;
}
.list
{
    list-style: none;
}
.title
{
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}
.title--h1
{
    font-size: 32px;
}
.title--h2
{
    font-size: 30px;
}
.btn
{
    padding: 15px 25px;
    color: var(--black);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 15px;
    cursor: pointer;
}
.btn__icon-wrapper
{
    position: relative;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    z-index: 3;
}
.btn__text
{
    position: relative;
    padding: 0 15px ;
    z-index: 2;
}
.btn--orange
{
    position: relative;
    background: var(--orange);
}
.btn--icon
{
    align-items: center;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}
.btn--icon::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 0;
    height: 40px;
    border-radius: 20px;
    background: var(--white);
    transition: .5s;
    z-index: 1;
}
.btn--icon:hover::before
{
    width: 100%;
}
.section-header
{
    margin-bottom: var(--px15);
}
.bg-orange
{
    background-color: var(--orange);
}
.bg-white
{
    background-color: var(--white);
}
.t-c
{
    text-align: center;
}
/*#region Primary */

.primary__wrapper
{
    flex-direction: column;
    gap: var(--px20);
    text-align: center;
}
.primary__title 
{
    color: var(--white);
    font-weight: 300;
}
.primary__title strong
{
    color: var(--orange);
}
.primary__subtitle
{
    font-size: 20px;
    color: var(--white);
}
.primary__phone-link
{
    text-decoration: none;
    font-size: 32px;
    color: var(--white);
    line-height: 2;
}
/*#endregion*/

/*#region About*/

.about,
.price
{
    position: relative;
}
.about::before,
.price::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url(../img/about_bg.png);
    background-position: 100% 40%;
    background-repeat: repeat;
    background-size: 35% auto;
    opacity: 0.2; 
}
.about__wrapper,
.price__wrapper
{
    align-items: center;
}
.about__desc,
.price__desc
{
    font-size: 18px;
    line-height: 1.5;
}

/*#endregion*/

/*#region Benefit*/

.benefit
{
    background-image: url(../img/bg-element.png);
    background-repeat: no-repeat;
    background-position: top right;
}

.benefit__item
{
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
}

/*#endregion*/

/*#region Service*/

.service__item
{
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--px15);
}
.service__img
{
    width: 600px;
    height: 330px;
    object-fit: cover;
}
/*#endregion*/

/*#region Price*/

.price__list
{
    padding-top: var(--px50);
    margin-bottom: var(--px15);
}
.price__btn-wrapper
{
    justify-content: center;
    padding-bottom: var(--px50);
}
.price__item-title
{
    font-size: 16px;
    margin-bottom: 15px;
}
/*#endregion*/

@media (min-width: 360px)
{
    .primary__phone-link
    {
        font-size: 36px;
    }
}

@media (min-width: 410px)
{
    .primary__phone-link
    {
        font-size: 42px;
    }
}

@media (min-width: 767px)
{
    :root
    {
        --px20: 40px;
    }
    .row__two-col
    {
        width: calc((100% - var(--px20)) / 2);
    }
    .row__four-col
    {
        width: calc(( 100% - var(--px20) * 3 ) / 4);
    }
    .primary__wrapper
    {
        align-items: flex-start;
        text-align: left;
    }
}

@media (min-width: 990px)
{
    :root
    {
        --px15: 30px;
        --px40: 60px;
        --px50: 75px;
    }
    .title--h1
    {
        font-size: 40px;
    }
}

@media (min-width: 1160px)
{
    .container
    {
        max-width: 1160px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
    .title--h1
    {
        font-size: 40px;
    }
    .benefit
    {
        background-position: top center;
    }
}