/*animations*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url(https://db.onlinewebfonts.com/c/a3fc8e8de8be375936c54b2cca7b7cb7?family=Hisqaida+2018+Bold);
@keyframes anim-1 {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
    ransform: translate(-50%, -50%);
  }
  80% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(1.8) scaleX(1.8);
  }
  90% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(1) scaleX(1);
  }
}
@keyframes anim-2 {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
    ransform: translate(-50%, -50%);
  }
  80% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(1.3) scaleX(1.3);
  }
  90% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(1) scaleX(1);
  }
}
@keyframes anim-3 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
/*-animations*/
/*fonts*/
.title-xl {
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
}
.title-xl b {
  font-weight: 900;
}

.text-xl {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(34, 34, 34, 0.7);
}

@media (max-width: 800px) {
  .title-xl {
    font-size: 23px;
    line-height: 30px;
  }
  .text-xl {
    font-size: 16px;
    line-height: 26px;
  }
  h3 {
    font-size: 18px;
    line-height: 26px;
  }
  p {
    font-size: 14px;
    line-height: 20px;
  }
}
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #222222;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 3px;
}

body::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(239, 122, 19, 0) 13.18%, rgba(239, 122, 19, 0.8) 100%);
}

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  opacity: 1;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "Roboto", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
}
input::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
input::-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
input:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
input:-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: "", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
  background: transparent;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
}
textarea::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
textarea::-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
textarea:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
textarea:-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

button {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}
.wp-block-table {
 width: 100%;
 overflow: auto;
}
.wp-block-table table {
 width: 100%;
}
.wp-block-table td {
 color: #000;
 padding: 10px;
 font-size: 16px;
 line-height: 26px;
 background: #FFF;
 border-radius: 4px;
}
.wp-block-table tr:first-child td {
 color: #FFF;
 background: #EF7A13;
}
.container {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.container-s {
  height: 100%;
  width: 100%;
  max-width: 900px;
  padding: 0 15px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(237.3deg, #FFF8F2 9.56%, #ECF2FF 100%);
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.main-slider {
  height: 100vh;
}

.main-slide {
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: hidden;
}
.main-slide .container {
  display: flex;
  align-items: center;
  height: calc(100% - 60px);
}

.main-pagination {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: fit-content;
}
.main-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 1px solid #EF7A13;
  margin: 10px 0px !important;
}
.main-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #EF7A13;
}

.section {
  padding-bottom: 120px;
}

.section-top {
  margin-bottom: 50px;
}
.section-top .text-xl {
  margin-top: 20px;
}
.section-top .content {
  margin-top: 20px;
}

.section-top.two {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 16px;
  line-height: 24px;
  margin: 0px;
  margin-top: 15px;
  padding: 15px;
  text-align: center;
}

.screen-reader-response {
  display: none;
}

.codedropz-upload-handler {
  border: 2px dashed #EF7A13;
}

.cd-upload-btn {
  color: #EF7A13;
}

.codedropz-upload-inner h3 {
  font-size: 16px;
  line-height: 22px;
}

.codedropz-upload-container {
  padding: 15px 10px;
}

.codedropz-upload-handler {
  margin-bottom: 2px;
}

.dnd-upload-status {
  margin-top: 10px;
}
.grecaptcha-badge {
 opacity: 0;
 }
@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
  .container-s {
    max-width: 800px;
  }
  .main-slide .container {
    height: calc(100% - 40px);
  }
  .section-top .text-xl {
    margin-top: 15px;
  }
  .section-top .content {
    margin-top: 15px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 500px;
  }
  .container-s {
    max-width: 500px;
  }
  .main-slider {
    height: 100vh;
  }
  .section {
    padding-bottom: 60px;
  }
  .section-top {
    margin-bottom: 25px;
  }
 .wp-block-table td {
  padding: 8px;
  font-size: 14px;
  line-height: 20px;
 }
}
/*-options*/
/*buttons*/
.button-one {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  height: 60px;
  width: fit-content;
  padding: 0px 30px;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.2s;
}
.button-one::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #EF7A13;
}
.button-one::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #222222;
  transition: 0.4s;
}

.button-one.hide {
  display: none;
}

.button-two {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 8px;
  padding: 10px 25px;
  overflow: hidden;
  transition: 0.4s;
  text-align: center;
}
.button-two:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #222222;
  transition: 0.4s;
}

.button-two.hide {
  display: none;
}

.button-two.two {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0px 30px;
}

.button-two.two.hide {
  display: none;
}

.button-three {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #007CF4;
  height: 60px;
  width: fit-content;
  padding: 0px 30px;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.2s;
}
.button-three::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
.button-three::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #222222;
  transition: 0.4s;
}

