*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* fonts */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* root */
html{
    scroll-behavior: smooth;
}
body.admin-bar #main {
    margin-top: 30px !important; 
}
body{
    font-family: 'Gilroy';
    background: var(--bg);
}
:root{
    --container: 1440px;
    --main: #602891;
    --light-gray: #F5F5F5;
    --gray: #B9B9B9;
}
.top_page{
    padding-top: 180px;
}
section{
    padding-top: 120px;
}
.container{
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}
a{
    text-decoration: inherit;
    font-size: 18px;
    line-height: 1.5;
}
p, li{
    font-size: 18px;
    line-height: 1.5;
}
.bg_image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}
h2{
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--main);
    margin-bottom: 60px;
}
h3{
    font-size: 24px;
    font-weight: 500;
}
.btn_main, a.btn_main{
    background: var(--main);
    padding: 15px 20px;
    border: 1px solid var(--main);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    transition: .3s;
    font-family: 'Gilroy';
}
.btn_main:hover, a.btn_main:hover{
    box-shadow: 0px 4px 10px #602891aa;
}
.btn_main_border, a.btn_main_border{
    background: transparent;
    border: 1px solid #fff;
}
.btn_main_border:hover, a.btn_main_border:hover{
    box-shadow: 0px 4px 10px #ffffffaa;
}
.btn_main.btn_main_border_color, a.btn_main.btn_main_border_color{
    color: var(--main);
    border: 1px solid var(--main);
    background: #fff;
}
button{
    cursor: pointer;
}

/* swiper */
.swiper-navigation{
    width: 90px;
    border-radius: 4px;
    background: var(--main);
}
.swiper-navigation span{
    display: block;
    width: 1px;
    background: #fff;
    height: 30px;
}
.stars img{
    height: 14px;
}
.swiper-navigation button{
    height: 40px;
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    outline: none;
    cursor: pointer;
}
.swiper{
    width: 100%;
}

/* custom_classes */
.flex{
    display: flex;
}
.wrap{
    flex-wrap: wrap;
}
.row{
    flex-direction: row;
}
.column{
    flex-direction: column;
}
.items-center{
    align-items: center;
}
.items-stretch{
    align-items: stretch;
}
.items-start{
    align-items: start;
}
.items-end{
    align-items: end;
}
.justify-start{
    justify-content: start;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-end{
    justify-content: end;
}
.gap-5{
    gap: 5px;
}
.gap-10{
    gap: 10px;
}
.gap-15{
    gap: 15px;
}
.gap-20{
    gap: 20px;
}
.gap-30{
    gap: 30px;
}
.gap-40{
    gap: 40px;
}
.gap-60{
    gap: 60px;
}
.mt-20{
    margin-top: 20px;
}
.mt-30{
    margin-top: 30px;
}
.mt-40{
    margin-top: 40px;
}