*{
    margin: 0;
    padding: 0;
}
:root{
    --dark: #404040;
    --main: #FF6600;
}
a,p,button,img,h1,h2,h3,h4,h5,h6,input,ul,ol{
    margin: 0;
}

/* fonts */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Halvar';
    src: url('../fonts/HalvarBreit-Bd.woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Halvar';
    src: url('../fonts/HalvarBreit-Md.woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* UX */
section{
    padding-top: 120px;
}
.container{
    max-width: 1420px;
    position: relative;
    z-index: 2;
}
a{
    text-decoration: none;
    color: var(--main);
}
body{
    font-family: 'Gilroy';
    background: #F5F5F5;
}
p, li{
    font-family: 'Gilroy';
    line-height: 1.2;
    color: #000;
    font-size: 20px;
}
h1,h2,h3,a{
    font-family: 'Halvar';
}
.btn_main, a.btn_main{
    font-family: 'Halvar';
    padding: 15px 25px;
    background: var(--main);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: .3s;
    font-size: 20px;
    border: 1px solid var(--main);
    border-radius: 5px;
}
.btn_main:hover, a.btn_main:hover{
    box-shadow: 0px 4px 10px rgba(255, 123, 0, 0.3);
}
.btn_main.btn_main_border{
    background: #fff;
    color: var(--main);
}
.title{
    font-size: 36px;
    line-height: 1;
    display: flex;
    gap: 10px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.subtitle{
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}
.title::before{
    height: 40px;
    width: 40px;
    display: block;
    content: "";
    background-image: url("../img/icons/slash.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.row{
    margin: 0;
}
.swiper-navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: auto;
    margin-top: 40px;
}
.swiper-navigation button{
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 15px 50px;
    border: 0px;
}
.prev{
    background: var(--dark);
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
    margin-right: -12px;
}
.next{
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
    background: var(--main);
    margin-left: -12px;
}
.disabled{
    opacity: 0.6;
    cursor: no-drop;
}

/* custom_class */
.flex_column_start{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.flex_column_center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.row_stretch{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: start;
    gap: 20px;
}
.row_center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