@media (max-width: 500px) {
  .button-one {
    width: 100%;
    padding: 0px;
  }
  .button-two.two {
    width: 100%;
    padding: 0px;
  }
  .button-three {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 1200px) {
  .button-one:hover:after {
    height: 100%;
  }
  .button-two:hover {
    color: #FFFFFF;
  }
  .button-two:hover:before {
    height: 100%;
  }
  .button-three:hover:after {
    height: 100%;
  }
}
/*-buttons*/
/*breadcrumbs*/
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  padding: 110px 15px 0px 15px;
  margin: 0 auto 30px auto;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../icons/elements/arrow-1.svg") center no-repeat;
  background-size: contain;
  margin: 0px 10px;
}
.breadcrumbs span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(34, 34, 34, 0.4);
  transition: 0.1s;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs li:last-child a {
  pointer-events: none;
}
.breadcrumbs li:last-child span {
  color: #222222;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .breadcrumbs {
    max-width: 800px;
    padding: 70px 15px 0px 15px;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 800px) {
  .breadcrumbs {
    max-width: 500px;
  }
  .breadcrumbs li:after {
    width: 15px;
    height: 15px;
  }
  .breadcrumbs span {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (min-width: 1200px) {
  .breadcrumbs span:hover {
    color: #EF7A13;
  }
}
/*-breadcrumbs*/
/*slider*/
.slider-prev {
  width: 30px;
  height: 30px;
  fill: #EF7A13;
  cursor: pointer;
  outline: none;
  transition: 0.15s;
}

.slider-prev.two {
  fill: #FFFFFF;
}

.slider-next {
  width: 30px;
  height: 30px;
  fill: #EF7A13;
  cursor: pointer;
  outline: none;
  transition: 0.15s;
}

.slider-next.two {
  fill: #FFFFFF;
}

.slider-next.swiper-button-disabled {
  opacity: 0.5;
}

.slider-prev.swiper-button-disabled {
  opacity: 0.5;
}

.slider-pagination {
  width: auto !important;
}
.slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  border: 1px solid #EF7A13;
  background: transparent;
  margin: 0px 5px !important;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #EF7A13;
}

@media (min-width: 1200px) {
  .slider-prev:hover {
    fill: #222222;
  }
  .slider-prev.two:hover {
    fill: #EF7A13;
  }
  .slider-prev.three:hover {
    fill: #FFFFFF;
  }
  .slider-next:hover {
    fill: #222222;
  }
  .slider-next.two:hover {
    fill: #EF7A13;
  }
  .slider-next.three:hover {
    fill: #FFFFFF;
  }
}
/*-slider*/
/*rating*/
.rating-stars {
  display: block;
  height: 19px;
  width: 140px;
}

.rating-stars[data-stars="5"] {
  background: url("../icons/elements/star-5.svg") center no-repeat;
  background-size: contain;
}

.rating-stars[data-stars="4"] {
  background: url("../icons/elements/star-4.svg") center no-repeat;
  background-size: contain;
}

.rating-stars[data-stars="3"] {
  background: url("../icons/elements/star-3.svg") center no-repeat;
  background-size: contain;
}

.rating-stars[data-stars="2"] {
  background: url("../icons/elements/star-2.svg") center no-repeat;
  background-size: contain;
}

.rating-stars[data-stars="1"] {
  background: url("../icons/elements/star-1.svg") center no-repeat;
  background-size: contain;
}

.rating-stars[data-stars="0"] {
  background: url("../icons/elements/star-0.svg") center no-repeat;
  background-size: contain;
}

/*-rating*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
}

.header.fixed {
  background: #FFF;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo img {
  height: 30px;
}

.header-contain {
  display: flex;
  align-items: center;
}

.header-menu {
  display: flex;
  align-items: center;
  grid-gap: 60px;
}
.header-menu > li {
  position: relative;
}
.header-menu > li > a {
  position: relative;
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  padding-right: 20px;
  transition: 0.1s;
}
.header-menu > li.header-menu_point > a::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 5px;
  width: 12px;
  height: 9px;
  background: url("../icons/elements/arrow-3.svg") center no-repeat;
  background-size: contain;
}
.header-menu > li > ul {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: max-content;
  max-width: 200px;
  padding: 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 40px 0px rgba(34, 34, 34, 0.1);
  display: none;
}
.header-menu > li > ul:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 10px;
}
.header-menu > li > ul > li {
  margin-bottom: 20px;
}
.header-menu > li > ul > li:last-child {
  margin-bottom: 0px;
}
.header-menu > li > ul > li > a {
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  transition: 0.1s;
}

.header-info {
  display: flex;
  align-items: center;
  margin-left: 60px;
}

.header-lang > li {
  position: relative;
}
.header-lang > li > a {
  position: relative;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding-right: 20px;
}
.header-lang > li > a::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 5px;
  width: 12px;
  height: 9px;
  background: url("../icons/elements/arrow-2.svg") center no-repeat;
  background-size: contain;
  transition: 0.2s;
}
.header-lang > li > ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  width: max-content;
  padding: 10px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 40px 0px rgba(34, 34, 34, 0.1);
  display: none;
}
.header-lang > li > ul:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 10px;
}
.header-lang > li > ul > li {
  margin-bottom: 10px;
}
.header-lang > li > ul > li:last-child {
  margin-bottom: 0px;
}
.header-lang > li > ul > li > a {
  display: flex;
  align-items: center;
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  transition: 0.1s;
}

.header-burger {
  display: none;
}

.header-socials {
  display: none;
}

@media (max-width: 1200px) {
  .header-logo {
    position: relative;
    z-index: 1;
  }
  .header-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    display: none;
  }
  .header-menu {
    display: block;
    max-width: 800px;
    padding: 100px 15px 0px 15px;
    margin: 0 auto;
  }
  .header-menu > li {
    margin-bottom: 30px;
  }
  .header-menu > li:last-child {
    margin-bottom: 0px;
  }
  .header-menu > li > a {
    font-size: 20px;
    padding-right: 0px;
  }
  .header-menu > li > a:after {
    display: none;
  }
  .header-menu > li > ul {
    position: static;
    transform: translate(0);
    display: block;
    padding: 0px;
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 30px;
  }
  .header-menu > li > ul > li {
    margin-bottom: 20px;
  }
  .header-menu > li > ul > li > a {
    color: rgba(34, 34, 34, 0.7);
  }
  .header-info {
    grid-gap: 16px;
    margin-left: 0px;
  }
  .header-burger {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-burger svg:nth-child(2) {
    display: none;
  }
  .header-lang > li > a.active:after {
    transform: rotate(-180deg);
  }
  .header-burger.active svg:nth-child(1) {
    display: none;
  }
  .header-burger.active svg:nth-child(2) {
    display: block;
  }
  .header-socials {
    display: flex;
    grid-gap: 24px;
    max-width: 800px;
    padding: 40px 15px 0px 15px;
    margin: 0 auto;
  }
  .header-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-socials svg {
    width: 32px;
    height: 32px;
    fill: #EF7A13;
  }
}
@media (max-width: 800px) {
  .header-wrap {
    height: 60px;
  }
  .header-menu {
    max-width: 500px;
  }
  .header-socials {
    max-width: 500px;
  }
}
@media (min-width: 1200px) {
  .header-menu > li:hover > ul {
    display: block;
  }
  .header-menu > li > a:hover {
    color: #FF7D0B;
  }
  .header-menu > li > ul > li > a:hover {
    color: #FF7D0B;
  }
  .header-lang > li:hover > ul {
    display: block;
  }
  .header-lang > li:hover > a:after {
    transform: rotate(-180deg);
  }
  .header-lang > li > ul > li > a:hover {
    color: #FF7D0B;
  }
}
/*-header*/
/*footer*/
.footer {
  background: #222222;
}

.footer-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  padding: 50px 0px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo img {
  height: 30px;
}

.footer-socials {
  display: flex;
  grid-gap: 16px;
  margin-top: 30px;
}
.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-socials svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.footer-name {
  display: block;
  color: #EF7A13;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-menu {
  display: grid;
  grid-gap: 15px;
}
.footer-menu a {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: 0.1s;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px;
}
.footer-bottom span {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1200px) {
  .footer-boxs {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-box:first-child {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
@media (max-width: 800px) {
  .footer-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
    padding: 40px 0px;
  }
  .footer-box:first-child {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .footer-name {
    font-size: 16px;
  }
  .footer-bottom {
    padding: 0px 0px 20px 0px;
  }
  .footer-bottom span {
    font-size: 12px;
  }
  .footer-socials svg {
    width: 34px;
    height: 34px;
  }
}
@media (min-width: 1200px) {
  .footer-socials svg:hover {
    fill: #EF7A13;
  }
  .footer-menu a:hover {
    color: #EF7A13;
  }
}
/*-footer*/
/*content*/
.content *:last-child {
  margin-bottom: 0px;
}
.content h2 {
  color: #222222;
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 20px;
}
.content h3 {
  color: #222222;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}
.content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(34, 34, 34, 0.7);
  margin-bottom: 15px;
}
.content ul {
  margin-bottom: 15px;
}
.content ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(34, 34, 34, 0.7);
  padding-left: 26px;
  margin-bottom: 10px;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF7A13;
}
.content ol {
  list-style: none;
  counter-reset: num;
  margin-bottom: 15px;
}
.content ol li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(34, 34, 34, 0.7);
  padding-left: 26px;
  margin-bottom: 10px;
}
.content ol li:before {
  content: counter(num) ".";
  counter-increment: num;
  position: absolute;
  left: 10px;
  top: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #EF7A13;
}
.content a {
  display: inline;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #EF7A13;
  transition: 0.1s;
}
.content blockquote {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-style: italic;
  color: rgba(34, 34, 34, 0.7);
  padding: 0px;
  margin: 0px;
  padding-left: 15px;
  margin-bottom: 15px;
  border-left: 2px solid #EF7A13;
}

.content.two *:last-child {
  margin-bottom: 0px;
}
.content.two h3 {
  margin-bottom: 30px;
}
.content.two figure {
  margin-bottom: 30px;
}
.content.two img {
  height: auto;
  margin-bottom: 30px;
}
.content.two p {
  margin-bottom: 20px;
}
.content.two ul {
  margin-bottom: 30px;
}
.content.two ul li {
  margin-bottom: 15px;
}
.content.two ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-bottom: 30px;
}
.content.two ol li {
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  margin-bottom: 0px;
}
.content.two ol li b {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #222222;
  padding-left: 40px;
  margin-bottom: 15px !important;
}
.content.two ol li:before {
  content: counter(num) "";
  display: flex;
  justify-content: center;
  align-items: center;
  left: 30px;
  top: 30px;
  width: 26px;
  height: 26px;
  line-height: 16px;
  border-radius: 50%;
  color: #222222;
  border: 2px solid #222222;
}
.content.two blockquote {
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .content h2 {
    font-size: 23px;
    line-height: 30px;
  }
  .content h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .content ul {
    margin-bottom: 10px;
  }
  .content ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .content ul li:before {
    top: 7px;
  }
  .content ol {
    margin-bottom: 10px;
  }
  .content ol li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .content ol li:before {
    font-size: 14px;
    line-height: 20px;
  }
  .content a {
    font-size: 14px;
    line-height: 20px;
  }
  .content blockquote {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .content.two h3 {
    margin-bottom: 20px;
  }
  .content.two figure {
    margin-bottom: 20px;
  }
  .content.two img {
    margin-bottom: 20px;
  }
  .content.two p {
    margin-bottom: 15px;
  }
  .content.two ul {
    margin-bottom: 20px;
  }
  .content.two ul li {
    margin-bottom: 15px;
  }
  .content.two ol {
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }
  .content.two ol li {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 0px;
  }
  .content.two ol li b {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px !important;
  }
  .content.two ol li:before {
    left: 20px;
    top: 20px;
  }
  .content.two blockquote {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .content a:hover {
    color: #222222;
  }
}
/*-content*/
/*start*/
.start {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.start-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 490px;
  width: 100%;
  max-width: 1040px;
  margin: 0px auto;
}

.start-text h1 {
  max-width: 440px;
}
.start-text p {
  color: #222222;
  max-width: 390px;
  margin-top: 30px;
}
.start-text .button-one {
  margin-top: 60px;
}

.start-info {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.start-list {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 13.18%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 8px;
  padding: 20px 30px;
}
.start-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 28px;
}
.start-list li b {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  margin-top: 2px;
}
.start-list li:last-child {
  margin-bottom: 0px;
}

.start-img {
  position: absolute;
  right: 30px;
  bottom: -35px;
  width: 300px;
  height: 510px;
}
.start-img img {
  width: 100%;
  height: 100%;
  animation: anim-3 3s linear infinite alternate;
}

.start-icon {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 40px;
  display: block;
  width: 30px;
  height: 30px;
  background: url("../icons/elements/wifi.svg") center no-repeat;
  background-size: contain;
}
.start-icon:before, .start-icon:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: #fff;
  opacity: 0.6;
  border-radius: 50%;
  animation: anim-1 3s linear infinite;
}
.start-icon:before {
  width: 80px;
  height: 80px;
}
.start-icon:after {
  width: 130px;
  height: 130px;
  animation: anim-2 3s linear infinite;
}

@media (max-width: 1200px) {
  .start-wrap {
    height: 400px;
  }
  .start-info {
    width: 320px;
  }
  .start-img {
    right: -70px;
    width: 250px;
    height: 429px;
  }
}
@media (max-width: 800px) {
  .start-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
  }
  .start-text {
    width: 100%;
    order: 1;
  }
  .start-text p {
    margin-top: 10px;
    max-width: 310px;
  }
  .start-text .button-one {
    margin-top: 25px;
  }
  .start-info {
    order: 0;
    width: 100%;
    margin: 30px 0px;
  }
  .start-img {
    right: 15px;
    width: 140px;
    height: 242px;
  }
  .start-list {
    padding: 15px;
  }
  .start-list li {
    margin-bottom: 15px;
  }
  .start-list li b {
    font-size: 19px;
    line-height: 22px;
  }
  .start-icon {
    left: 20px;
    top: 20px;
  }
  .start-icon::before {
    width: 50px;
    height: 50px;
  }
  .start-icon::after {
    width: 80px;
    height: 80px;
  }
}
/*-start*/
/*feature*/
.feature {
  background: #F4F4F4;
}

.feature-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.feature-text h2 {
  max-width: 420px;
}
.feature-text img {
  width: 364px;
  height: 47px;
  margin-top: 24px;
}
.feature-text .button-one {
  margin-top: 60px;
}

.feature-slider {
  width: 50%;
  margin-right: 0px;
}
.feature-slider .swiper-wrapper {
  flex-direction: column;
}

.feature-slide {
  margin-bottom: 40px;
}

.feature-slide:last-child {
  margin-bottom: 0px;
}

.feature-nav {
  display: none;
}

@media (max-width: 1200px) {
  .feature-slide {
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .feature-wrap {
    position: relative;
    display: block;
    padding-bottom: 85px;
  }
  .feature-slider {
    width: 100%;
    margin-top: 25px;
  }
  .feature-slider .swiper-wrapper {
    flex-direction: row;
  }
  .feature-slide {
    opacity: 0 !important;
  }
  .feature-slide.swiper-slide-active {
    opacity: 1 !important;
  }
  .feature-text img {
    width: 290px;
    height: 37.5px;
    margin-top: 15px;
  }
  .feature-text .button-one {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-top: 0px;
  }
  .feature-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
  }
}
/*-feature*/
/*complete*/
.complete {
  background: #E2E2E2;
}

.complete-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.complete-text {
  width: 50%;
}

.complete-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.complete-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 120px;
  width: 50px;
  height: 50px;
  background: url("../icons/elements/360.svg") center no-repeat;
  background-size: contain;
}
.complete-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: url("../icons/elements/oval.svg") center no-repeat;
  background-size: contain;
}

.complete-img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 800px;
  height: 800px;
  overflow: hidden;
  cursor: move;
}
.complete-img_box img {
  width: 560px;
  height: 560px;
}

.complete-content {
  margin-top: 30px;
}

