<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import '../fonts/font.css';
:root {
    --text-color: rgb(0, 0, 0);
    --default-color: rgb(255, 255, 255);
    --main-color: rgb(4, 74, 180);
    --secondary-color: rgb(4, 129, 226);
    --default-size: 14px;
    --default-indent: 15px;
    --default-font: 'ProximaNova-Regular', sans-serif;
    --default-weight: 400;
    --default-radius: 4px;
}
* {
    margin: 0;
    padding: 0;
}
p, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
}
button:focus, input:focus, textarea:focus {
    outline: none;
}
img {
    max-width: 100%;
}
ul, ol {
    list-style-position: inside;
}
body {
    font-family: var(--default-font);
    font-size: var(--default-size);
    font-weight: var(--default-weight);
    color: var(--text-color);
}
.mb40{margin-bottom: 40px;}
.mb25{margin-bottom: 25px;}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex.between{
    justify-content: space-between;
}
.transition {
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.3);
}
.section_title {
    font-size: 44px;
    line-height: 1.23;
    margin-bottom: 20px;
    color: #2C2C2C;
    padding-bottom: 15px;
    position: relative;
    font-weight: 800;

}
.section_title.line-after:after {
    content: '';
    width: 100px;
    height: 3px;
    background: #EBC917;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.uppercase {
    text-transform: uppercase;
}
.yellow-check-list {
    list-style-image: url("/templates/custom/icon/check-list.png");
    list-style-position: outside;
    padding-left: 25px;
}
.all-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--default-color);
    font-weight: 600;
    border: 1px solid transparent;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
    width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    min-width: 206px;
    height: 60px;
    border-radius: var(--default-radius);
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
}
.main-btn, .red-btn {
    color: var(--default-color);
    position: relative;
    background-size: 100% 200%;
    background: #E13A46;
}
.red-btn {
    background: #E13A46;
}
.main-btn:hover, .red-btn:hover {
    color: var(--default-color);
}

.main-btn:hover, .red-btn:hover{
    background-color: #b02d36;
    box-shadow: 0 0 10px #b02d36;
}


.secondary-btn {
    font-family: 'ProximaNova-Semibold', sans-serif;
    border-color: #E13A46;
    color: var(--text-color);
}
.secondary-btn:hover {
    background-color: rgba(16, 16, 16, 0.1);
    box-shadow: 3px 3px 15px 0 rgba(16, 16, 16, 0.2);
}
.burger-menu {
    display: none;
    width: 38px;
    height: 34px;
    padding: 5px;
    position: relative;
    z-index: 1200;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 4.5px;
    border-radius: 2px;
    background-color: #E13A46;
    position: absolute;
    left: 5px;
    opacity: 1;
    transition: all linear 0.3s;
}
.burger-menu span:first-child {
    top: 7px;
}
.burger-menu span:nth-child(2), .burger-menu span:nth-child(3) {
    top: 15px;
}
.burger-menu span:last-child {
    top: 23px;
}
.burger-menu.open span:first-child {
    top: 0;
    opacity: 0;
}
.burger-menu.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.burger-menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.burger-menu.open span:last-child {
    top: 40px;
    opacity: 0;
}

.menu-mobile {  
  background-color: #E13A46;
  position: fixed;
  right: -250px;
  top: 0px;
  height: 100%;
  width: 250px;
  z-index: 10009;
  transition: 0.4s linear;
  display: block;
}

.menu-mobile.open {
  right: 0;
}

.menu-mobile .logo{
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
}
.menu-mobile .logo img{
  height: 100%
}

.body-wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  transition: 400ms linear;
  left: 0;
  overflow: hidden;
}

.body-wrapper.hidden, .body-wrapper.hidden .header.sticky{
  left: -250px; 
}

.body-wrapper:before{
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(225,58,70,.5) 50%, rgba(225,58,70,.95) 100%);
  z-index: 1100;
  transition: 400ms ease-in-out;
}

.body-wrapper.hidden:before{
  width: 100%;  
}

.menu-mobile li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu-mobile li a,
.menu-mobile li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 40px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 0 3px 10px;
  font-size: 13px;
  font-style: normal;
}

.menu-mobile li a:hover,
.menu-mobile li span:hover {
  background-color: #243965;
}

.menu-mobile .deeper &gt; a,
.menu-mobile .deeper &gt; span {
  padding-right: 15px;
  width: 80%;
}

.menu-mobile li .list-btn {
  width: 20%;
  height: 40px;
  top: 0;
  right: 0;
  border-bottom: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-mobile li .list-btn i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #363b3f;
  font-size: 8px;
  transition: 0.3s;
}

.menu-mobile li .list-btn.open i {
  transform: rotate(45deg);
}

.menu-mobile .nav-child {
  background-color: rgba(000, 000, 000, 0.4);
  display: none;
  width: 100%;
}

.menu-mobile .nav-child li.deeper .list-btn {
  width: 20%;
}

.menu-mobile .list-btn:hover i,
.menu-mobile .list-btn.open i {
  background-color: #00a8e7;
}
.container-wide {
    max-width: 1720px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.text {
    margin-bottom: 35px;
}
.desktop-hide {
    display: none;
}
.menu-block {
    display: flex;
}
/*--------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1500px){
    .container-wide {
        max-width: 1170px;
    }
    .section_title {
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 1200px){
    .container-wide {
        max-width: 970px;
    }
    .all-btn {
        min-width: 195px;
    }
}
@media screen and (max-width: 992px){
    .container-wide {
        max-width: 720px;
    }
    .burger-menu {
        display: block;
        z-index: 1200;
    }
    .header .top-contact{
        display: none;
    }
    .header .bottom-line{
        display: none;
    }
}
@media screen and (max-width: 768px){
  .mb40{margin-bottom: 20px;}
  .mb25{margin-bottom: 15px;}
    .container-wide {
        max-width: 90%;
    }
    
}
@media screen and (max-width: 550px){
    .container-wide {
        max-width: 100%;
    }
}
@media screen and (max-width: 425px){

}</pre></body></html>