:root {
    --text-color: #030303;
    --text-light: #707070;
    --text-white: #F9F9F9;
    --color-yellow: #F9FF0D;
    --color-purple: #CC31FF;
    --color-lightgray: #F2F2F2;
    --font-size: 16px;
    --font-weight: 400;
    --line-height: 1.4;
    --font-family: 'CenturyGothic', sans-serif;
    --border-radius: 10px;
}
* {
    margin: 0;
    padding: 0;
}
p, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
    color: inherit;
}
a.phone {
    white-space: nowrap;
}
button:focus, input:focus, textarea:focus {
    outline: none;
}
img {
    max-width: 100%;
}
body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    color: var(--text-color);
    background-color: #ffffff;
}
.transition {
    -webkit-transition: all linear 0.2s;
    -moz-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
}
.btn {
    display: inline-block;
    text-align: center;
    color: var(--text-color);
    font-weight: 700;
    min-width: 160px;
    font-size: 16px;
    line-height: 20px;
    padding: 21px 36px;
    -webkit-transition: all linear 0.2s;
    -moz-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
    width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    border: 1px solid var(--text-color);
    border-radius: 5px;
}
.btn-yellow {
    border-color: var(--color-yellow);
    background-color: var(--color-yellow);
}
.btn-yellow:hover, .btn-purple {
    border-color: var(--color-purple);
    background-color: var(--color-purple);
    color: var(--color-yellow);
}

.burger-menu {
    display: none;
    width: 80px;
    height: 80px;
    /*border: 1px solid var(--color-purple);*/
    /*border-radius: 5px;*/
    padding: 5px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}
/*
.burger-menu span {
    display: block;
    width: 38px;
    height: 2px;
    background: var(--color-purple);
    position: absolute;
    left: 5px;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
.burger-menu span:nth-child(1) {
    top: 11px;
}
.burger-menu span:nth-child(2) {
    top: 22px;
}
.burger-menu span:nth-child(3) {
    top: 22px;
}
.burger-menu span:nth-child(4) {
    top: 33px;
}
.active .burger-menu span:nth-child(1) {
    top: 0;
    opacity: 0;
}
.active .burger-menu span:nth-child(2) {
    transform: rotate(45deg);
}
.active .burger-menu span:nth-child(3) {
    transform: rotate(-45deg);
}
.active .burger-menu span:nth-child(4) {
    top: 50px;
    opacity: 0;
}
*/

.section-indent {
    padding-top: 120px;
}
.section-title {
    font-size: 64px;
    line-height: 78px;
    font-weight: bold;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.section-title.circle {
    position: relative;
    padding-left: 15px;
    z-index: 1;
}
.section-title.circle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-yellow);
    z-index: -1;
}
img[src="/templates/custom/icon/lazy.gif"] {
    max-width: 150px;
    max-height: 150px;
}

/*--------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1500px){}
@media screen and (max-width: 1200px){}
@media screen and (max-width: 992px){}
@media screen and (max-width: 768px){
    .burger-menu {
        display: block;
        z-index: 10;
    }
    .header .menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 100px 15px 5px 15px;
        background: transparent;
        z-index: 5;
        width: 100vw;
        height: 100vh;
        /*text-align: right;*/
        transition: all linear 0.2s;
    }
    .active .menu {
        display: block;
        background: #F9FF0D;
    }
}
@media screen and (max-width: 550px){}
@media screen and (max-width: 425px){}