.complete-btn {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .complete-img_box {
    min-width: 380px;
    width: 380px;
    height: 380px;
  }
  .complete-img_box img {
    width: 100%;
    height: 100%;
  }
  .complete-img::after {
    width: 400px;
    height: 400px;
  }
  .complete-img::before {
    top: 0;
  }
}
@media (max-width: 800px) {
  .complete-text {
    width: 100%;
  }
  .complete-content {
    margin-top: 0px;
  }
  .complete-img {
    position: relative;
    left: auto;
    top: auto;
    transform: translateY(0);
    width: 100%;
    margin-top: 10px;
  }
  .complete-img_box {
    min-width: 220px;
    width: 220px;
    height: 220px;
  }
  .complete-img::after {
    width: 190px;
    height: 190px;
  }
}
/*-complete*/
/*components*/
.components {
  position: relative;
  background: #F4F4F4;
}
.components::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  height: 100%;
  width: 140px;
  background: linear-gradient(-90deg, rgba(244, 244, 244, 0.8) 30.74%, rgba(244, 244, 244, 0) 93.12%, rgba(244, 244, 244, 0) 93.13%);
}

.components-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.components-img {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
}
.components-img > img {
  width: 204px;
  height: 398px;
}

.components-tabs {
  position: absolute;
  z-index: 3;
  left: 260px;
  top: 40px;
  width: 210px;
  margin: 0px;
}

.components-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0 !important;
}
.components-tab img {
  width: 210px;
  height: 422px;
}

.components-tab.swiper-slide-thumb-active {
  opacity: 1 !important;
}

.components-text {
  width: 50%;
}
.components-text h2 {
  position: relative;
  z-index: 3;
}

.components-content {
  position: relative;
  z-index: 3;
  margin-top: 30px;
}

.components-slider {
  overflow: visible;
  width: 370px;
  margin: 35px 0px 0px 0px;
}
.components-slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: calc(100% + 15px);
  top: -35px;
  height: calc(100% + 80px);
  width: 2000px;
  background: #F4F4F4;
}

.components-slide {
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.05);
  border-radius: 8px;
  padding: 20px;
  min-height: 100%;
  transition: 0.2s;
}
.components-slide span {
  display: block;
  width: calc(100% - 100px);
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #EF7A13;
  margin-bottom: 10px;
}
.components-slide h3 {
  width: calc(100% - 75px);
  margin-bottom: 10px;
}
.components-slide img {
  position: absolute;
  right: 0px;
  top: -35px;
  width: 100px;
  height: 100px;
}

.components-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .components:after {
    width: 50px;
  }
  .components-img {
    justify-content: flex-start;
  }
  .components-tabs {
    left: 140px;
  }
}
@media (max-width: 800px) {
  .components::after {
    display: none;
  }
  .components-img {
    display: none;
  }
  .components-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .components-slider::after {
    display: none;
  }
  .components-slide span {
    margin-bottom: 5px;
  }
  .components-content {
    margin-top: 15px;
  }
  .components-nav {
    margin-top: 25px;
  }
}
@media (max-width: 500px) {
  .components-slider {
    width: 92vw;
  }
}
@media (min-width: 1200px) {
  .components-slide:hover {
    box-shadow: 0px 2px 10px rgba(239, 122, 19, 0.4);
  }
}
/*-components*/
/*app*/
.app {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.app .container {
  position: relative;
}

.app-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.app-img {
  position: absolute;
  z-index: 3;
  left: 40px;
  bottom: -30px;
}
.app-img img {
  width: 411px;
  height: 632px;
}

.app-text {
  width: 50%;
}
.app-text h2 {
  color: #FFFFFF;
  max-width: 350px;
  margin-top: 10px;
}
.app-text .text-xl {
  color: #FFFFFF;
  max-width: 450px;
  margin-top: 30px;
}

.app-sub {
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: #FFFFFF;
}

.app-slider {
  width: 330px;
  margin: 45px 0px 0px 0px;
  overflow: visible;
}

.app-slide {
  position: relative;
  padding: 20px;
  background: linear-gradient(88.23deg, rgba(255, 255, 255, 0.4) 20.29%, rgba(255, 255, 255, 0) 104.55%);
  box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.05);
  border-radius: 8px;
  color: #FFFFFF;
  min-height: 100%;
  height: auto;
  transition: 0.2s;
}
.app-slide span {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}
.app-slide h3 {
  margin-bottom: 10px;
}
.app-slide p {
  color: #FFFFFF;
}

.app-slide.swiper-slide-active {
  background: linear-gradient(88.23deg, rgba(239, 122, 19, 0.9) 20.29%, rgba(255, 255, 255, 0) 104.55%);
}

.app-nav {
  position: absolute;
  z-index: 4;
  top: -40px;
  left: 50%;
  transform: translateX(-64%);
  min-width: 1200px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .app-slider {
    width: 100%;
  }
  .app-nav {
    position: static;
    min-width: 100%;
    padding: 0px;
    margin-top: 30px;
    transform: translate(0);
  }
  .app-img {
    left: -80px;
  }
}
@media (max-width: 800px) {
  .app-text {
    position: relative;
    z-index: 3;
    width: 100%;
  }
  .app-text .text-xl {
    margin-top: 15px;
  }
  .app-sub {
    font-size: 12px;
    line-height: 18px;
  }
  .app-slide {
    color: #222222;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px 20px 20px;
  }
  .app-slide span {
    left: auto;
    right: 10px;
    top: 10px;
    color: #222222;
    border: 2px solid #222222;
  }
  .app-slide p {
    color: #222222;
  }
  .app-slide.swiper-slide-active {
    background: rgba(255, 255, 255, 0.9);
  }
  .app-img {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
  }
  .app-img img {
    min-width: 270px;
    width: 270px;
    height: 415px;
  }
  .app-nav {
    margin-top: 15px;
  }
  .app-slider {
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .app-slide:hover {
    box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.3);
  }
}
/*-app*/
/*plus*/
.plus {
  background: #E2E2E2;
}

.plus-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.plus-img {
  position: relative;
  width: 46%;
}
.plus-img h2 {
  max-width: 285px;
  margin: 0px 0px 30px 30px;
}

.plus-info {
  padding: 30px;
  background: rgba(239, 122, 19, 0.8);
  border-radius: 8px;
  max-width: 400px;
}
.plus-info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.plus-info p:last-child {
  margin-bottom: 0px;
}
.plus-info b {
  display: block;
  font-weight: 900;
  font-size: 36px;
  line-height: 42px;
}
.plus-info img {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 30px;
  width: 200px;
  height: 399px;
}

.plus-text {
  width: 50%;
}

.plus-content {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .plus-info {
    padding: 20px;
  }
  .plus-info p {
    font-size: 16px;
    line-height: 26px;
  }
  .plus-img h2 {
    position: absolute;
    left: -90px;
    top: -220px;
    margin: 0px;
    transform: rotate(-90deg);
  }
}
@media (max-width: 800px) {
  .plus-wrap {
    display: block;
  }
  .plus-img {
    width: 100%;
  }
  .plus-img h2 {
    position: static;
    margin-bottom: 10px;
    transform: rotate(0);
    max-width: 100%;
  }
  .plus-text {
    width: 100%;
  }
  .plus-text h3 {
    display: none;
  }
  .plus-content {
    margin-top: 10px;
  }
  .plus-content p {
    font-size: 12px;
    line-height: 18px;
  }
  .plus-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: inherit;
    min-height: 160px;
    padding: 10px 90px 10px 15px;
  }
  .plus-info p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
  }
  .plus-info b {
    font-size: 20px;
    line-height: 24px;
  }
  .plus-info img {
    z-index: 2;
    right: 10px;
    bottom: 10px;
    width: 70px;
    height: 140px;
  }
}
@media (max-width: 500px) {
  .plus-info {
    left: -15px;
    width: calc(100% + 30px);
    border-radius: 0px;
  }
}
/*-plus*/
/*question*/
.question {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.question-wrap {
  width: 100%;
}

.question-text {
  color: #FFFFFF;
}
.question-text p {
  color: #FFFFFF;
  margin-top: 30px;
  max-width: 300px;
}

.question-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  margin-top: 50px;
}
.question-list a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 68px;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  border-radius: 5px;
  overflow: hidden;
}
.question-list a:before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.question-list a:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #222222;
  transition: 0.5s;
}
.question-list li:nth-child(1) a:before {
  background: #EF7A13;
}
.question-list li:nth-child(2) a:before {
  background: linear-gradient(88.23deg, rgba(239, 122, 19, 0.8) 10.29%, rgba(239, 122, 19, 0.16) 104.55%);
}
.question-list li:nth-child(3) a:before {
  background: linear-gradient(88.23deg, rgba(239, 122, 19, 0.8) 10.29%, rgba(239, 122, 19, 0.16) 104.55%);
}
.question-list li:nth-child(4) a:before {
  background: linear-gradient(88.23deg, rgba(239, 122, 19, 0.8) 10.29%, rgba(239, 122, 19, 0.16) 104.55%);
}

@media (max-width: 1200px) {
  .question-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .question-list {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    margin-top: 25px;
  }
  .question-list a {
    height: 55px;
  }
  .question-text p {
    margin-top: 15px;
  }
}
@media (min-width: 1200px) {
  .question-list a:hover:after {
    width: 100%;
  }
}
/*-question*/
/*news*/
.main-slide.news {
  background: #F4F4F4;
}

.news-wrap {
  position: relative;
  width: 100%;
}

.news-top {
  position: absolute;
  z-index: 3;
  right: 100px;
  top: 70px;
  width: 260px;
}
.news-top h3 {
  font-size: 28px;
  line-height: 38px;
}
.news-top p {
  color: rgba(34, 34, 34, 0.7);
  margin-top: 15px;
}

.news-top_info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
}
.news-top_info img {
  width: 70px;
  height: 45px;
}

.news-box {
  position: relative;
  max-width: 770px;
  margin-top: 30px;
}

.news-slide {
  min-height: 100%;
}

.news-nav {
  position: absolute;
  right: 0;
  top: -60px;
  display: flex;
  align-items: center;
}
.news-nav .news-next {
  margin-left: 30px;
}

.news-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2px 10px rgba(34, 34, 34, 0.05);
  border-radius: 20px;
  overflow: hidden;
}

.news-item_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.news-item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item_text {
  position: relative;
  height: 209px;
  padding: 20px 20px 55px 20px;
}

.news-item_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-item_category {
  color: rgba(34, 34, 34, 0.7);
  font-weight: 400;
  font-size: 16px;
}

.news-item_title {
  margin-top: 10px;
  display: grid;
}
.news-item_title a {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.1s;
}

.news-item_descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(34, 34, 34, 0.7);
  max-height: 48px;
  overflow: hidden;
  margin-top: 10px;
}

.news-item_link {
  font-size: 16px;
  font-weight: 500;
  color: #EF7A13;
  transition: 0.1s;
}

.news-item_bottom {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-item_author a {
  display: block;
}
.news-item_author span {
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  transition: 0.1s;
}

.news-item_date {
  color: rgba(34, 34, 34, 0.7);
  font-weight: 400;
  font-size: 16px;
}

.news-slider .news-item_text {
  height: 147px;
  padding: 20px;
}
.news-slider .news-item_top {
  display: none;
}
.news-slider .news-item_bottom {
  display: none;
}
.news-slider .news-item_title {
  margin-top: 0px;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.news-bottom {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.news-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
.news-start .news-item_img {
  width: 500px;
  height: 400px;
}
.news-start .news-item_text {
  height: auto;
  width: 600px;
  padding: 0px 0px 0px 50px;
}
.news-start .news-item_bottom {
  position: static;
  width: 100%;
  margin-top: 15px;
}
.news-start .button-two {
  margin-top: 15px;
}

.news-single_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.news-single_category {
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 34, 0.7);
}

.news-single_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.news-single_date {
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 34, 0.7);
}

.news-single_author span {
  font-weight: 500;
  font-size: 16px;
  color: #222222;
}

.news-single_img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
}
.news-single_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .news-box {
    max-width: 370px;
  }
  .news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .news-start .news-item_img {
    width: 350px;
    height: 250px;
  }
  .news-start .news-item_text {
    width: 350px;
    padding: 0px 0px 0px 30px;
  }
}
@media (max-width: 800px) {
  .news-box {
    max-width: 100%;
    margin-top: 15px;
  }
  .news-box::after {
    display: none;
  }
  .news-top {
    position: static;
    margin-top: 25px;
    width: 100%;
  }
  .news-top h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .news-top p {
    display: none;
  }
  .news-top_info {
    margin-top: 10px;
  }
  .news-nav {
    top: -45px;
  }
  .news-item {
    border-radius: 8px;
  }
  .news-item_text {
    height: 170px;
    padding: 15px;
  }
  .news-item_bottom {
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
  }
  .news-item_img {
    height: 180px;
  }
  .news-item_category {
    font-size: 14px;
  }
  .news-item_descr {
    font-size: 14px;
    line-height: 21px;
    max-height: 42px;
  }
  .news-item_link {
    font-size: 14px;
  }
  .news-item_author span {
    font-size: 14px;
  }
  .news-item_date {
    font-size: 14px;
  }
  .news-item_title {
    font-size: 16px;
    line-height: 16px;
  }
  .news-item_title a {
    font-size: 16px;
  }
  .news-slider .news-item_text {
    height: 116px;
    padding: 15px;
  }
  .news-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .news-bottom {
    margin-top: 30px;
  }
  .news-start {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .news-start .news-item_img {
    order: 0;
    width: 100%;
    height: auto;
  }
  .news-start .news-item_text {
    order: 1;
    width: 100%;
    padding: 15px;
  }
  .news-start .news-item_bottom {
    margin-top: 10px;
  }
  .news-single_top {
    margin-bottom: 15px;
  }
  .news-single_bottom {
    margin-top: 15px;
  }
  .news-single_category {
    font-size: 14px;
  }
  .news-single_author span {
    font-size: 14px;
  }
  .news-single_date {
    font-size: 14px;
  }
  .news-single_img {
    height: 250px;
    border-radius: 8px;
    margin-top: 25px;
  }
}
@media (max-width: 500px) {
  .news-single_img {
    height: 210px;
  }
}
@media (min-width: 1200px) {
  .news-item_title:hover a {
    color: #EF7A13;
  }
  .news-item_link:hover {
    color: #222222;
  }
  .news-item_author:hover span {
    color: #EF7A13;
  }
}
/*-news*/
/*buy*/
.main-slide.buy {
  background: #222222;
}

.buy-wrap {
  width: 100%;
}

.buy-text p {
  margin-top: 20px;
}

.main-slide.buy .buy-text {
  color: #FFFFFF;
}
.main-slide.buy .buy-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
}

.buy-slider {
  overflow: visible;
  margin-top: 50px;
}

.buy-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.buy-slide {
  opacity: 0 !important;
}

.buy-slide.swiper-slide-active {
  opacity: 1 !important;
}

.buy-slide_list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.buy-slide_list li {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(17, 19, 24, 0.1);
  border-radius: 14px;
}
.buy-slide_list li img {
  width: 200px;
  height: 100px;
  transition: 0.3s;
}
.buy-slide_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 0px;
}
.buy-slide_list span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  opacity: 0;
  transition: 0.3s;
}

.buy-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.buy-next {
  position: absolute;
  right: 0;
  top: -75px;
}

.buy-prev {
  position: absolute;
  right: 60px;
  top: -75px;
}

.buy-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 30px auto 0px auto;
}
.buy-list li {
  display: flex;
  align-items: center;
  width: 33.3%;
  justify-content: center;
}
.buy-list a {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.1s;
}
.buy-list span {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.buy-socilas {
  display: flex;
  justify-content: center;
}
.buy-socilas li {
  margin: 0px 10px;
}
.buy-socilas svg {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .buy-slide_list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .buy-slide_list li img {
    width: 130px;
    height: 65px;
  }
}
@media (max-width: 800px) {
  .buy-text p {
    margin-top: 15px;
  }
  .main-slide.buy .buy-text p {
    margin-top: 15px;
  }
  .buy-slider {
    margin-top: 15px;
  }
  .buy-slide_list {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .buy-slide_list li {
    height: 50px;
    border-radius: 8px;
  }
  .buy-slide_list li img {
    height: 40px;
    width: 80px;
  }
  .buy-nav {
    justify-content: space-between;
    margin-top: 15px;
  }
  .buy-prev {
    position: static;
  }
  .buy-next {
    position: static;
  }
  .buy-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }
  .buy-list li {
    width: 100%;
    margin-top: 15px;
  }
  .buy-list li:nth-child(1) {
    order: 0;
    margin-top: 0px;
  }
  .buy-list li:nth-child(2) {
    order: 2;
  }
  .buy-list li:nth-child(3) {
    order: 1;
  }
  .buy-list a {
    font-size: 14px;
  }
  .buy-list span {
    font-size: 14px;
  }
  .buy-socilas svg {
    margin-top: 15px;
  }
}
@media (min-width: 1200px) {
  .buy-slide_list li:hover span {
    opacity: 1;
  }
  .buy-slide_list li:hover img {
    opacity: 0;
  }
  .buy-list a:hover {
    color: #EF7A13;
  }
}
/*-buy*/
/*mistake*/
.mistake-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
  text-align: center;
}
.mistake-wrap h1 {
  font-size: 170px;
  line-height: 170px;
}
.mistake-wrap p {
  margin: 10px 0px 30px 0px;
}

@media (max-width: 800px) {
  .mistake-wrap {
    padding: 50px 0px;
  }
  .mistake-wrap h1 {
    font-size: 120px;
    line-height: 120px;
  }
  .mistake-wrap p {
    margin: 10px 0px 20px 0px;
  }
}
/*-mistake*/
/*service*/
.service-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-video {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
}
.service-video a {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.service-video a.active {
  display: flex;
}
.service-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.service-video svg {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  stroke: #FFFFFF;
  transition: 0.15s;
}
.service-video p {
  position: absolute;
  left: 0;
  bottom: -40px;
  text-align: center;
}

.service-list {
  width: 48%;
  list-style: none;
  counter-reset: num;
}
.service-list li {
  position: relative;
  padding: 70px 0px 30px 0px;
  border-bottom: 1px solid #222222;
  cursor: pointer;
}
.service-list li:last-child {
  border-bottom: none;
}
.service-list li:before {
  content: "0" counter(num);
  counter-increment: num;
  position: absolute;
  left: 0px;
  top: 30px;
  font-weight: 400;
  font-size: 16px;
  color: #EF7A13;
}
.service-list h3 {
  margin-bottom: 15px;
}
.service-list p {
  width: 70%;
}
.service-list li.active h3 {
  color: #EF7A13;
}

.service-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 200px;
  margin: 60px 0px 50px 0px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(17, 19, 24, 0.1);
  border-radius: 420px;
}
.service-box li {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #222222;
}
.service-box li:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.service-box img {
  width: 140px;
  height: 279px;
}
.service-box b {
  display: block;
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
  color: #222222;
}

@media (max-width: 1200px) {
  .service-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .service-video {
    width: 100%;
    height: 450px;
  }
  .service-list {
    width: 100%;
  }
  .service-box {
    padding: 50px 70px;
  }
  .service-video p {
    display: none;
  }
}
@media (max-width: 800px) {
  .service-video {
    height: 300px;
  }
  .service-video img {
    border-radius: 8px;
  }
  .service-list li {
    padding: 35px 0px 15px 0px;
  }
  .service-list li:before {
    top: 13px;
  }
  .service-list h3 {
    margin-bottom: 10px;
  }
  .service-list p {
    width: 100%;
  }
  .service-box {
    display: flex;
    align-items: flex-start;
    padding: 30px 20px;
    margin-top: 0;
    border-radius: 8px;
    margin-bottom: 260px;
  }
  .service-box li {
    font-size: 14px;
    line-height: 20px;
  }
  .service-box b {
    font-size: 20px;
    line-height: 45px;
  }
  .service-box li:nth-child(2) {
    top: 85%;
    transform: translateX(-50%);
  }
}
@media (max-width: 500px) {
  .service-video {
    height: 210px;
  }
  .service-video svg {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1200px) {
  .service-video:hover svg {
    stroke: #EF7A13;
  }
}
/*-service*/
/*warranty*/
.warranty-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
}
.warranty-list li {
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(17, 19, 24, 0.1);
  border-radius: 20px;
}
.warranty-list h3 {
  margin-bottom: 15px;
}

.warranty-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  margin-top: 30px;
}
.warranty-box .button-two {
  width: 100%;
}
.warranty-box p {
  color: #FF7700;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .warranty-list {
    grid-template-columns: 1fr;
  }
  .warranty-box {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .warranty-box li:nth-child(1) {
    order: 1;
  }
  .warranty-box li:nth-child(2) {
    order: 3;
  }
  .warranty-box li:nth-child(3) {
    order: 0;
  }
}
@media (max-width: 800px) {
  .warranty-list {
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  .warranty-list li {
    padding: 20px;
    border-radius: 8px;
  }
  .warranty-list h3 {
    margin-bottom: 10px;
  }
  .warranty-box {
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
}
/*-warranty*/
/*example*/
.example-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 770px;
  margin: auto;
}
.example-list li {
  position: relative;
  z-index: 1;
}
.example-list li:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: url("../icons/elements/oval-1.svg") center no-repeat;
  background-size: contain;
}
.example-list img {
  width: 290px;
  height: 588px;
  border-radius: 20px;
  box-shadow: 0px 2px 40px rgba(17, 19, 24, 0.1);
}

@media (max-width: 800px) {
  .example-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .example-list li:nth-child(1) {
    display: none;
  }
  .example-list li:before {
    width: 300px;
    height: 300px;
  }
  .example-list img {
    width: 240px;
    height: 487px;
    border-radius: 8px;
  }
}
/*-example*/
/*partners*/
.partners-wrap {
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 50px;
}

.partners-text {
  width: 40%;
  padding-right: 30px;
  border-right: 1px solid #222222;
}
.partners-text h3 {
  color: rgba(34, 34, 34, 0.7);
  margin-bottom: 30px;
}
.partners-text p {
  margin-bottom: 30px;
}
.partners-text a {
  width: 300px;
  margin-bottom: 20px;
}
.partners-text a:last-child {
  margin-bottom: 0px;
}

.partners-select {
  position: relative;
  z-index: 3;
  width: 300px;
  margin-bottom: 30px;
}

.partners-select_point {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  padding: 0px 20px;
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  transition: 0.1s;
}
.partners-select_point::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../icons/elements/arrow-2.svg") center no-repeat;
  background-size: contain;
  transition: 0.1s;
}

.partners-select_list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 255px;
  overflow-y: scroll;
  display: none;
}
.partners-select_list::-webkit-scrollbar {
  width: 2px;
}
.partners-select_list::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 3px;
}
.partners-select_list::-webkit-scrollbar-track {
  background: #EF7A13;
}
.partners-select_list li {
  font-size: 16px;
  margin-bottom: 15px;
  cursor: pointer;
}
.partners-select_list li b {
  font-weight: 400;
}
.partners-select_list li:last-child {
  margin-bottom: 0px;
}
.partners-select_list li.active {
  color: #EF7A13;
}

.partners-info {
  width: 60%;
  padding-left: 30px;
}
.partners-info h3 {
  color: rgba(34, 34, 34, 0.7);
  margin-bottom: 30px;
}

.partners-box {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.partners-box b {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 5px;
}
.partners-box span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.partners-box a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
  text-decoration: underline;
  margin-top: 5px;
  transition: 0.1s;
}

.partners-box.active {
  display: grid;
}

@media (max-width: 1200px) {
  .partners-wrap {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 190px 50px 50px 50px;
  }
  .partners-text {
    order: 1;
    width: 100%;
    padding-right: 0px;
    border: none;
    margin-top: 30px;
  }
  .partners-text h3 {
    position: absolute;
    left: 50px;
    top: 50px;
  }
  .partners-select {
    position: absolute;
    left: 50px;
    top: 100px;
  }
  .partners-info {
    order: 0;
    width: 100%;
    padding-left: 0px;
  }
  .partners-info h3 {
    display: none;
  }
  .partners-select_point.active:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .partners-select_list.active {
    display: block;
  }
}
@media (max-width: 800px) {
  .partners-wrap {
    padding: 160px 20px 20px 20px;
    border-radius: 8px;
  }
  .partners-text h3 {
    top: 30px;
    left: 20px;
  }
  .partners-select {
    left: 20px;
    top: 70px;
    width: calc(100% - 40px);
  }
  .partners-box {
    grid-template-columns: 1fr 1fr;
  }
  .partners-box b {
    font-size: 14px;
    line-height: 20px;
  }
  .partners-box span {
    font-size: 12px;
    line-height: 18px;
  }
  .partners-box a {
    font-size: 14px;
    line-height: 20px;
  }
  .partners-text {
    margin-top: 20px;
  }
  .partners-text a {
    width: 100%;
  }
  .partners-text p {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .partners-select_list li:hover {
    color: #EF7A13;
  }
  .partners-select:hover .partners-select_list {
    display: block;
  }
  .partners-select:hover .partners-select_point {
    border-radius: 5px 5px 0px 0px;
  }
  .partners-select:hover .partners-select_point:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .partners-box a:hover {
    color: #EF7A13;
  }
}
/*-partners*/
/*mobile*/
.mobile-wrap {
  display: flex;
  justify-content: space-between;
}

.mobile-img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 60%;
  top: 0;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: url("../icons/elements/oval.svg") center no-repeat;
  background-size: contain;
}
.mobile-img img {
  width: 380px;
  height: 585px;
}

.mobile-buttons {
  padding-top: 100px;
}
.mobile-buttons li {
  margin-bottom: 15px;
}
.mobile-buttons li:last-child {
  margin-bottom: 0px;
}
.mobile-buttons img {
  width: 28px;
  height: 33px;
  margin-right: 15px;
}
.mobile-buttons a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}
.mobile-buttons a::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222222;
  transition: 0.4s;
}
.mobile-buttons a::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #EF7A13;
  transition: 0.4s;
}

.mobile-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  border-radius: 30px;
  box-shadow: 0px 2px 40px rgba(17, 19, 24, 0.1);
  margin-bottom: 30px;
}
.mobile-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.mobile-video svg {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  stroke: #FFFFFF;
  transition: 0.15s;
}
.mobile-video p {
  position: absolute;
  left: 0;
  bottom: -35px;
  text-align: center;
}

@media (max-width: 1200px) {
  .mobile-video {
    height: 450px;
  }
}
@media (max-width: 800px) {
  .mobile-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mobile-buttons {
    padding-top: 0;
    order: 0;
  }
  .mobile-img {
    order: 1;
    margin-top: 30px;
  }
  .mobile-video {
    height: 300px;
  }
  .mobile-video img {
    border-radius: 8px;
  }
}
@media (max-width: 500px) {
  .mobile-buttons {
    width: 100%;
  }
  .mobile-buttons a {
    width: 100%;
  }
  .mobile-img::before {
    width: 300px;
    height: 300px;
  }
  .mobile-img img {
    width: 270px;
    height: 415px;
  }
  .mobile-video {
    height: 210px;
    margin-bottom: 22px;
  }
  .mobile-video svg {
    width: 50px;
    height: 50px;
  }
  .mobile-video p {
    bottom: -25px;
  }
}
@media (min-width: 1200px) {
  .mobile-buttons a:hover:after {
    height: 100%;
  }
  .mobile-buttons a:hover:before {
    height: 0px;
  }
  .mobile-video:hover svg {
    stroke: #EF7A13;
  }
}
/*-mobile*/
/*features*/
.property-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 70px;
  grid-column-gap: 100px;
}
.property-list li {
  position: relative;
  padding-left: 60px;
}
.property-list img {
  position: absolute;
  left: 0;
  top: 5px;
  width: 30px;
  height: 30px;
}
.property-list h3 {
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .property-list {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
  .property-list li {
    padding-left: 40px;
  }
  .property-list h3 {
    margin-bottom: 10px;
  }
  .property-list img {
    width: 25px;
    height: 25px;
  }
}
/*-features*/
/*release*/
.release {
  overflow: hidden;
}

.release-list {
  position: relative;
}
.release-list::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: calc(100% - 3px);
  width: 2px;
  background: #222222;
}

.release-list_point {
  position: relative;
  width: 320px;
  padding-top: 50px;
}
.release-list_point span {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
}
.release-list_point li {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(34, 34, 34, 0.7);
  margin-top: 5px;
}
.release-list_point:before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: 55px;
  right: -120px;
  border-radius: 50%;
  background: #EF7A13;
}

.release-list_point:first-child {
  padding-top: 0px;
}
.release-list_point:first-child:before {
  top: 3px;
  right: auto;
  left: -120px;
}

.release-list_point:last-child::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 56px;
  left: -116px;
  height: 100%;
  width: 2px;
  background: #f2f4fb;
}

.release-list_point:nth-child(odd) {
  margin-left: auto;
}
.release-list_point:nth-child(odd):before {
  right: auto;
  left: -120px;
}

@media (max-width: 1200px) {
  .release-list_point:before {
    right: -70px;
  }
  .release-list_point:nth-child(odd):before {
    left: -70px;
  }
  .release-list_point:last-child::after {
    left: -66px;
  }
}
@media (max-width: 800px) {
  .release-list {
    padding-left: 20px;
  }
  .release-list::after {
    left: 5px;
  }
  .release-list_point {
    width: 100%;
    padding-top: 30px;
  }
  .release-list_point span {
    font-size: 14px;
    line-height: 20px;
  }
  .release-list_point li {
    font-size: 14px;
    line-height: 20px;
  }
  .release-list_point:before {
    right: auto;
    left: -20px;
    top: 34px;
  }
  .release-list_point:nth-child(odd) {
    margin-left: 0px;
  }
  .release-list_point:nth-child(odd):before {
    left: -20px;
  }
  .release-list_point:last-child::after {
    left: -16px;
    top: 42px;
  }
}
/*-release*/
/*ordering*/
.ordering-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.ordering-text .content {
  margin-top: 20px;
}
.ordering-text .button-two {
  margin-top: 30px;
}

.ordering-img {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
}
.ordering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .ordering-wrap {
    grid-template-columns: 1fr;
  }
  .ordering-img {
    position: static;
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .ordering-img {
    height: 300px;
    border-radius: 8px;
    margin-top: 15px;
  }
  .ordering-text .button-two {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  .ordering-img {
    height: 210px;
  }
}
/*-ordering*/
/*request*/
.main-request {
  background: #222222;
}
.main-request .container {
  flex-direction: column;
  justify-content: center;
}
.main-request .buy-list {
  width: 100%;
}
.main-request .section-top .title-xl {
  color: #FFFFFF;
}
.main-request .request-input_text {
  color: #FFFFFF;
}
.main-request .content h3 {
  color: #FFFFFF;
}
.main-request .content p {
  color: rgba(255, 255, 255, 0.7);
}
.main-request .request-button:after {
  background: #FFFFFF;
}
.main-request .wpcf7-response-output {
  color: #FFFFFF;
}
.main-request .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.main-request .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: -20px;
}

.request-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.request-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.request-input {
  display: block;
  width: 48%;
  margin-bottom: 30px;
}

.request-input:last-child {
  width: 100%;
}

.request-inputs.two .request-input:last-child {
  width: 48%;
}

.request-input_text {
  display: block;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
}

.request-input_point {
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 16px;
  color: #222222;
  border: 1px solid transparent;
  padding: 0px 20px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: 0.1s;
}

.request-input_point:focus {
  border: 1px solid #EF7A13;
}

.request-button {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 48%;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.2s;
  cursor: pointer;
}
.request-button::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #EF7A13;
}
.request-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #222222;
  transition: 0.4s;
}

.request-button_point {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  border: none;
  background: transparent;
}

.request-content {
  margin-top: 90px;
}

@media (max-width: 1200px) {
  .request-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: 1fr;
  }
  .request-content {
    margin-top: 30px;
  }
  .main-request .request-input_point {
    height: 44px;
  }
  .main-request .request-content {
    display: none;
  }
}
@media (max-width: 500px) {
  .request-input {
    width: 100%;
  }
  .request-inputs.two .request-input:last-child {
    width: 100%;
  }
  .request-button {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .request-button:hover .request-button_point {
    color: #EF7A13;
  }
  .request-button:hover:after {
    height: 100%;
  }
}
/*-request*/
/*blocks*/
.blocks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  list-style: none;
  counter-reset: num;
}
.blocks-list li {
  position: relative;
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.blocks-list li h3 {
  padding-left: 40px;
  margin-bottom: 15px;
}
.blocks-list li:before {
  content: counter(num) "";
  counter-increment: num;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 30px;
  top: 30px;
  width: 26px;
  height: 26px;
  font-weight: 400;
  line-height: 16px;
  border-radius: 50%;
  color: #222222;
  border: 2px solid #222222;
}

.blocks-list.two {
  grid-template-columns: 1fr 1fr 1fr;
}

.blocks-button {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .blocks-list.two {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .blocks-list {
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }
  .blocks-list li {
    padding: 20px;
    border-radius: 8px;
  }
  .blocks-list li:before {
    left: 20px;
    top: 20px;
  }
  .blocks-list h3 {
    margin-bottom: 10px;
  }
  .blocks-list.two {
    grid-template-columns: 1fr;
  }
  .blocks-button {
    margin-top: 20px;
  }
}
/*-blocks*/
/*info*/
.info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.info-wrap .content {
  width: 600px;
}

.info-wrap.two {
  padding: 0px;
}
.info-wrap.two .content {
  padding: 30px 0px 30px 70px;
}

.info-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 500px;
}
.info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .info-wrap {
    padding: 30px;
  }
  .info-wrap .content {
    width: 350px;
  }
  .info-wrap.two {
    align-items: flex-end;
    padding: 0px;
  }
  .info-wrap.two .content {
    padding: 30px 0px 30px 30px;
  }
  .info-img {
    height: 250px;
    width: 350px;
  }
}
@media (max-width: 800px) {
  .info-wrap {
    display: block;
    padding: 20px;
    border-radius: 8px;
  }
  .info-wrap .content {
    width: 100%;
  }
  .info-wrap.two .content {
    padding: 20px;
  }
  .info-img {
    width: 100%;
    height: auto;
  }
  .info-button {
    margin-top: 20px;
  }
}
/*-info*/
/*gallery*/
.gallery .section-top {
  width: calc(100% - 80px);
}

.gallery-btn {
  margin: 30px auto 0px auto;
}

.gallery-slider {
  overflow: visible;
}

.gallery-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-auto-rows: 270px;
  opacity: 0 !important;
}
.gallery-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slide a:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 3;
}
.gallery-slide a:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 1;
}
.gallery-slide a:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

.gallery-slide.swiper-slide-active {
  opacity: 1 !important;
}

.gallery-nav {
  position: absolute;
  right: 0;
  top: -90px;
  display: flex;
  grid-gap: 40px;
}

@media (max-width: 1200px) {
  .gallery-slide {
    grid-auto-rows: 220px;
  }
}
@media (max-width: 800px) {
  .gallery-slide {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-auto-rows: 120px;
  }
  .gallery-slide a {
    border-radius: 8px;
  }
  .gallery-nav {
    top: -55px;
    grid-gap: 16px;
  }
}
/*-gallery*/
/*placing*/
.placing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 90px;
  grid-column-gap: 90px;
}

.placing-list li {
  position: relative;
  margin-bottom: 30px;
}
.placing-list li:last-child {
  margin-bottom: 0px;
}
.placing-list img {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
}
.placing-list p {
  color: #222222;
  padding-left: 45px;
  min-height: 35px;
}

@media (max-width: 1200px) {
  .placing-wrap {
    grid-row-gap: 50px;
    grid-column-gap: 50px;
  }
}
@media (max-width: 800px) {
  .placing-wrap {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
  }
  .placing-list img {
    top: 2px;
    width: 25px;
    height: 25px;
  }
  .placing-list p {
    padding-left: 40px;
    min-height: 30px;
  }
}
/*-placing*/
/*model*/
.model-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}

.model-img {
  position: relative;
  z-index: 1;
}
.model-img img {
  width: 100%;
  height: 570px;
}
.model-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: url("../icons/elements/oval.svg") center no-repeat;
  background-size: contain;
}

.model-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.model-text .content {
  margin-top: 20px;
}
.model-text .button-two {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .model-img img {
    width: 100%;
    height: 380px;
  }
  .model-img::after {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 800px) {
  .model-wrap {
    grid-template-columns: 1fr;
  }
  .model-img img {
    width: 100%;
    height: auto;
  }
  .model-img::after {
    width: 350px;
    height: 350px;
  }
}
/*-model*/
/*new*/
.new {
  padding-top: 60px;
}

.new-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.new-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
}
.new-banner img {
  width: 100%;
  height: auto;
}

.new-banner.hide {
  display: none;
}

.new-boxs {
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

.new-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 300px;
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.new-box img {
  width: 220px;
  min-width: 220px;
  height: auto;
  margin-left: 20px;
}

.new-title {
  font-size: 28px;
  line-height: 36px;
}

.new-descr {
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
}

.new-btn {
  height: 50px;
  margin-top: 30px;
}

.new-box:nth-child(2) {
  background: #222222;
}
.new-box:nth-child(2) .new-title {
  color: #FFFFFF;
}
.new-box:nth-child(2) .new-descr {
  color: rgba(255, 255, 255, 0.6);
}
.new-box:nth-child(2) img {
  margin-left: 0px;
  margin-right: 20px;
}

.new-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 30px;
}

.new-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #007CF4;
  height: 50px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.2s;
}
.new-link::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
.new-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #007CF4;
  transition: 0.4s;
}

@media (max-width: 1200px) {
  .new-boxs {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
}
@media (max-width: 800px) {
  .new {
    padding-top: 70px;
  }
  .new-banner {
    border-radius: 15px;
    margin-bottom: 30px;
  }
  .new-box {
    flex-direction: column;
    height: auto;
    padding: 30px;
    border-radius: 15px;
  }
  .new-box img {
    width: 100%;
    min-width: 100%;
    margin: 30px 0px 0px 0px;
  }
  .new-descr {
    margin-top: 15px;
  }
  .new-btn {
    width: 100%;
    margin-top: 25px;
  }
  .new-links {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .new-box:nth-child(2) img {
    margin: 0px 0px 30px 0px;
  }
}
@media (min-width: 1200px) {
  .new-link:hover {
    color: #FFFFFF;
  }
  .new-link:hover:after {
    height: 100%;
  }
}
/*-new*/
/*map*/
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(1.2);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(1.4);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(1.6);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
.map {
  padding-bottom: 50px;
}
.map .section-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.map h2 {
  text-align: center;
  max-width: 700px;
}
.map .container {
  position: relative;
}

.map-logo {
  position: absolute;
  left: 15px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-logo img {
  max-height: 80px;
}

.map-contain {
  height: auto;
  width: 800px;
  margin: auto;
}
.map-contain svg {
  width: 100%;
}

.map-point path {
  fill: #787878;
}

.map-circle {
  transform-origin: center center;
  transform-box: fill-box;
  animation: heartbeat 1.5s ease-in-out infinite both;
}
.map-circle circle:nth-child(1) {
  stroke: #FF7D0B;
}
.map-circle circle:nth-child(2) {
  fill: #FF7D0B;
}
.map-circle path:nth-child(1) {
  stroke: #FF7D0B;
}
.map-circle ellipse:nth-child(2) {
  fill: #FF7D0B;
}

.map-item {
  position: absolute;
  right: 15px;
  bottom: 100px;
  width: 300px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: none;
}

.map-title {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 20px;
  color: #FF7D0B;
  text-transform: uppercase;
}
.map-title svg {
  width: 20px;
  height: 20px;
  fill: #FF7D0B;
  margin-right: 8px;
}

.map-descr {
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: rgba(34, 34, 34, 0.7);
}

.map-item.active {
  display: block;
}

.map-point.active path {
  fill: #FF7D0B;
}
.map-point.active .map-circle {
  animation: none;
}
.map-point.active .map-circle circle:nth-child(1) {
  stroke: #FFFFFF;
}
.map-point.active .map-circle circle:nth-child(2) {
  fill: #FFFFFF;
}
.map-point.active .map-circle path:nth-child(1) {
  stroke: #FFFFFF;
}
.map-point.active .map-circle ellipse:nth-child(2) {
  fill: #FFFFFF;
}

.map-cont {
  display: none;
  margin-top: 16px;
}
.map-cont li {
  padding: 10px 0px;
  border-top: 1px solid rgba(34, 34, 34, 0.2);
}
.map-cont a {
  display: block;
  font-size: 14px;
  color: #222222;
  margin-bottom: 10px;
}
.map-cont a:last-child {
  margin-bottom: 0px;
}

#croatia .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#hungary .map-circle {
  animation-delay: 2s;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#moldova .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#serbia .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#ukraine .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#kosovo .map-circle {
  animation-delay: 2s;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#makedonia .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#albania .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#georgia .map-circle {
  animation-delay: 1.5s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#armenia .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#uzbekistan {
  position: absolute;
  z-index: 2;
}
#uzbekistan .map-circle {
  animation-delay: 2s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#kazahstan {
  position: relative;
  z-index: 1;
}
#kazahstan .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#tajikistan .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#kyrgyzstan .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#slovakia .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#poland .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#lithuania .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#latvia .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#belgium .map-circle {
  animation-delay: 2s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#morocco .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#germany .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#estonia .map-circle {
  animation-delay: 2s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#denmark .map-circle {
  animation-delay: 1s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

#france .map-circle {
  animation-delay: 3s;
  animation: heartbeat 1.5s ase-in-out infinite both;
}

.map-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 32px;
  grid-column-gap: 32px;
  margin-top: 24px;
}
.map-buttons a {
  width: 100%;
}

.map.two .map-buttons {
  display: none;
}

@media (max-width: 1200px) {
  .map-logo {
    position: static;
    width: fit-content;
    margin: auto;
    margin-bottom: 32px;
  }
  .map-wrap .container {
    display: flex;
    flex-direction: column;
  }
  .map-wrap .section-top {
    orphans: -2;
  }
  .map-wrap .map-buttons {
    grid-template-columns: 1fr;
    grid-row-gap: 16px;
    order: -1;
    margin-top: 0px;
    margin-bottom: 32px;
  }
  .map-contain {
    width: 100%;
  }
  .map-point path {
    fill: #FF7D0B;
  }
  .map-point path:nth-child(1) {
    stroke: #FF7D0B;
  }
  .map-point ellipse:nth-child(2) {
    fill: #FF7D0B;
  }
  .map-list {
    display: none;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    margin-top: 20px;
  }
  .map-item {
    position: static;
    display: block;
    width: 100%;
    padding: 10px;
  }
  .map-title {
    font-size: 14px;
    line-height: 18px;
  }
  .map-cont {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .map-cont a:hover {
    color: #FF7D0B;
  }
}
/*-map*/
/*contact*/
.contact {
  padding: 50px 0px;
}

.contact-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 48px;
  grid-column-gap: 48px;
}

.contact-box_title {
  display: block;
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-box_menu li {
  margin-bottom: 8px;
}
.contact-box_menu li:last-child {
  margin-bottom: 0px;
}
.contact-box_menu a {
  display: block;
  color: rgba(34, 34, 34, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.contact-form .request-input {
  width: 100%;
}
.contact-form .request-button {
  width: 100%;
}

@media (max-width: 1200px) {
  .contact-boxs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .contact-boxs {
    grid-template-columns: 1fr;
    grid-row-gap: 32px;
  }
  .contact-box:nth-child(4) {
    grid-row-start: 1;
  }
}
@media (min-width: 1200px) {
  .contact-box_menu a:hover {
    color: #FF7D0B;
  }
}
/*-contact*/
/*sta*/
.sta {
  padding: 120px 0px;
}

.sta-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 600px;
}

.sta-img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.sta-img::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: url("../icons/elements/360.svg") center no-repeat;
  background-size: contain;
}
.sta-img::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: url("../icons/elements/oval.svg") center no-repeat;
  background-size: contain;
}

.sta-img_hide {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 560px;
  width: 560px;
}

.sta-img.active .sta-img_hide {
  opacity: 0;
  pointer-events: none;
}
.sta-img.active .sta-img_box {
  opacity: 1;
  pointer-events: auto;
}

.sta-img_box {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 600px;
  height: 600px;
  overflow: hidden;
  cursor: move;
  pointer-events: none;
}
.sta-img_box img {
  width: 560px;
  height: 560px;
}

.sta-img_logo {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 80px;
  padding: 10px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: -2px 8px 50px 0px rgba(34, 34, 34, 0.1);
  width: 300px;
}
.sta-img_logo img {
  height: 70px;
}

.sta-text {
  width: 50%;
}

.sta-label {
  font-family: "Hisqaida 2018 Bold";
  color: rgba(34, 34, 34, 0.7);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.sta-title {
  margin-top: 30px;
}

.sta-btn {
  margin-top: 30px;
}

.sta-bottom {
  margin-top: 64px;
}

.sta-boxs {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 80px;
}

.sta-box_label {
  display: block;
  color: rgba(34, 34, 34, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.sta-box_num {
  display: block;
  color: #222;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .sta-wrap {
    min-height: fit-content;
  }
  .sta-img {
    position: relative;
  }
  .sta-img::after {
    display: none;
  }
  .sta-img_hide {
    width: 380px;
    height: 380px;
  }
  .sta-img_box {
    min-width: 380px;
    width: 380px;
    height: 380px;
  }
  .sta-img_box img {
    width: 100%;
    height: 100%;
  }
  .sta-img_logo {
    width: 250px;
  }
  .sta-img_logo img {
    height: 50px;
  }
  .sta-text {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .sta-top {
    order: 1;
  }
  .sta-bottom {
    display: flex;
    order: 2;
    margin-top: 50px;
  }
  .sta-btn {
    order: 3;
  }
  .sta-boxs {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    grid-gap: 50px;
  }
}
@media (max-width: 800px) {
  .sta {
    padding: 100px 0px 50px 0px;
  }
  .sta-img:before {
    display: none;
  }
  .sta-label {
    font-size: 12px;
  }
  .sta-title {
    margin-top: 20px;
  }
  .sta-btn {
    width: 100%;
  }
  .sta-img_hide {
    width: 300px;
    min-width: 300px;
    height: 300px;
  }
  .sta-img_box {
    min-width: 300px;
    width: 300px;
    height: 300px;
  }
  .sta-img_logo {
    display: flex;
    justify-content: flex-end;
    bottom: 25px;
    left: 0;
    width: 250px;
  }
  .sta-img_logo img {
    height: 50px;
  }
  .sta-bottom {
    position: relative;
    justify-content: space-between;
    margin: 30px auto 0px auto;
    width: 250px;
  }
  .sta-boxs {
    grid-gap: 16px;
    margin-top: 15px;
  }
  .sta-box_label {
    font-size: 12px;
  }
  .sta-box_num {
    font-size: 16px;
    margin-top: 0px;
  }
}
/*-sta*/
/*sav*/
.sav-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.sav-img {
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 700px;
}
.sav-img img:nth-child(1) {
  display: block;
}
.sav-img img {
  display: none;
  height: 550px;
}

.sav-boxs {
  width: 50%;
}

.sav-box {
  display: flex;
  align-items: center;
  width: 400px;
  height: 700px;
}
.sav-box h2 {
  color: #222;
  margin-bottom: 40px;
}
.sav-box p {
  color: rgba(34, 34, 34, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .sav-img {
    height: 600px;
  }
  .sav-img img {
    height: 450px;
  }
  .sav-box {
    height: 600px;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .sav-img {
    height: 350px;
  }
  .sav-img img {
    height: 270px;
  }
  .sav-box {
    height: 350px;
  }
  .sav-box h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .sav-box p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 30px;
  }
}
/*-sav*/
/*sef*/
.sef-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 40px;
  align-items: center;
}

.sef-content {
  grid-column-start: 1;
  grid-column-end: 6;
}

.sef-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column-start: 6;
  grid-column-end: 13;
}

@media (max-width: 1200px) {
  .sef-wrap {
    display: block;
  }
  .sef-img {
    justify-content: center;
    width: 100%;
    margin-top: 25px;
  }
  .sef-img img {
    width: 100%;
  }
}
/*-sef*/
/*pro*/
.pro-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 40px;
  align-items: center;
}

.pro-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column-start: 1;
  grid-column-end: 7;
}
.pro-img img {
  border-radius: 10px;
}

.pro-content {
  grid-column-start: 8;
  grid-column-end: 13;
}

@media (max-width: 1200px) {
  .pro-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 0;
  }
  .pro-img {
    order: 2;
    justify-content: center;
    width: 100%;
    margin-top: 25px;
  }
  .pro-img img {
    width: 100%;
  }
}
/*-pro*/
/*tem*/
.tem-title {
  margin-bottom: 50px;
}

.tem-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tem-text {
  grid-column-start: 1;
  grid-column-end: 3;
}

.tem-boxs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 100px;
  grid-row-gap: 50px;
  align-items: flex-start;
  counter-reset: item;
}

.tem-box {
  display: flex;
  align-items: center;
}

.tem-box:before {
  content: counters(item, "");
  counter-increment: item;
  width: 50px;
  color: #222;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.tem-last {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #EF7A13;
}

.tem-last_title {
  color: #EF7A13;
  font-size: 24px;
  font-weight: 400;
}

.tem-last_name {
  color: #EF7A13;
  margin-top: 20px;
}

.tem-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
}

@media (max-width: 1200px) {
  .tem-wrap {
    display: block;
  }
  .tem-img {
    display: none;
  }
}
@media (max-width: 800px) {
  .tem-title {
    margin-bottom: 25px;
  }
  .tem-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 40px;
  }
  .tem-box {
    align-items: flex-start;
  }
  .tem-box:before {
    width: 30px;
    font-size: 18px;
  }
  .tem-last_title {
    font-size: 20px;
  }
}
/*-tem*/
/*blo*/
.blo {
  overflow: hidden;
}

.blo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.blo-nav {
  display: flex;
  grid-gap: 40px;
}

.blo-slide {
  height: auto;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
}

.blo-slide_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.blo-slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blo-slide_text {
  position: relative;
  height: calc(100% - 210px);
  padding: 20px 20px 55px 20px;
}

.blo-slide_title {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 10px;
  transition: 0.1s;
}

.blo-slide_descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(34, 34, 34, 0.7);
  max-height: 48px;
  overflow: hidden;
  margin-top: 10px;
}

.blo-slide_link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #EF7A13;
  margin-top: 10px;
  transition: 0.1s;
}

.blo-slide_bottom {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blo-slide_author {
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  transition: 0.1s;
}

.blo-slide_date {
  color: rgba(34, 34, 34, 0.7);
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 800px) {
  .blo-top {
    margin-bottom: 25px;
  }
  .blo-nav {
    grid-gap: 16px;
  }
  .blo-slide_text {
    height: calc(100% - 180px);
    padding: 15px 15px 40px 15px;
  }
  .blo-slide_bottom {
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
  }
  .blo-slide_img {
    height: 180px;
  }
  .blo-slide_category {
    font-size: 14px;
  }
  .blo-slide_descr {
    font-size: 14px;
    line-height: 21px;
    max-height: 42px;
  }
  .blo-slide_link {
    font-size: 14px;
  }
  .blo-slide_author {
    font-size: 14px;
  }
  .blo-slide_date {
    font-size: 14px;
  }
  .blo-slide_title {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (min-width: 1200px) {
  .blo-slide_title:hover {
    color: #EF7A13;
  }
  .blo-slide_link:hover {
    color: #222;
  }
}
/*-blo*/
/*req*/
.req-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.req-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.req-input {
  display: block;
  width: 48%;
  margin-bottom: 30px;
}

.req-input_text {
  display: block;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
}

.req-input_point {
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 16px;
  color: #222222;
  border: 1px solid transparent;
  padding: 0px 20px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: 0.1s;
}

.req-input_point:focus {
  border: 1px solid #EF7A13;
}

.req-textarea {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.req-textarea_text {
  display: block;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
}

.req-textarea_point {
  width: 100%;
  height: 100px;
  font-size: 16px;
  line-height: 16px;
  color: #222222;
  border: 1px solid transparent;
  padding: 16px 20px;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: 0.1s;
}

.req-texarea_point:focus {
  border: 1px solid #EF7A13;
}

.req-contain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
  gap: 20px;
}
.req-contain .req-textarea {
  margin-bottom: 0px;
}

.req-button {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 48%;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.2s;
  cursor: pointer;
  margin-top: 30px;
}
.req-button::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #EF7A13;
}
.req-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #222222;
  transition: 0.4s;
}

.req-button_point {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  border: none;
  background: transparent;
}

.req-radios {
  margin-bottom: 30px;
}

.req-radio {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
}
.req-radio > span {
  position: relative;
}
.req-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  opacity: 0;
  cursor: pointer;
}
.req-radio .wpcf7-list-item-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 60px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding: 0px 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.req-radio input:checked + .wpcf7-list-item-label {
  color: #FFF;
  background: #EF7A13;
}

.req-map {
  width: 100%;
}

@media (max-width: 1200px) {
  .req-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
@media (max-width: 500px) {
  .req-input {
    width: 100%;
  }
  .req-button {
    width: 100%;
  }
  .req-contain {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1200px) {
  .req-button:hover .req-button_point {
    color: #EF7A13;
  }
  .req-button:hover:after {
    height: 100%;
  }
}
/*-req*/
/*det*/
.det {
  overflow: hidden;
}
.det .section-top {
  margin-bottom: 100px;
}
.det .section-top p {
  max-width: 600px;
}

.det-wrap {
  position: relative;
}

.det-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 570px;
}
.det-bg img {
  height: 100%;
  width: auto;
}

.det-slider {
  overflow: visible;
}

.det-slide {
  position: static;
  height: auto;
  width: 400px;
  overflow: visible;
  transition: 0.1s;
}

.det-img {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 570px;
  opacity: 0;
  transition: 0.1s;
  pointer-events: none;
}
.det-img img {
  height: 100%;
  width: auto;
}

.det-contain {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 16px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 20px 50px 0px rgba(17, 19, 24, 0.08);
  border: 1px solid #FFF;
}

.det-tabs {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  order: 2;
  margin-left: 10px;
}

.det-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  min-width: 90px;
  height: 90px;
  padding: 10px;
  border-radius: 10px;
  background: #FFF;
  border: 1px solid #FFF;
  box-shadow: 0px 4px 40px 0px rgba(34, 34, 34, 0.1);
  cursor: pointer;
}
.det-tab img {
  width: auto;
  height: auto;
  max-height: 100%;
}

.det-tab.active {
  border: 1px solid #EF7A13;
}

.det-box {
  display: none;
}

.det-box.active {
  display: block;
}

.det-top {
  display: flex;
  align-items: center;
}

.det-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.det-label {
  color: #EF7A13;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.det-title {
  color: rgba(34, 34, 34, 0.8);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 10px;
}

.det-descr {
  font-size: 14px;
  margin-top: 10px;
}

.det-nav {
  display: none;
}

@media (max-width: 1200px) {
  .det .section-top {
    margin-bottom: 25px;
  }
  .det-bg {
    display: none;
  }
  .det-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
  }
  .det-img {
    position: static;
    transform: translate(0);
    opacity: 1;
    height: 370px;
  }
  .det-contain {
    width: 100%;
    height: calc(100% - 370px);
    padding: 10px;
  }
  .det-tab {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }
  .det-label {
    font-size: 14px;
  }
  .det-nav {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    width: fit-content;
    margin: 20px auto 0px auto;
  }
}
@media (min-width: 1200px) {
  .det-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 20px;
  }
  .det-slide:hover .det-img {
    opacity: 1;
  }
  .det-slide:hover .det-contain {
    border: 1px solid #EF7A13;
  }
}
/*-det*/
/*support*/
.support {
 padding: 120px 0px;
}

.support-h {
 text-align: center;
 margin-bottom: 40px;
}

.support-boxs {
 display: grid;
 gap: 20px;
}

.support-box {
 padding: 20px;
 border-radius: 20px;
 background: #FFF;
 box-shadow: 0px 20px 50px 0px rgba(255, 125, 11, 0.1019607843);
}

.support-box_num {
 color: #FF7D0B;
 font-weight: 900;
 font-size: 64px;
 line-height: 100%;
 opacity: 0.7;
}

.support-box_h {
 font-weight: 700;
 font-size: 20px;
 line-height: 28px;
 margin-top: 20px;
}

.support-box_ul {
 display: grid;
 gap: 10px;
 margin-top: 30px;
}
.support-box_ul a {
 color: #222222;
 font-size: 16px;
 line-height: 20px;
 transition: 0.2s;
}
.support-box_ul svg {
 display: inline;
 min-width: 9px;
 fill: #FF7D0B;
 margin-left: 4px;
}

@media (max-width: 1200px) {
 .support-boxs {
   grid-template-columns: repeat(2, 1fr) !important;
 }
}
@media (max-width: 800px) {
 .support {
   padding: 100px 0px 50px 0px;
 }
 .support-h {
   margin-bottom: 30px;
 }
 .support-boxs {
   grid-template-columns: repeat(1, 1fr) !important;
 }
}
@media (min-width: 1200px) {
 .support-box_ul a:hover {
   color: #FF7D0B;
 }
}
/*-support*/
/*precept*/
.precept {
 padding: 120px 0px 120px 0px;
}

.precept-h {
 margin-bottom: 40px;
}

.precept-wrap {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
}

.precept-video {
 border-radius: 20px;
 height: 320px;
 width: 100%;
}

.precept-text {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}
.precept-text p:nth-child(1) {
 color: #222222;
 font-weight: 700;
 font-size: 22px;
 line-height: 20px;
}
.precept-text p:nth-child(2) {
 color: #222222;
 font-weight: 400;
 font-size: 16px;
 line-height: 20px;
}
.precept-text p:nth-child(2) strong {
 color: #FF7D0B;
}

@media (max-width: 1200px) {
 .precept-wrap {
   display: block;
 }
 .precept-video {
   height: 435px;
 }
 .precept-text {
   margin-top: 20px;
 }
 .precept-text p:nth-child(2) {
   margin-top: 10px;
 }
}
@media (max-width: 800px) {
 .precept {
   padding: 100px 0px 50px 0px;
 }
 .precept-h {
   margin-bottom: 30px;
 }
 .precept-video {
   height: 265px;
 }
 .precept-text p:nth-child(1) {
   font-size: 18px;
   line-height: 20px;
 }
 .precept-text p:nth-child(2) {
   font-size: 14px;
   line-height: 20px;
 }
}
@media (max-width: 500px) {
 .precept-video {
   height: 53vw;
 }
 /*-precept*/
}

/*workbook*/
.workbook {
 padding-bottom: 120px;
}

.workbook-ul {
 list-style: none;
 counter-reset: num;
 border-top: 1px solid #97B4C8;
}

.workbook-li {
 position: relative;
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
 align-items: flex-start;
 padding: 30px 50px 30px 50px;
 border-bottom: 1px solid #97B4C8;
 cursor: pointer;
}
.workbook-li::before {
 content: counter(num) "";
 counter-increment: num;
 position: absolute;
 left: 0px;
 top: 0px;
 display: flex;
 justify-content: center;
 align-items: center;
 top: 30px;
 width: 26px;
 height: 26px;
 border-radius: 50%;
 border: 1px solid #222222;
 font-weight: 500;
 font-size: 16px;
 color: #222222;
}

.workbook-h {
 color: #222222;
 font-weight: 500;
 font-size: 20px;
 line-height: 28px;
}

.workbook-content {
 display: none;
}

.workbook-arrow {
 position: absolute;
 right: 0;
 top: 40px;
 stroke: #222222;
 opacity: 0.7;
 transition: 0.2s;
}

.workbook-li:first-child .workbook-content {
 display: block;
}

.workbook-li.active::before {
 color: #FF7D0B;
 border: 1px solid #FF7D0B;
}
.workbook-li.active .workbook-arrow {
 stroke: #FF7D0B;
 opacity: 1;
 transform: rotate(180deg);
}
.workbook-li.active .workbook-h {
 color: #FF7D0B;
}

@media (max-width: 1200px) {
 .workbook-li {
   display: block;
   padding: 30px 0px;
 }
 .workbook-h {
   padding: 0px 50px;
 }
 .workbook-content {
   margin-top: 20px;
 }
}
@media (max-width: 800px) {
 .workbook {
  padding-bottom: 50px;
 }
 .workbook-li {
   padding: 20px 0px;
 }
 .workbook-li::before {
   top: 16px;
 }
 .workbook-arrow {
   top: 26px;
 }
 .workbook-h {
   font-size: 18px;
   line-height: 20px;
   padding: 0px 40px;
 }
}
/*-workbook*/
/*useful*/
.useful {
 padding-bottom: 120px;
}

.useful-h {
 margin-bottom: 40px;
}

.useful-boxs {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
}

.useful-box {
 display: flex;
 align-items: center;
 border-radius: 20px;
 background: rgba(151, 180, 200, 0.3019607843);
 border-radius: 20px;
 overflow: hidden;
}

.useful-box_img {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 200px;
 min-width: 200px;
 height: 200px;
 overflow: hidden;
 border-radius: 20px;
}
.useful-box_img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.useful-box_h {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 8px;
 width: 100%;
 font-weight: 500;
 font-size: 20px;
 line-height: 24px;
 color: #222222;
 padding: 20px;
 transition: 0.2s;
}
.useful-box_h svg {
 min-width: 10px;
 fill: #222222;
 transition: 0.2s;
}

.useful-labels {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-bottom: 20px;
}
.useful-labels span {
 display: flex;
 align-items: center;
 gap: 8px;
 font-weight: 500;
 font-size: 22px;
 line-height: 20px;
}
.useful-labels span:first-child {
 color: rgba(34, 34, 34, 0.5);
}
.useful-labels span:first-child svg {
 fill: rgba(34, 34, 34, 0.5);
}

@media (max-width: 1200px) {
 .useful-box_img {
   width: 140px;
   min-width: 140px;
   height: 140px;
 }
}
@media (max-width: 800px) {
 .useful {
   padding-bottom: 50px;
 }
 .useful-h {
   margin-bottom: 30px;
 }
 .useful-labels span {
   font-size: 12px;
   line-height: 20px;
 }
 .useful-labels svg {
   width: 16px;
   height: 16px;
 }
 .useful-boxs {
   gap: 10px;
 }
 .useful-box {
   flex-direction: column;
 }
 .useful-box_img {
   width: 100%;
   min-width: 100%;
   height: 120px;
 }
 .useful-box_h {
   display: flex;
   align-items: flex-end;
   padding: 16px;
   font-size: 14px;
   line-height: 18px;
   min-height: 120px;
 }
}
@media (min-width: 1200px) {
 .useful-box:hover .useful-box_h {
   color: #FF7D0B;
 }
 .useful-box:hover .useful-box_h svg {
   fill: #FF7D0B;
 }
}
/*-useful*/