/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
/*fonts*/
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/draftspot_theme/assets/fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/draftspot_theme/assets/fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: medium;
}

@font-face {
    font-family: "Roboto";
    src: url("/wp-content/themes/draftspot_theme/assets/fonts/Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("/wp-content/themes/draftspot_theme/assets/fonts/Roboto-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: medium;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Roboto";
  font-weight: normal;
  line-height: 1.6;
  color: #222222;
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: #E5E5E5;
}

main {
  width: 100%;
  overflow-x: hidden;
}

/*texts*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1em;
}

h1 {
  font-size: 3.625em;
  margin-bottom: 41px;
  color: white;
}

h2 {
  font-size: 3.5em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.875em;
  margin-bottom: 24px;
  color: #222222;
}

h4 {
  font-size: 1.5em;
  margin-bottom: 1em;
}

h5 {
  font-size: 1.2em;
  margin-bottom: 1em;
}

h6 {
  font-size: 1rem;
  margin-bottom: 1em;
}

/**/
.big_tit {
  font-size: 5.375em;
  line-height: 0.9;
}

.line_tit {
  font-size: 1.375em;
  font-family: "Roboto";
}

p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 1em;
  letter-spacing: -0.011em;
  color: #222222;
}

.p_mid {
  font-size: 1.125em;
}

.p_big {
  font-size: 1.375em;
}

img {
  vertical-align: middle;
}

/*btns*/
a {
  color: inherit;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: #bb0011;
  text-decoration: underline;
}

a,
.btn,
.btn_outline, button, input {
  cursor: pointer;
  font-size: inherit;
}

button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background: #bb0011;
  padding: 20px 48px;
}

button:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}


.btn,
.btn_outline {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background: #bb0011;
  padding: 20px 48px;
  font-size: 1em;
}

.btn:hover, .btn_outline:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}

.btn_outline {
  background-color: transparent;
  color: white;
  border: 1px solid #FFFFFF;
  font-size: 1em;
  padding: 20px 58px;
  border-radius: 50px;
}

.btn_outline:hover {
  background: #262626;
  color: white;
  text-decoration: none;
}

.btn_big, .btn_big_outline {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background: #bb0011;
  padding: 20px 48px;
  font-size: 1.125em;
}

.btn_big:hover, .btn_big_outline:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}

.btn_big_outline {
  background-color: transparent;
  color: white;
  border: 1px solid #FFFFFF;
  font-size: 1em;
  padding: 20px 58px;
  border-radius: 50px;
}

.btn_big_outline:hover {
  background: #262626;
  color: white;
  text-decoration: none;
}

.btn_small, .btn_small_outline {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background: #bb0011;
  padding: 20px 48px;
  font-size: 0.938em;
  padding: 0.7em 1em;
}

.btn_small:hover, .btn_small_outline:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}

.btn_small_outline {
  background-color: transparent;
  color: white;
  border: 1px solid #FFFFFF;
  font-size: 1em;
  padding: 20px 58px;
  border-radius: 50px;
}

.btn_small_outline:hover {
  background: #262626;
  color: white;
  text-decoration: none;
}

.btn_round {
  background: #B01E24;
  color: white;
  font-size: 1em;
  padding: 24px 58px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #B01E24;
}

.btn_round:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border: 1px solid #262626;
}

.btn_arrow {
  font-size: 1.125em;
  line-height: 1;
  color: white;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  color: #bb0011;
}

.btn_arrow::after {
  content: "";
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/chevron2.svg");
  background-repeat: no-repeat;
  background-size: 1.5em;
  background-position: center;
  vertical-align: middle;
  margin-left: 0.6em;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  -webkit-filter: hue-rotate(141deg) saturate(27);
          filter: hue-rotate(141deg) saturate(27);
}

.btn_arrow:hover {
  text-decoration: underline;
  color: #222222;
}

.btn_arrow:hover::after {
  -webkit-transform: translateX(0.3em);
          transform: translateX(0.3em);
}

.btn_cancel, .btn_x_close {
  width: 2em;
  height: 2em;
  padding: 0;
  background: unset;
  background-image: url(/wp-content/themes/draftspot_theme/assets/img/cancel_btn.svg);
  background-repeat: no-repeat;
  background-size: 1.25em;
  background-position: center;
  background-color: transparent;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 0;
  border-radius: 5px;
}

.btn_cancel:hover, .btn_x_close:hover {
  background-color: #f3f3f3;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/cancel_btn.svg");
  background-repeat: no-repeat;
  background-size: 1.25em;
  background-position: center;
}

.btn_x_close {
  width: 2em;
  height: 2em;
  background-image: url(/wp-content/themes/draftspot_theme/assets/img/close.svg);
  background-size: 1.8em;
}

.btn_x_close:hover {
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/close.svg");
  background-size: 1.8em;
}

/*forms*/
label input {
  margin-top: 0.3em;
}

input, select, textarea, button {
  font-family: "Roboto";
}

input[type="button"], input[type="submit"] {
  border: inherit;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="search"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="url"], input[type="datetime-local"], input[type="file"], select {
  padding: 0.8em 1em;
  font-size: 1em;
  line-height: 1;
  color: #222222;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  height: 46px;
  background: white;
  cursor: initial !important;
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, input[type="month"]::-webkit-input-placeholder, input[type="time"]::-webkit-input-placeholder, input[type="week"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="datetime-local"]::-webkit-input-placeholder, input[type="file"]::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #afafaf;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, input[type="month"]:-ms-input-placeholder, input[type="time"]:-ms-input-placeholder, input[type="week"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="datetime-local"]:-ms-input-placeholder, input[type="file"]:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #afafaf;
}

input[type="text"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, input[type="tel"]::-ms-input-placeholder, input[type="number"]::-ms-input-placeholder, input[type="password"]::-ms-input-placeholder, input[type="search"]::-ms-input-placeholder, input[type="date"]::-ms-input-placeholder, input[type="month"]::-ms-input-placeholder, input[type="time"]::-ms-input-placeholder, input[type="week"]::-ms-input-placeholder, input[type="url"]::-ms-input-placeholder, input[type="datetime-local"]::-ms-input-placeholder, input[type="file"]::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #afafaf;
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder, input[type="number"]::placeholder, input[type="password"]::placeholder, input[type="search"]::placeholder, input[type="date"]::placeholder, input[type="month"]::placeholder, input[type="time"]::placeholder, input[type="week"]::placeholder, input[type="url"]::placeholder, input[type="datetime-local"]::placeholder, input[type="file"]::placeholder, select::placeholder {
  color: #afafaf;
}

.input_big {
  height: 2.95em;
  font-size: 1.125em;
}

input[type="submit"], input[type="reset"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background: #bb0011;
  padding: 20px 48px;
}

input[type="submit"]:hover, input[type="reset"]:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}

textarea {
  padding: 0.7em 1em;
  font-size: 1em;
  line-height: 1;
  color: #222222;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  height: 129px;
  background: white;
  cursor: initial !important;
}

textarea::-webkit-input-placeholder {
  color: #afafaf;
}

textarea:-ms-input-placeholder {
  color: #afafaf;
}

textarea::-ms-input-placeholder {
  color: #afafaf;
}

textarea::placeholder {
  color: #afafaf;
}

select option {
  padding: 0.2em 1em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

select option:hover {
  background: #f3f3f3;
}

select::-webkit-input-placeholder {
  color: #79797a;
}

select:-ms-input-placeholder {
  color: #79797a;
}

select::-ms-input-placeholder {
  color: #79797a;
}

select::placeholder {
  color: #79797a;
}

input[type="file"] {
  background: #f3f3f3;
  padding: 0;
  padding-right: 1em;
  position: relative;
}

input[type="file"]::file-selector-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background: #bb0011;
  padding: 20px 48px;
  padding: 0.7em 1.5em;
  height: 100%;
}

input[type="file"]::file-selector-button:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}

/*line*/
hr {
  display: block;
  height: 1px;
  border: 0;
  padding: 0;
  border-top: 1px solid #f3f3f3;
}

/*table*/
table {
  border-collapse: collapse;
}

/*quantity spinner*/
.quantity_spinner {
  width: 8em;
  height: 2.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 1em;
  background: #E5E5E5;
}

.quantity_spinner .quantity_spinner_minus, .quantity_spinner .quantity_spinner_plus {
  min-width: 1.7em;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/minus.svg");
  background-size: 0.82em;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 5px;
  border: 0.85811px solid rgba(94, 94, 94, 0.33);
}

.quantity_spinner .quantity_spinner_minus:hover, .quantity_spinner .quantity_spinner_plus:hover {
  background-color: #bb0011;
}

.quantity_spinner .quantity_spinner_plus {
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/plus.svg");
}

.quantity_spinner .quantity_spinner_input {
  min-width: 1.7em;
  width: 100%;
  height: 100%;
  padding: 0.1em;
  text-align: center;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  background: white;
  margin-right: 3px;
  margin-left: 3px;
  border: 0.85811px solid rgba(94, 94, 94, 0.33);
  border-radius: 5px;
  background: #E5E5E5;
}

.quantity_spinner .quantity_spinner_input::-webkit-outer-spin-button, .quantity_spinner .quantity_spinner_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

/*
input[type=checkbox] {

}
input[type=radio] {

}
input[type=color] {

}
input[type=file] {

}
input[type=image] {

}

*/
/*utilities*/
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-none {
  display: none !important;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1310px;
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666667%;
          flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.333333%;
          flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666667%;
          flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.666667%;
          flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333333%;
          flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.666667%;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.333333%;
          flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.666667%;
          flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.bi {
  fill: currentColor;
}

abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

.text-uppercase {
  text-transform: uppercase;
}
/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
/*header - page top margin fix*/
main {
  padding-top: 68px;
}

#masthead {
  position: fixed;
  z-index: 999;
  background: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 81px;
}

#masthead .container-fluid {
  max-width: 1310px;
}

#masthead .row {
  padding-top: 9px;
}

#masthead .ds_wrapper_menu_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 68px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#masthead .ds_wrapper_menu_main .navbar-brand {
  padding: 0.5em 0;
  max-width: 194px;
  width: 100%;
  margin-right: 87px;
}

#masthead .ds_wrapper_menu_main .navbar #nav-icon3 {
  display: none;
}

#masthead .ds_wrapper_menu_main .navbar #main-nav {
  height: 100%;
}

#masthead .ds_wrapper_menu_main .navbar #main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: auto;
  list-style: none;
  height: 100%;
}

#masthead .ds_wrapper_menu_main .navbar #main-nav ul li {
  margin-right: 112px;
}

#masthead .ds_wrapper_menu_main .navbar #main-nav ul li:last-of-type {
  margin-right: 0;
}

#masthead .ds_wrapper_menu_main .navbar #main-nav ul li a {
  font-size: 1em;
  text-decoration: none;
  color: black;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#masthead .ds_wrapper_menu_main .navbar #main-nav ul li a:hover {
  color: #bb0011;
}

.home #masthead:not(.smallHeader) .ds_wrapper_menu_main {
  border-color: transparent;
}

.home #masthead:not(.smallHeader) .ds_wrapper_menu_main .navbar-brand a svg path {
  fill: white;
}

.home #masthead:not(.smallHeader) .ds_wrapper_menu_main .header_icons .openSearch svg {
  fill: white;
}

.home #masthead:not(.smallHeader) .ds_wrapper_menu_main .header_icons .openSearch:hover {
  background: #222222;
}

.home #masthead:not(.smallHeader) .ds_wrapper_menu_main .header_icons .openCart .cart-sum {
  color: white;
}

#masthead.smallHeader {
  background: white;
}

#masthead.smallHeader .ds_wrapper_menu_main .navbar-brand a {
  max-width: 40px;
}

/*-------------search bar -------------------*/
.ds_search_wrapper {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1em 2em;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  background: white;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.14);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.ds_search_wrapper.active, .accordion_wrapper .accordion_item .ds_search_wrapper.accordion_header:hover {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 1;
  pointer-events: auto;
}

.ds_search_wrapper .search_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.ds_search_wrapper .search_line .ds_search_input {
  width: 100%;
}

.ds_search_wrapper .search_line .ds_search_clear {
  z-index: 9;
  position: absolute;
  top: 0.4em;
  right: 8.7em;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  font-size: 1em;
  background-size: 1.45em;
}

.ds_search_wrapper .search_line .ds_search_btn {
  margin-left: 0.2em;
}

.ds_search_wrapper .search_recomended {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.125;
  margin-top: 0.5em;
}

.ds_search_wrapper .search_recomended .search_recomended_placeholder {
  margin-right: 1em;
}

.ds_search_wrapper .search_recomended .search_recomended_txt_wrap .search_recomended_txt {
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-right: 1em;
}

.ds_search_wrapper .search_recomended .search_recomended_txt_wrap .search_recomended_txt:hover {
  color: #bb0011;
}

.ds_search_wrapper .ds_search_close {
  position: absolute;
  right: 2em;
  top: 1em;
  text-decoration: underline;
  background: transparent;
  padding: 0.85em 0.5em;
  color: #bb0011;
  border-color: transparent;
}

.ds_search_wrapper .ds_search_close:hover {
  background: #f3f3f3;
  border-color: #f3f3f3;
}

/*----------burger menu------------*/
@media only screen and (max-width: 991px) {
  header .ds_wrapper_menu_main .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  header .ds_wrapper_menu_main .navbar #main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white;
    top: 0;
    right: 0;
    z-index: 99;
    text-align: center;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.5s cubic-bezier(0.86, -0.01, 0.15, 1.04);
    transition: 0.5s cubic-bezier(0.86, -0.01, 0.15, 1.04);
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    width: 80%;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li {
    margin: 0 !important;
    width: 100%;
    border-top: 1px solid #EDEDED;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li:last-child {
    border-bottom: 1px solid #EDEDED;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li a {
    width: 100%;
    padding: 0.4em 0.1em;
    border: 0 !important;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-transform: unset;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li a:after {
    content: "";
    width: 1.4em;
    height: 1.4em;
    background-image: url("/wp-content/themes/draftspot_theme/assets/img/chevron2.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li a:hover {
    background-color: #f5f5f5;
  }
  header .ds_wrapper_menu_main .navbar #main-nav.menuOpen {
    -webkit-transform: translateX(0%) !important;
            transform: translateX(0%) !important;
  }
  .navbar-toggler {
    height: 28px;
    width: 40px;
    position: relative;
    z-index: 99999;
    display: block !important;
    margin: auto;
    padding: 0;
    background: transparent !important;
    border: 0;
  }
  .navbar-toggler span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #222222;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .navbar-toggler span:nth-child(1) {
    top: 0px;
  }
  .navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3) {
    top: 12px;
  }
  .navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3) {
    top: 12px;
  }
  .navbar-toggler span:nth-child(4) {
    top: 24px;
  }
  #nav-icon3 span {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #nav-icon3.open span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
  }
  #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.megaMenu {
  background: white;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  padding: 1em;
}

.megaMenu .mm_title {
  margin-bottom: 0.5em;
}

.megaMenu .mm_cathegories .row {
  margin-right: -8px;
  margin-left: -8px;
}

.megaMenu .mm_cathegories .row .col {
  padding-left: 8px;
  padding-right: 8px;
}

.megaMenu .mm_cathegories .cathegory_box {
  text-decoration: none;
  cursor: pointer;
}

.megaMenu .mm_cathegories .cathegory_box .cathegory_box_img_wrap {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 5px;
  padding: 0;
  height: 6.5em;
  margin-bottom: 0.7em;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.megaMenu .mm_cathegories .cathegory_box .cathegory_box_img_wrap .cathegory_box_img {
  width: auto;
  height: 100%;
}

.megaMenu .mm_cathegories .cathegory_box:hover .cathegory_box_img_wrap, .megaMenu .mm_cathegories .cathegory_box.active .cathegory_box_img_wrap, .megaMenu .mm_cathegories .accordion_wrapper .accordion_item .cathegory_box.accordion_header:hover .cathegory_box_img_wrap, .accordion_wrapper .accordion_item .megaMenu .mm_cathegories .cathegory_box.accordion_header:hover .cathegory_box_img_wrap {
  background-color: #222222;
}

.megaMenu .mm_trending .trending_prods hr:last-of-type {
  display: none;
}

.megaMenu .mm_trending .trending_prods hr:first-of-type {
  display: inherit;
}

.megaMenu .mm_trending hr {
  margin: 8px 0;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
footer {
  background: #222222;
  padding-top: 140px;
  padding-bottom: 6px;
  color: white;
}

footer .ds_footer_wrapper .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .ds_footer_wrapper .ds_footer_col {
  margin-bottom: 1em;
  position: relative;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_col_title {
  font-size: 1.125em;
  margin-bottom: 24px;
  font-weight: bold;
  color: white;
}

footer .ds_footer_wrapper .ds_footer_col .ds_logo_title p {
  color: white;
  max-width: 282px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_logo_title a img {
  margin-left: -14px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_menu_wrapper ul {
  list-style: none;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_menu_wrapper ul li {
  margin-bottom: 18px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_menu_wrapper ul li a {
  text-decoration: none;
  font-size: 1.125em;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_menu_wrapper ul li a:hover {
  text-decoration: underline;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts .ds_title_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts .ds_title_content .ds_pack_adress h5 {
  margin-bottom: 2px;
  font-weight: 500;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts .ds_title_content .ds_pack_adress p {
  color: white;
  margin-bottom: 0;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts .ds_title_content .ds_pack_adress .footer-adress-campus-info {
  opacity: 0.4;
  font-size: 0.9em;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts .ds_title_content .ds_footer_adrees img {
  margin-right: 18px;
  margin-top: 13px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts a {
  margin-bottom: 1em;
  text-decoration: none;
  font-size: 1.125em;
  margin-bottom: 20px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts a:hover {
  text-decoration: underline;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_contacts a span img {
  margin-right: 18px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_socials {
  margin-top: auto;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2em;
  width: 2em;
  text-decoration: none;
  background: transparent;
  border-radius: 5px;
  margin-right: 28px;
}

footer .ds_footer_wrapper .ds_footer_col .ds_footer_socials a img {
  width: 26px;
  height: 26px;
}

footer .ds_footer_bottom_line {
  font-size: 1.125em;
  border-top: 1px solid rgba(214, 214, 214, 0.2);
  padding-top: 6px;
  margin-top: 42px;
}

footer .ds_footer_bottom_line .ds_footer_bottom_line_pack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .ds_footer_bottom_line .ds_footer_bottom_line_pack .ds_footer_copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .ds_footer_bottom_line .ds_footer_bottom_line_pack .ds_footer_copyright figure {
  margin-right: 0.5em;
}

footer .ds_footer_bottom_line .ds_footer_bottom_line_pack .ds_footer_copyright span {
  font-size: 0.875em;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #3c3c3c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 0.5em;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #222222;
}

.swiper-button-next, .swiper-button-prev {
  background: transparent;
  color: #222222;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-weight: 800;
  font-size: 1.7em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-left: 0.3em;
  margin-top: 0;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.swiper-button-prev::after {
  margin-left: -0.1em;
}

.swiper-nav-fix {
  overflow: hidden;
  margin-left: -3.5em;
  margin-right: -3.5em;
  position: relative;
}

.swiper-nav-fix .swiper-container {
  overflow: visible;
  padding: 2em 3.5em;
}

.swiper-nav-fix .swiper-pagination {
  bottom: 2px;
}

.swiper-nav-wrapper {
  position: relative;
}

.swiper-nav-wrapper .swiper-container {
  overflow: hidden;
}

.swiper-nav-wrapper .swiper-button-next, .swiper-nav-wrapper .swiper-button-prev {
  right: -50px;
}

.swiper-nav-wrapper .swiper-button-prev {
  left: -50px;
}

.accordion_wrapper .accordion_item .accordion_header {
  font-size: 1.125em;
  background: white;
  border: 0;
  border-top: 1px solid #cfcfcf;
  padding: 1.2em 0em;
  position: relative;
  color: #222222;
  outline: none;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.accordion_wrapper .accordion_item .accordion_header::after {
  content: "";
  width: 2em;
  height: 2em;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/chevron2.svg");
  background-size: 2em;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion_wrapper .accordion_item .accordion_header.active, .accordion_wrapper .accordion_item .accordion_header:hover {
  background-color: transparent;
}

.accordion_wrapper .accordion_item .accordion_header.active::after, .accordion_wrapper .accordion_item .accordion_header:hover::after {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.accordion_wrapper .accordion_item .accordion_header:hover {
  background-color: #f3f3f3;
}

.accordion_wrapper .accordion_item .accordion_body {
  padding: 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.accordion_wrapper .accordion_item .accordion_body p {
  margin-bottom: 1.4em;
}

.accordion_wrapper .accordion_item:last-child {
  border-bottom: 1px solid #cfcfcf;
}

.prod_post_order_modal {
  background: rgba(0, 0, 0, 0.84);
  position: fixed;
  top: 0;
  z-index: 99999999;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.prod_post_order_modal .modal_body {
  padding: 2em;
  background: white;
  border-radius: 5px;
  position: relative;
  max-width: 580px;
  width: 100%;
}

.prod_post_order_modal .modal_body .modal_title {
  margin-top: 0.5em;
  margin-bottom: 1em;
  font-size: 2.2em;
}

.prod_post_order_modal .modal_body .btn_x_close {
  position: absolute;
  top: 2em;
  right: 2em;
}

.prod_post_order_modal .ds_prod_name input {
  background: #cfcfcf;
  pointer-events: none;
}

.wpcf7-form .wpcf7-form-control-wrap input, .wpcf7-form .wpcf7-form-control-wrap textarea {
  width: 100%;
}

.wpcf7-form .req-input {
  color: #bb0011;
}

.wpcf7-form .wpcf7-submit {
  float: right;
  margin-top: 0.5em;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.newsletter {
  color: white;
  margin-top: 5em;
  position: relative;
  max-width: 1057px;
  margin-bottom: -65px;
}

.newsletter .ds_title_new h3 {
  font-weight: bold;
  margin-bottom: 2px;
}

.newsletter .ds_title_new p {
  margin-bottom: 0px;
}

.newsletter .ds_pack_new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsletter .newsletter_card {
  border-radius: 5px;
  padding: 0.9em 7em 1.6em;
  background: white;
}

.newsletter .newsletter_card .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newsletter .newsletter_card .wpcf7 form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.newsletter .newsletter_card .wpcf7 form p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.newsletter .newsletter_card .wpcf7 form p:first-of-type {
  width: 60%;
}

.newsletter .newsletter_card .wpcf7 form p:last-of-type {
  width: 40%;
}

.newsletter .newsletter_card .wpcf7 form p label {
  font-size: 1.125em;
}

.newsletter .newsletter_card .wpcf7 form p .wpcf7-email {
  margin-top: 0.1em;
  border-color: white;
  margin-right: 0.3em;
  width: 100%;
  height: 73px !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.newsletter .newsletter_card .wpcf7 form p .wpcf7-submit {
  background: #BB0011;
  border: 1px solid #f15b3d;
  margin-left: -1px;
  margin-top: 25px;
  padding: 27px 20px;
  border-radius: 0px 50px 50px 0px;
  color: white;
  text-align: center;
  width: 100%;
}

.newsletter .newsletter_card .wpcf7 form p .wpcf7-submit:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}

.newsletter .newsletter_card .wpcf7 form p .wpcf7-spinner {
  position: absolute;
  right: 2em;
  bottom: 0.2em;
}

.newsletter .newsletter_card .wpcf7 form p .ajax-loader {
  position: absolute;
  right: 2em;
  bottom: 0.2em;
}

.newsletter .newsletter_card .wpcf7 form p .wpcf7-not-valid-tip {
  position: absolute;
}

.newsletter .newsletter_card .wpcf7 form .wpcf7-response-output {
  width: 100%;
  color: #222222;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.star_rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.star_rating .star {
  width: 1.2em;
  height: 1.2em;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/star.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
}

.star_rating .star.outline {
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/star-outline.svg");
}

.ds_review_card_wrapper {
  padding: 6em 5em 5em;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/rev-bg.svg");
  background-size: cover;
  background-color: #ffdd19;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.ds_review_card_wrapper::after {
  content: "";
  display: block;
  width: 4em;
  height: 4em;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/quote.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 2.5em;
  right: 2.8em;
}

.ds_review_card_wrapper .ds_review_card .star_rating {
  margin-bottom: 1em;
}

.ds_review_card_wrapper .ds_review_card .ds_review_card_text {
  margin-bottom: 1.3em;
  font-size: 1.375em;
}

.ds_review_card_wrapper .ds_review_card .ds_review_card_name {
  font-size: 1.125em;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.tabs_header {
  border-bottom: 1px solid #cfcfcf;
}

.tabs_header .tabs_header_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -4px;
  margin-left: -4px;
}

.tabs_header .tabs_header_row .tab_button {
  padding: 0.85em 2.5em;
  line-height: 1;
  border-radius: 5px 5px 2px 2px;
  background-color: transparent;
  color: #222222;
  border: 0;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  margin-right: 4px;
  margin-left: 4px;
}

.tabs_header .tabs_header_row .tab_button.active, .tabs_header .tabs_header_row .accordion_wrapper .accordion_item .tab_button.accordion_header:hover, .accordion_wrapper .accordion_item .tabs_header .tabs_header_row .tab_button.accordion_header:hover {
  background-color: #222222;
  color: white;
}

.tabs_header .tabs_header_row .tab_button:hover {
  color: white;
  text-decoration: none;
  background: #262626;
  border-color: #262626;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.ds_shop_breadcrumbs_wrapper {
  margin-top: 0.5em;
}

.ds_shop_breadcrumbs_wrapper .breadcrumb {
  color: #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ds_shop_breadcrumbs_wrapper .breadcrumb a {
  margin-right: 0.3em;
  text-decoration: none;
}

.ds_shop_breadcrumbs_wrapper .breadcrumb a:first-child {
  width: 1.4em;
  height: 1.4em;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/Home.svg");
  background-position: center;
  background-size: 1em;
  background-repeat: no-repeat;
  display: inline-block;
  color: transparent;
}

.ds_shop_breadcrumbs_wrapper .breadcrumb .breadcrumb_arrow {
  width: 1.4em;
  height: 1.4em;
  background-image: url("/wp-content/themes/draftspot_theme/assets/img/chevron2.svg");
  background-position: center;
  background-size: 1.3em;
  background-repeat: no-repeat;
  display: inline-block;
  opacity: 0.3;
  margin-right: 0.3em;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.noUi-target {
  background: #dedede;
  border-radius: 4px;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 3px;
  margin: 1.8em 0.9em 1.3em;
}

.noUi-target .noUi-base .noUi-origin .noUi-handle {
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #79797a;
  right: -0.9em;
  top: -0.9em;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  cursor: -webkit-grab;
  cursor: grab;
}

.noUi-target .noUi-base .noUi-origin .noUi-handle:hover {
  background: #222222;
  border: 1px solid #222222;
}

.noUi-target .noUi-base .noUi-origin .noUi-handle::before {
  display: none;
}

.noUi-target .noUi-base .noUi-origin .noUi-handle::after {
  display: none;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
/*insert parent selector to add custom checkbox funcionality*/
/*html like:
parent
    input
    label
*/
.ds_custom_check, .comment-form-cookies-consent {
  position: relative;
}

.ds_custom_check label, .comment-form-cookies-consent label {
  padding-left: 2em;
  margin-bottom: 1em;
  display: inline-block;
  cursor: pointer;
}

.ds_custom_check input[type="checkbox"], .comment-form-cookies-consent input[type="checkbox"] {
  position: absolute;
  top: 0.06em;
  left: 0;
}

/*insert selector to label add custom checkbox funcionality*/
/*html like:
    label
        input
*/
.ds_custom_check_lab, .woocommerce-form__label {
  cursor: pointer;
}

input[type="checkbox"] {
  position: relative;
  width: 0;
  height: 0;
  top: -1.1em;
  margin-right: 1.9em;
  margin-top: 0em;
}

input[type="checkbox"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #222222;
  border-radius: 0.25em;
  background: #f3f3f3;
  -webkit-transition: background 200ms ease-out;
  transition: background 200ms ease-out;
}

input[type="checkbox"]:after {
  content: "";
  display: block;
  position: absolute;
  left: 0.4em;
  top: 0.2em;
  width: 0.4em;
  height: 0.6em;
  opacity: 0.2;
  border-bottom: 3px solid #222222;
  border-right: 3px solid #222222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

input[type="checkbox"]:checked:before {
  content: "";
  background: #222222;
}

input[type="checkbox"]:checked:after {
  content: "";
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

/*-------------------radio*/
/*insert parent selector to add custom radio funcionality*/
/*html like:
parent
    input
    label
*/
.ds_custom_radio label, .wc_payment_method label {
  cursor: pointer;
}

/*insert selector to label add custom radio funcionality*/
/*html like:
    label
        input
*/
.ds_custom_radio_lab {
  cursor: pointer;
}

input[type="radio"] {
  position: relative;
  width: 0;
  height: 0;
  top: -0.9em;
  margin-right: 1.3em;
  margin-top: 0em;
}

input[type="radio"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  border: 1px solid #222222;
  border-radius: 50%;
  background: #f3f3f3;
  -webkit-transition: background 200ms ease-out;
  transition: background 200ms ease-out;
}

input[type="radio"]:after {
  content: "";
  display: block;
  position: absolute;
  left: 0.258em;
  top: 0.255em;
  width: 0.4em;
  height: 0.4em;
  background: #222222;
  opacity: 0.2;
  border-radius: 50%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

input[type="radio"]:checked:before {
  content: "";
  background: #222222;
}

input[type="radio"]:checked:after {
  content: "";
  opacity: 1;
  background: #fff;
}

/*---------custom-----inputs-------------------------*/
/*
.radios, .checkboxes {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    //margin-bottom: 1rem;
}

@mixin vh() {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

@mixin ds_customInput_label {
    cursor: pointer;
    font-size: 1rem;
    line-height: 1rem;
}


.ds_custom_check { 
    label {
       @include ds_customInput_label;

       position: relative;
       padding: 0.1rem 0 0 2rem;
       margin-bottom: 1rem;
       user-select: none;
       display: inline-block;
       line-height: 1.2;

       &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 1.2em;
            height: 1.2em;
            border: 1px solid $checkbox-border;
            border-radius: 0.25rem;
            background: $checkbox-background;
            text-align: center;
            transition: background 200ms ease-out;
        }
        &:after {
            content: "";
            position: absolute;
            transform: scale(0);
            transition: transform 200ms ease-out;

            background-color: transparent;
            content: "";
            display: block;
            position: absolute;
         
            left: 0.4em;
            top: 0.2em;
            width: 0.4em;
            height: 0.6em;

            opacity: 0.2;
            border-bottom: 3px solid $checkbox-border;
            border-right: 3px solid $checkbox-border;
            transform: rotate(45deg);
            transition: border-color 0.3s ease;
        }
    }

    input[type="checkbox"] {
        &:checked {
            + label {
                &:before {
                    content: "";
                    background: $checkbox-background-checked;
                }
    
                &:after {
                    content: "";
                    opacity: 1;
                    border-bottom: 3px solid $checkbox-checked;
                    border-right: 3px solid $checkbox-checked;
                }
            }
        }
    }
}

@mixin input_label {

}



label {
    cursor: pointer;
    font-size: 1rem;
    line-height: 1rem;
}


input[type="checkbox"], input[type="radio"] {
    @include vh();
    &:focus {
        + label {
            &:before {
            }
        }
    }
    + label {
        position: relative;
        padding: 0.1rem 0 0 2rem;
        margin-bottom: 1rem;
        user-select: none;
        display: inline-block;
        line-height: 1.2;

        &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 1.2em;
            height: 1.2em;
            border: 1px solid $checkbox-border;
            border-radius: 0.25rem;
            background: $checkbox-background;
            text-align: center;
            transition: background 200ms ease-out;
        }
        &:after {
            content: "";
            //background-color: $checkbox-background;
            position: absolute;
            // top: 0.45rem;
            // left:  0.5rem;
            // width: 1rem;
            // height:  1rem;
            transform: scale(0);
            transition: transform 200ms ease-out;
        }
    }
}


input[type="checkbox"] {
    + label {
        &:after {
            background-color: transparent;
            content: "";
            display: block;
            position: absolute;
         
            left: 0.4em;
            top: 0.2em;
            width: 0.4em;
            height: 0.6em;

            opacity: 0.2;
            border-bottom: 3px solid $checkbox-border;
            border-right: 3px solid $checkbox-border;
            transform: rotate(45deg);
            transition: border-color 0.3s ease;
        }
    }
    &:checked {
        + label {
            &:before {
                content: "";
                background: $checkbox-background-checked;
            }

            &:after {
                content: "";
                opacity: 1;
                border-bottom: 3px solid $checkbox-checked;
                border-right: 3px solid $checkbox-checked;
            }
        }
    }
}

input[type="radio"] {
    + label {
        &:before,
        &:after {
            border-radius: 50%;
        }
        &:after {
            left: 0.35em;
            top: 0.35em;
            width: 1em;
            height: 1em;
        }
    }
    &:checked {
        + label {
            &:before {
                //background: $checkbox-background-checked;
                animation: borderscale 300ms ease-in;
            }
            &:after {
                background: $checkbox-checked;
                transform: scale(1);
            }
        }
    }
}
*/
/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.main_slider {
  background-image: url("/wp-content/uploads/2021/09/slider-min.jpg");
  padding-top: 343px;
  padding-bottom: 342px;
}

.main_slider .slider_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.main_slider .slider_content::before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/uploads/2021/09/slidervector.svg");
  background-repeat: no-repeat;
  width: 46px;
  height: 284px;
  left: 194px;
  bottom: 94px;
}

.main_slider .slider_content::after {
  content: "";
  position: absolute;
  background-image: url("/wp-content/uploads/2021/09/slidervector2.svg");
  background-repeat: no-repeat;
  width: 46px;
  height: 284px;
  right: 194px;
  bottom: 94px;
}

.main_slider .slider_content .slider_title_wrapper h1 {
  text-align: center;
  max-width: 935px;
}

.main_slider .slider_content .slider_title_wrapper p {
  text-align: center;
  text-align: center;
  max-width: 635px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 65px;
}

.main_slider .slider_content .slider_links .btn_round {
  margin-right: 13px;
}

.main_slider .slider_content .slider_links .btn_outline:nth-child(2) {
  margin-right: 13px;
}

.ds_institute {
  padding-top: 175px;
  padding-bottom: 175px;
  position: relative;
}

.ds_institute .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_institute .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 736px;
  height: 409px;
  right: -232px;
  bottom: -90px;
  z-index: -1;
  background: radial-gradient(36% 60% at 58% 71%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_institute .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 736px;
  height: 409px;
  right: 28px;
  bottom: -90px;
  z-index: -1;
  background: radial-gradient(45% 72% at 58% 67%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_institute .ds_elipse_bg .elipse_3 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 846px;
  height: 489px;
  left: -272px;
  top: -40px;
  z-index: -1;
  background: radial-gradient(58% 72% at 52% 38%, #b01e24 1.01%, rgba(255, 255, 255, 0) 66%);
  opacity: 0.61;
}

.ds_institute .ds_elipse_bg .elipse_4 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1156px;
  height: 769px;
  left: -480px;
  top: 0px;
  z-index: -1;
  background: radial-gradient(62% 48% at 64% 52%, #fdc803 -7%, rgba(255, 255, 255, 0) 81%);
  opacity: 0.61;
}

.ds_institute .ds_pack_institute {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ds_institute .ds_pack_institute .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ds_institute .ds_pack_institute .ds_box_foto figure img {
  width: 86%;
}

.ds_institute .ds_pack_institute .ds_box_title .ds_content_title p {
  max-width: 517px;
  margin-bottom: 47px;
}

.ds_institute .ds_pack_institute .ds_box_title .ds_content_title .btn_outline {
  border: 1px solid #222222;
  border-radius: 50px;
  color: black;
}

.ds_institute .ds_pack_institute .ds_box_title .ds_content_title .btn_outline:hover {
  color: white;
}

.ds_kti_banner {
  background-image: url("/wp-content/uploads/2021/10/people-min-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 143px;
  padding-bottom: 100px;
}

.ds_kti_banner .ds_kti_banner_pack .ds_title_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ds_kti_banner .ds_kti_banner_pack .ds_title_banner h3 {
  color: white;
  padding-bottom: 17px;
  max-width: 729px;
  text-align: center;
  line-height: 1.7;
}

.ds_kti_banner .ds_kti_banner_pack .ds_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ds_kti_banner .ds_kti_banner_pack .ds_button .btn_round {
  border-radius: 50px;
}

.ds_contact_section {
  padding-top: 225px;
  padding-bottom: 113px;
  position: relative;
}

.ds_contact_section .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_contact_section .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 606px;
  height: 569px;
  right: -221px;
  bottom: 120px;
  z-index: -1;
  background: radial-gradient(52% 54% at 58% 46%, #b01e24 8.01%, rgba(255, 255, 255, 0) 78%);
  opacity: 0.61;
}

.ds_contact_section .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 876px;
  height: 509px;
  right: -291px;
  bottom: -10px;
  z-index: -1;
  background: radial-gradient(48% 59% at 65% 45%, #fdc803 0%, rgba(255, 255, 255, 0) 78%);
  opacity: 0.61;
}

.ds_contact_section .ds_elipse_bg .elipse_3 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 846px;
  height: 489px;
  left: -132px;
  top: -40px;
  z-index: -1;
  background: radial-gradient(44% 52% at 46% 18%, #b01e24 -14.99%, rgba(255, 255, 255, 0) 50%);
  opacity: 0.61;
}

.ds_contact_section .ds_elipse_bg .elipse_4 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1156px;
  height: 769px;
  left: -630px;
  top: -300px;
  z-index: -1;
  background: radial-gradient(33% 41% at 59% 48%, #fdc803 -7%, rgba(255, 255, 255, 0) 43%);
  opacity: 0.61;
}

.ds_contact_section .container {
  max-width: 1064px;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_wrapper_title {
  margin-bottom: 36px;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_wrapper_title h3 {
  margin-bottom: 3px;
  font-weight: bold;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_icon_content {
  margin-right: 26px;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_icon_content img {
  background: #BB0011;
  border-radius: 5px;
  padding: 13px;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_title_content h5 {
  margin-bottom: 7px;
  font-weight: bold;
  font-size: 1em;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_title_content p {
  margin-bottom: 0;
  color: #0E1F33;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data a {
  font-weight: bold;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_contact_adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_contact_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_contact_email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ds_contact_section .ds_contact_pack .ds_right_wrappe_form .ds_form_tittle {
  margin-bottom: 31px;
}

.ds_contact_section .ds_contact_pack .ds_right_wrappe_form .ds_form_tittle h3 {
  margin-bottom: 3px;
  font-weight: bold;
}

@media only screen and (max-width: 991px) {
  .ds_wrapper_menu_main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main_slider {
    padding-bottom: 182px;
  }
  .main_slider .slider_content::before {
    display: none;
  }
  .main_slider .slider_content::after {
    display: none;
  }
  .main_slider .slider_content .slider_title_wrapper h1 {
    font-size: 2.8125em;
  }
  .ds_institute {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .ds_institute .ds_box_foto figure img {
    width: 100%;
  }
  .ds_contact_section {
    padding-top: 85px;
    padding-bottom: 0;
  }
  .ds_kti_banner {
    padding-top: 83px;
    padding-bottom: 60px;
  }
  .ds_kti_banner .ds_kti_banner_pack .ds_title_banner h3 {
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .btn_outline {
    padding: 12px 58px;
  }
  .btn_round {
    padding: 15px 58px;
  }
  .newsletter .newsletter_card {
    padding: 2.5em 2em 1.6em;
  }
  .ds_institute .ds_pack_institute .ds_box_foto {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .newsletter_card {
    background: white;
    padding: 2.5em 2em 1.6em !important;
  }
  .newsletter_card .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .newsletter_card .ds_newsletter_form .wpcf7 .wpcf7-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .newsletter_card .ds_newsletter_form .wpcf7 .wpcf7-form p .wpcf7-submit {
    margin-left: 0px !important;
    margin-top: 0px !important;
    padding: 17px 29px 18px !important;
    border-radius: 70px 0px 50px 0px !important;
    width: 100%;
  }
  footer .ds_footer_wrapper .ds_footer_col .ds_logo_title p {
    margin-bottom: 45px;
  }
  .ds_contact_section .ds_contact_pack .ds_left_wrapper {
    margin-bottom: 40px;
  }
  .ds_contact_section .ds_contact_pack .ds_left_wrapper .ds_content_wrapper .ds_section_data .ds_icon_content {
    margin-right: 15px;
  }
  .main_slider {
    padding-top: 173px;
    padding-bottom: 102px;
  }
  .main_slider .slider_content .slider_title_wrapper h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .main_slider .slider_content .slider_title_wrapper p {
    margin-bottom: 35px;
  }
  .main_slider .slider_content .slider_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .main_slider .slider_content .slider_links .btn_outline {
    text-align: center;
    width: 100%;
  }
  .main_slider .slider_content .slider_links .btn_round {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 400px) {
  .main_slider .slider_content .slider_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .main_slider .slider_content .slider_links .btn_outline {
    text-align: center;
    width: 100%;
  }
  .main_slider .slider_content .slider_links .btn_round {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (min-width: 1400px) {
  .main_slider .container {
    max-width: 1500px;
  }
}

.page-template-infoPages-template .newsletter {
  margin-top: -150px;
}

.side-nav-wrapper {
  padding-top: 3em;
  position: relative;
  padding-bottom: 400px;
}

.side-nav-wrapper .side-nav {
  list-style: none;
}

.side-nav-wrapper .side-nav li {
  margin-bottom: 2px;
}

.side-nav-wrapper .side-nav li a {
  font-size: 1.125em;
  text-decoration: none;
  padding: 0.4em 0em;
  display: block;
  border-right: 5px solid transparent;
}

.side-nav-wrapper .side-nav li a:hover {
  border-right: 5px solid #bb0011;
}

.side-nav-wrapper .side-nav .current-menu-item a {
  color: #bb0011;
  border-right: 5px solid #bb0011;
}

.side-nav-wrapper::before {
  content: "";
  width: 50vw;
  height: 100%;
  position: absolute;
  right: 15px;
  top: 0;
  background: #f3f3f3;
}

.row-side-nav .side-nav-wrapper {
  width: 24%;
}

.infopage-content-wrapper {
  padding-top: 3em;
}

.infopage-content-wrapper .infopage-content {
  padding-left: 6%;
  padding-bottom: 400px;
}

/*-------------contact--------------------*/
.ip-contact-sec .contant-info-block {
  margin-bottom: 4em;
}

.ip-contact-sec .contant-info-block .link-contact {
  margin-bottom: 2em;
  font-size: 1.125em;
}

.ip-contact-sec .contant-info-block .address-contact {
  margin-bottom: 2em;
  font-size: 1.125em;
}

.ip-contact-sec .contant-social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ip-contact-sec .contant-social-block .social-media-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.5em;
  width: 2.5em;
  text-decoration: none;
  background: transparent;
  border-radius: 5px;
  margin-right: 0.5em;
}

.ip-contact-sec .contant-social-block .social-media-link img {
  width: 1.6em;
}

.ip-contact-sec .contant-social-block .social-media-link:hover {
  background: #f3f3f3;
}

/*-------------privacy-policy--------------------*/
.ip-privacy-policy-sec h2 {
  margin-top: 1.2em;
  font-size: 2.625em;
}

.ip-privacy-policy-sec h3 {
  margin-top: 1.2em;
  font-size: 1.4em;
}

.ip-privacy-policy-sec h4 {
  margin-top: 1.2em;
  font-size: 1.2em;
}

.ip-privacy-policy-sec ul {
  padding-left: 1.1em;
  margin-bottom: 2em;
}

.ip-privacy-policy-sec ul li {
  margin-bottom: 0.5em;
}

.ip-privacy-policy-sec ul li p {
  margin-bottom: 0.2em;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_thermo_courses_title {
  padding-top: 88px;
  padding-bottom: 0;
  position: relative;
}

.ds_thermo_courses_title .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 110%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_thermo_courses_title .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  right: 102px;
  bottom: 144px;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_thermo_courses_title .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1446px;
  height: 829px;
  right: -472px;
  bottom: -40px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_thermo_courses_title .ds_thermo_pack_title .ds_title .ds_content {
  margin-bottom: 100px;
}

.ds_thermo_courses_title .ds_thermo_pack_title .ds_title .ds_content h1 {
  color: #222222;
  margin-bottom: 21px;
}

.ds_thermo_courses_title .ds_thermo_pack_title .ds_title .ds_content span {
  color: #bb0011;
  font-weight: 500;
}

.ds_thermo_courses_title .ds_thermo_pack_title .ds_title .ds_content p {
  max-width: 729px;
  font-size: 1.25em;
}

.ds_thermo_courses_title .ds_thermo_pack_title .ds_foto_text figure img {
  width: 92%;
}

.ds_our_courses_wrapper {
  margin-top: 0;
  padding-bottom: 90px;
}

.ds_our_courses_wrapper .ds_courses_pack {
  margin-bottom: 30px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_title_pack {
  margin-bottom: 33px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_title_pack h2 {
  font-size: 1.875em;
  margin-bottom: 0;
  font-weight: 500;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box {
  margin-bottom: 41px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content {
  background: #F8F8F8;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_foto figure {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #cfcfcf;
  background: white;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_foto figure img {
  width: auto;
  max-width: 300px;
  max-height: 87px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title {
  padding: 19px 29px 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title h3 {
  font-size: 1.25em;
  margin-bottom: 5px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title .release_date {
  font-weight: 500;
  margin-bottom: 25px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title .ds_price_wrapper {
  letter-spacing: -0.011em;
  color: #222222;
  font-size: 1.25em;
  font-weight: 500;
  margin-right: 20px;
  line-height: 1;
  max-width: 180px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title .ds_price_wrapper .price_addition {
  color: #bb0011;
  font-size: 0.8em;
  line-height: 1;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title .btn_round {
  padding: 11px 29px;
  color: #bb0011;
  background: transparent;
  border: 1px solid #bb0011;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title .btn_round:hover {
  color: white;
  background: #222222;
  border: 1px solid #222222;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_price_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_button_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 26px;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_button_all .btn_round {
  background: transparent;
  color: #222222;
  letter-spacing: -0.011em;
  padding: 11px 58px;
  border: 1px solid #222222;
}

.ds_our_courses_wrapper .ds_courses_pack .ds_button_all .btn_round:hover {
  background: #222222;
  color: white;
}

.ds_courses_info_wrapper {
  padding-top: 204px;
  padding-bottom: 141px;
  position: relative;
}

.ds_courses_info_wrapper .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_courses_info_wrapper .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  left: -470px;
  bottom: 490px;
  z-index: -1;
  background: radial-gradient(31% 35% at 71% 59%, #b01e24 8.01%, rgba(255, 255, 255, 0) 81%);
  opacity: 0.61;
}

.ds_courses_info_wrapper .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1266px;
  height: 829px;
  left: -467px;
  bottom: 220px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 56%);
  opacity: 0.61;
}

.ds_courses_info_wrapper .ds_courses_info_pack .ds_title {
  margin-top: 35px;
}

.ds_courses_info_wrapper .ds_courses_info_pack .ds_title .ds_content h2 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 20px;
}

.ds_courses_info_wrapper .ds_courses_info_pack .ds_title .ds_content .ds_button {
  margin-top: 54px;
}

.ds_courses_info_wrapper .ds_courses_info_pack .ds_title .ds_content figure img {
  width: 100%;
}

.ds_education_app {
  padding-top: 106px;
  padding-bottom: 197px;
  background: linear-gradient(90.72deg, rgba(0, 0, 0, 0.62) -0.06%, rgba(0, 0, 0, 0) 98.9%), url("/wp-content/uploads/2021/10/man-makes-thermal-imager-check-with-camera-looking-heat-leaks-from-house-1-min.jpg");
  background-position: center;
  background-size: cover;
}

.ds_education_app .ds_education_app_pack .ds_title_app .ds_content h3 {
  font-size: 1.875em;
  margin-bottom: 43px;
  font-weight: 500;
  line-height: 135%;
  color: white;
  max-width: 555px;
  position: relative;
}

.ds_education_app .ds_education_app_pack .ds_title_app .ds_content h3::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 71px;
  background: #bb0011;
  top: 137px;
}

.ds_education_app .ds_education_app_pack .ds_title_app .ds_content p {
  max-width: 746px;
  color: white;
}

.page-template-rn_education .newsletter {
  margin-top: -120px;
}

@media only screen and (max-width: 991px) {
  .ds_thermo_courses_title .ds_thermo_pack_title .ds_title .ds_content h1 {
    font-size: 2.625em;
  }
  .ds_thermo_courses_title .ds_thermo_pack_title .ds_title .ds_content p {
    font-size: 1em;
    max-width: unset;
  }
  .ds_thermo_courses_title .ds_thermo_pack_title .ds_foto_text {
    display: none;
  }
  .ds_our_courses_wrapper {
    margin-top: -81px;
    padding-bottom: 83px;
  }
  .ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title .btn_round {
    padding: 11px 31px;
  }
}

@media only screen and (max-width: 767px) {
  .ds_education_app {
    padding-bottom: 347px;
  }
  .page-template-rn_education .newsletter {
    margin-top: -253px !important;
  }
}

@media only screen and (max-width: 575px) {
  .ds_our_courses_wrapper {
    padding-bottom: 45px;
  }
  .ds_our_courses_wrapper .ds_courses_pack .ds_courses_box .ds_courses_content .ds_title .btn_round {
    padding: 11px 21px;
  }
  .ds_education_app .ds_education_app_pack .ds_title_app .ds_content h3::before {
    top: 182px;
  }
}

@media only screen and (max-width: 400px) {
  .ds_education_app .ds_education_app_pack .ds_title_app .ds_content h3::before {
    top: 263px;
  }
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_product_detail {
  padding-top: 105px;
  padding-bottom: 107px;
  position: relative;
}

.ds_product_detail .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_product_detail .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  right: -142px;
  top: -150px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_product_detail .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1446px;
  height: 829px;
  right: -472px;
  top: -290px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 59%);
  opacity: 0.61;
}

.ds_product_detail .ds_product_detail_pack .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ds_product_detail .ds_product_detail_pack .ds_gallery {
  max-width: 47% !important;
}

.ds_product_detail .ds_product_detail_pack .ds_gallery figure img {
  width: 100%;
  border-radius: 5px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title {
  margin-top: 25px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title h2 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 24px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_detail_title {
  margin-bottom: 33px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_button_input_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_button_input_price .ds_price {
  margin-right: 43px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_button_input_price .ds_price h5 {
  font-size: 0.875em;
  margin-bottom: 7px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_button_input_price .ds_price span {
  font-size: 1.875em;
  font-weight: 500;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_button_input_price .prod_card_buttons {
  margin-right: 63px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_button_input_price .prod_card_buttons h5 {
  font-size: 0.875em;
  margin-bottom: 7px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_button_input_price .prod_card_buttons .qty {
  border: 1px solid #CBCBCB;
  height: 50px;
  width: 87px !important;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_product_detail_title {
  margin-top: 235px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_product_detail_title h2 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 47px;
  position: relative;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_product_detail_title h2::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 2px;
  background: #bb0011;
  bottom: -3px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_product_detail_title .ds_text_information {
  padding-top: 55px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_product_detail_title .ds_text_information h3 {
  font-size: 1.25em;
  margin-bottom: 17px;
  font-weight: 500;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_product_detail_title .ds_text_information p {
  opacity: 0.72;
  letter-spacing: -0.011em;
  margin-bottom: 17px;
  display: list-item;
  margin-left: 17px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_benefits_detail {
  margin-bottom: 51px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_benefits_detail .ds_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_benefits_detail .ds_content .ds_benefits_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 47px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_benefits_detail .ds_content .ds_benefits_box p {
  color: #bb0011;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_benefits_detail .ds_content .ds_benefits_box figure {
  margin-bottom: 5px;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_benefits_detail .ds_content .ds_horse_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ds_product_detail .ds_product_detail_pack .ds_product_title .ds_content_title .ds_benefits_detail .ds_content .ds_horse_link a {
  color: #bb0011;
  font-weight: 500;
  margin-left: 12px;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_detail_education {
  padding-top: 88px;
  position: relative;
}

.ds_detail_education .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.ds_detail_education .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 400px;
  right: -162px;
  top: 210px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_detail_education .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 496px;
  height: 579px;
  right: -92px;
  top: 110px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_detail_education .ds_elipse_bg .elipse_3 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 600px;
  left: -292px;
  top: 400px;
  z-index: -1;
  background: radial-gradient(36% 50% at 50% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_detail_education .ds_elipse_bg .elipse_4 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 316px;
  height: 609px;
  left: -132px;
  top: 660px;
  z-index: -1;
  background: radial-gradient(78% 55% at 47% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 79%);
  opacity: 0.61;
}

.ds_detail_education .container {
  max-width: 853px;
}

.ds_detail_education .container .ds_pack_detail .ds_title_detail_2 {
  margin-bottom: 60px;
}

.ds_detail_education .container .ds_pack_detail .ds_title_detail_2 h1 {
  color: #222222;
  margin-bottom: 19px;
  font-weight: 500;
  margin-top: 0;
  font-size: 2.5em;
}

.ds_detail_education .container .ds_pack_detail .ds_title_detail_2 .line_info {
  font-size: 1.3em;
  font-weight: 500;
  color: #bb0011;
}

.ds_detail_education .container .ds_pack_detail .ds_title_detail_2 .ds_title_image {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  padding: 1em;
  margin-bottom: 2em;
}

.ds_detail_education .container .ds_pack_detail .ds_title_detail_2 .ds_title_image img {
  max-width: 570px;
  width: auto;
  max-height: 173px;
}

.ds_detail_education .container .ds_pack_detail .ds_title_detail_2 p {
  font-size: 1.125em;
}

.ds_detail_education .container .ds_pack_detail .ds_button_input_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 65px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ds_detail_education .container .ds_pack_detail .ds_button_input_price .ds_price {
  margin-right: 20px;
  position: relative;
}

.ds_detail_education .container .ds_pack_detail .ds_button_input_price .ds_price::before {
  content: "";
  position: absolute;
  background: #bb0011;
  width: 55px;
  height: 2px;
  top: -22px;
}

.ds_detail_education .container .ds_pack_detail .ds_button_input_price .ds_price h5 {
  font-size: 1.125em;
  margin-bottom: -4px;
  color: #222222;
  letter-spacing: -0.011em;
  opacity: 0.73;
}

.ds_detail_education .container .ds_pack_detail .ds_button_input_price .ds_price .ds_price_wrapper {
  font-size: 1.875em;
  color: #222222;
  letter-spacing: -0.011em;
  font-weight: 500;
  line-height: 1;
  margin-top: 14px;
}

.ds_detail_education .container .ds_pack_detail .ds_button_input_price .ds_price .ds_price_wrapper .price_addition {
  color: #bb0011;
  font-size: 0.6em;
  line-height: 1;
}

.ds_detail_education .container .ds_pack_detail .ds_button_input_price .btn_round {
  width: 60%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ds_detail_education .container .product_post_info_media_wrapper {
  padding-top: 40px;
  margin-bottom: 0px;
  overflow: hidden;
}

.ds_detail_education .container .product_post_info_media_wrapper h5 {
  font-size: 1.125em;
  color: #222222;
  letter-spacing: -0.011em;
  opacity: 0.73;
}

.ds_detail_education .container .product_post_info_media_wrapper .product_post_info_media a {
  background: #1F3D7D;
  border-radius: 5px;
  font-size: 1.25em;
  color: white;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 18px;
  margin-right: 20px;
  display: block;
  width: 100%;
}

.ds_detail_education .container .product_post_info_media_wrapper .product_post_info_media a:hover {
  background: #222222;
}

.ds_detail_education .container .product_post_info_media_wrapper .product_post_info_media a img {
  margin-right: 15px;
}

.ds_detail_education .container .product_post_info_media_wrapper .product_post_info_media a:last-of-type {
  margin-right: 0;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text {
  padding-top: 60px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_text_content {
  margin-bottom: 50px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_text_content h3 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 10px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_text_content p {
  font-size: 1.125em;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_program .ds_program_content h4 {
  font-size: 1.25em;
  color: #bb0011;
  margin-bottom: 10px;
  font-weight: bold;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_program .ds_program_content p {
  font-size: 1.125em;
  margin-bottom: 50px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_math {
  padding-top: 50px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_math .ds_math_content h4 {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 10px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_math .ds_math_content p {
  font-size: 1.125em;
  margin-bottom: 50px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_math .ds_math_content .ds_parametr {
  padding: 25px 265px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 50px;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_math .ds_math_content .ds_parametr p {
  font-size: 1.125em;
  margin-bottom: 0;
  font-weight: 500;
}

.ds_detail_education .container .product_post_info_media_wrapper .ds_text .ds_math .ds_math_content .btn_round {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product_more_courses_wrapper {
  margin-top: 120px;
  padding-bottom: 23px;
}

.product_more_courses_wrapper .more_courses_title_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_more_courses_wrapper .more_courses_title_wrapper .show_more_btn {
  margin-top: 15px;
}

.product_more_courses_wrapper .swiper-slide .ds_title {
  min-height: 188px;
}

.product_post-template-default main {
  overflow: hidden;
}

.product_post-template-default p {
  font-size: 1.125em;
}

.product_post-template-default .ds_text h1, .product_post-template-default .ds_text h2, .product_post-template-default .ds_text h3, .product_post-template-default .ds_text h4, .product_post-template-default .ds_text h5, .product_post-template-default .ds_text h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.product_post-template-default .wp-block-image img {
  width: 100%;
  border-radius: 5px;
}

.product_post-template-default .wp-block-group {
  margin-top: 3em;
  margin-bottom: 3em;
}

.product_post-template-default section.wp-block-group {
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.product_post-template-default section.wp-block-group p {
  margin-bottom: 0;
}

.product_post-template-default .ds_text .btn_round {
  width: 100%;
}

.product_post-template-default .more_courses_title_wrapper h3 {
  margin-top: 0;
  margin-bottom: 0.9em;
}

.product_post-template-default .blocks-gallery-grid .blocks-gallery-item img {
  border-radius: 5px;
}

.wp-block-eedee-block-gutenslider {
  margin-top: 4em;
  margin-bottom: 4em;
  border-radius: 5px;
}

.wp-block-eedee-block-gutenslider .swiper-slide {
  background: white;
  border-radius: 5px;
}

.wp-block-eedee-block-gutenslider .swiper-slide img {
  border-radius: 5px;
}

.divasd4as5d5ad4 .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.divasd4as5d5ad4 .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  left: -470px;
  bottom: 490px;
  z-index: -1;
  background: radial-gradient(31% 35% at 71% 59%, #b01e24 8.01%, rgba(255, 255, 255, 0) 81%);
  opacity: 0.61;
}

.divasd4as5d5ad4 .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1266px;
  height: 829px;
  left: -467px;
  bottom: 220px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 56%);
  opacity: 0.61;
}

@media only screen and (max-width: 991px) {
  .ds_detail_education .container .ds_pack_detail .ds_title_detail_2 {
    margin-bottom: 80px;
  }
  .ds_detail_education .container .ds_pack_detail .ds_title_detail_2 h1 {
    font-size: 2.625em;
    margin-bottom: 14px;
  }
  .ds_detail_education .container .ds_information .ds_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ds_detail_education .container .ds_information .ds_content a {
    width: 100%;
    margin-bottom: 10px;
  }
  .ds_detail_education .container .ds_information .ds_text .ds_math .ds_math_content .ds_parametr {
    padding: 25px 25px;
  }
}

@media only screen and (max-width: 400px) {
  .ds_detail_education .container .ds_pack_detail .ds_button_input_price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .ds_detail_education .container .ds_pack_detail .ds_button_input_price .btn_round {
    width: 100%;
    margin-top: 10px;
  }
  .ds_detail_education .container .ds_information .ds_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ds_detail_education .container .ds_information .ds_content a {
    width: 100%;
    margin-bottom: 10px;
    padding: 19px 8px 19px 26px;
  }
  .ds_detail_education .container .ds_information .ds_text .ds_math .ds_math_content .ds_parametr {
    padding: 25px 25px;
  }
  .ds_detail_education .container .ds_information .ds_program .ds_program_content .ds_program_foto figure img {
    width: 100%;
  }
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_campus_title {
  padding-top: 88px;
  padding-bottom: 30px;
  position: relative;
}

.ds_campus_title .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_campus_title .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  right: -142px;
  bottom: 210px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_campus_title .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1446px;
  height: 829px;
  right: -472px;
  bottom: -40px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_campus_title .ds_campus_pack_title .ds_title .ds_content h1 {
  color: #222222;
  margin-bottom: 21px;
  font-weight: 500;
}

.ds_campus_title .ds_campus_pack_title .ds_title .ds_content span {
  color: #bb0011;
  font-weight: 500;
}

.ds_campus_title .ds_campus_pack_title .ds_title .ds_content p {
  max-width: 560px;
  font-size: 1.25em;
}

.ds_campus_title .ds_campus_pack_title .ds_foto_text figure {
  position: relative;
  padding-top: 66%;
}

.ds_campus_title .ds_campus_pack_title .ds_foto_text figure img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 5px;
  top: 0;
  left: 0;
}

.ds_campus_wrapper {
  padding-bottom: 95px;
  position: relative;
}

.ds_campus_wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  top: 98px;
}

.ds_campus_wrapper .ds_campus_pack .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ds_campus_wrapper .ds_campus_pack .ds_title_pack {
  margin-bottom: 83px;
}

.ds_campus_wrapper .ds_campus_pack .ds_title_pack h2 {
  font-size: 1.875em;
  margin-bottom: 0;
  font-weight: 500;
}

.ds_campus_wrapper .ds_campus_pack .ds_title_pack h2 span {
  color: #bb0011;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box {
  max-width: 31.33333% !important;
  margin-bottom: 84px;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content {
  height: 100%;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_date {
  margin-bottom: 12px;
  position: relative;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_date::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bb0011;
  top: -24px;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_date span {
  color: #bb0011;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_foto figure img {
  width: 100%;
  border-radius: 9px 9px 0 0;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_title {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0 0 9px 9px;
}

.ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_title h3 {
  font-size: 1.25em;
  margin-bottom: 9px;
  font-weight: 500;
}

.ds_campus_wrapper .ds_campus_pack .ds_button_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 26px;
}

.ds_campus_wrapper .ds_campus_pack .ds_button_all .btn_round {
  background: transparent;
  color: #222222;
  letter-spacing: -0.011em;
  padding: 11px 58px;
  border: 1px solid #222222;
}

.ds_campus_wrapper .ds_campus_pack .ds_button_all .btn_round:hover {
  background: #222222;
  color: white;
}

.ds_relationship {
  position: relative;
  padding-bottom: 132px;
}

.ds_relationship .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_relationship .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  left: -470px;
  bottom: 490px;
  z-index: -1;
  background: radial-gradient(31% 35% at 71% 59%, #b01e24 8.01%, rgba(255, 255, 255, 0) 81%);
  opacity: 0.61;
}

.ds_relationship .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1266px;
  height: 829px;
  left: -467px;
  bottom: 220px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 56%);
  opacity: 0.61;
}

.ds_relationship .ds_relationship_pack .ds_relation_title {
  margin-bottom: 74px;
  margin-top: 25px;
}

.ds_relationship .ds_relationship_pack .ds_relation_title h2 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
}

.ds_relationship .ds_relationship_pack .ds_relation_title h2::before {
  content: "";
  position: absolute;
  width: 71px;
  height: 1px;
  background: #bb0011;
  top: 71px;
}

.ds_relationship .ds_relationship_pack .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ds_relationship .ds_relationship_pack .ds_title p {
  max-width: 565px;
}

.ds_relationship .ds_relationship_pack .ds_relation_box {
  padding-bottom: 178px;
  /*
            .ds_co_box{
                margin-bottom: 25px;
                .ds_box_content{
                    display: flex;
                    align-items: center;
                    .ds_foto{
                        margin-right: 36px;
                    }

                    .ds_title{
                        h4{
                            font-size: 1.25em;
                            font-weight: 500;
                            margin-bottom: 12px;
                        }
                        
                        p{
                            max-width: 330px;
                            margin-bottom: 0;
                        }
                    }
                }
            }*/
}

.ds_relationship .ds_relationship_pack .ds_relation_box figure img {
  width: 100%;
}

.ds_relationship .ds_relationship_pack .ds_img_box figure img {
  width: 90%;
}

.page-template-rn_education .newsletter {
  margin-top: -120px;
}

@media only screen and (max-width: 991px) {
  .ds_campus_title .ds_campus_pack_title .ds_foto_text figure img {
    width: 100%;
  }
  .ds_campus_wrapper {
    padding-bottom: 35px;
  }
  .ds_campus_wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    top: 472px;
    z-index: -1;
  }
  .ds_campus_wrapper .ds_campus_pack .ds_campus_box {
    max-width: 100% !important;
    margin-bottom: 37px;
  }
  .ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_title p {
    max-width: unset;
  }
  .ds_relationship {
    padding-bottom: 20px;
  }
  .ds_relationship .ds_relationship_pack .ds_title p {
    max-width: unset;
  }
  .ds_relationship .ds_relationship_pack .ds_relation_box {
    padding-top: 55px;
    padding-bottom: 68px;
  }
  .ds_relationship .ds_relationship_pack .ds_relation_box .ds_co_box .ds_box_content .ds_title p {
    max-width: unset;
  }
  .ds_relationship .ds_relationship_pack .ds_img_box {
    margin-bottom: 30px;
  }
  .ds_relationship .ds_relationship_pack .ds_img_box figure img {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .ds_campus_wrapper::after {
    display: none;
  }
  .ds_campus_wrapper::before {
    display: none;
  }
  .ds_campus_wrapper .ds_campus_pack .ds_title_pack {
    margin-bottom: 30px;
  }
  .ds_campus_wrapper .ds_campus_pack .ds_campus_box {
    margin-bottom: 0;
  }
  .ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_date {
    padding-left: 20px;
  }
  .ds_campus_wrapper .ds_campus_pack .ds_campus_box .ds_campus_content .ds_date::before {
    top: 6px;
    left: 0;
  }
  .ds_relationship .ds_relationship_pack .ds_relation_title {
    margin-bottom: 28px;
  }
  .ds_relationship .ds_relationship_pack .ds_relation_title h2::before {
    top: 48px;
  }
}

@media only screen and (max-width: 400px) {
  .page-template-rn_campus h1 {
    font-size: 2.8125em;
  }
  .page-template-rn_campus h2 {
    font-size: 1.5625em !important;
  }
  .ds_relationship .ds_relationship_pack .ds_relation_title h2::before {
    top: 43px;
  }
  .ds_relationship .ds_relation_box .ds_co_box .ds_box_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset !important;
        -ms-flex-align: unset !important;
            align-items: unset !important;
  }
  .ds_relationship .ds_relation_box .ds_co_box .ds_box_content .ds_foto {
    margin-bottom: 10px;
  }
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_equipment_title {
  padding-top: 88px;
  padding-bottom: 60px;
  position: relative;
}

.ds_equipment_title .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 77%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_equipment_title .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  right: -142px;
  bottom: 210px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_equipment_title .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1446px;
  height: 829px;
  right: -472px;
  bottom: -40px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_equipment_title .ds_equipment_pack_title .ds_title .ds_content h1 {
  color: #222222;
  margin-bottom: 46px;
  max-width: 700px;
  font-weight: 400;
  font-size: 2.125em;
}

.ds_equipment_title .ds_equipment_pack_title .ds_title .ds_content span {
  color: #bb0011;
  font-weight: 500;
}

.ds_equipment_title .ds_equipment_pack_title .ds_title .ds_content p {
  max-width: 729px;
  font-size: 1.125em;
}

.ds_equipment_title .ds_equipment_pack_title .ds_foto_text figure img {
  width: 100%;
}

.ds_equipment_wrapper {
  padding-bottom: 131px;
}

.ds_equipment_wrapper .ds_equipment_pack .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_title_pack {
  margin-bottom: 33px;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_title_pack h2 {
  font-size: 1.875em;
  margin-bottom: 0.8em;
  font-weight: 500;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_equipment_box {
  margin-bottom: 41px;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_equipment_box a {
  text-decoration: none;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_equipment_box .ds_equipment_content {
  background: #F8F8F8;
  border-radius: 11px;
  height: 100%;
  /*
                transition: $trans;
                transform: scale(1);

                &:hover {
                    transform: scale(1.051);
                }*/
}

.ds_equipment_wrapper .ds_equipment_pack .ds_equipment_box .ds_equipment_content .ds_foto figure img {
  width: 100%;
  border-radius: 9px 9px 0 0;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_equipment_box .ds_equipment_content .ds_title {
  padding: 30px;
  border-radius: 0 0 9px 9px;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_equipment_box .ds_equipment_content .ds_title h3 {
  font-size: 1.25em;
  margin-bottom: 5px;
  margin-top: 12px;
  font-weight: 500;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_equipment_box .ds_equipment_content .ds_title span {
  letter-spacing: -0.011em;
  color: #bb0011;
  font-size: 1em;
  margin-right: 44px;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_button_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 26px;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_button_all .btn_round {
  background: transparent;
  color: #222222;
  letter-spacing: -0.011em;
  padding: 11px 58px;
  border: 1px solid #222222;
}

.ds_equipment_wrapper .ds_equipment_pack .ds_button_all .btn_round:hover {
  background: #222222;
  color: white;
}

.ds_flir_banner {
  padding-top: 122px;
  padding-bottom: 122px;
  background-image: url("/wp-content/uploads/2021/10/jp-min.jpg");
  background-position: center;
  background-size: cover;
}

.ds_flir_banner .ds_flir_banner_pack .ds_logo figure img {
  width: 83%;
}

.ds_flir_banner .ds_flir_banner_pack .ds_flir_title .ds_flir_content h3 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 18px;
}

.ds_flir_banner .ds_flir_banner_pack .ds_flir_title .ds_flir_content p {
  margin-bottom: 29px;
}

.ds_flir_banner .ds_flir_banner_pack .ds_flir_title .ds_flir_content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 18px;
}

.ds_flir_banner .ds_flir_banner_pack .ds_flir_title .ds_flir_content ul li {
  margin-right: 32px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.125em;
}

.ds_service_banner {
  padding-top: 120px;
  padding-bottom: 130px;
  margin-bottom: 10px;
  background-image: url(/wp-content/uploads/2021/10/GradBG-min.jpg);
  background-position: center;
  background-size: cover;
}

.ds_service_banner .ds_service_banner_title h2 {
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
}

.ds_service_banner .ds_service_banner_title .service-top-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ds_service_banner .ds_service_banner_title .service-top-logos .service-logo {
  margin-right: 2em;
  max-height: 56px;
  max-width: 275px;
}

.ds_service_banner .ds_service_banner_title .service-top-logos .service-corner {
  margin-left: auto;
}

.ds_service_banner .p_mid {
  margin-bottom: 50px;
}

.ds_service_banner .ds_service_box_content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  border: 1px solid #222222;
}

.ds_service_banner .ds_service_box_content p {
  margin-bottom: 0;
}

.ds_service_banner .ds_service_box_content figure {
  margin-right: 10px;
}

.ds_service_banner .ds_service_box_content figure img {
  width: 40px;
}

.ds_suported {
  padding-top: 0;
  padding-bottom: 126px;
}

.ds_suported .ds_suported_pack .ds_foto {
  margin-top: 0;
}

.ds_suported .ds_suported_pack .ds_foto figure img {
  width: 89%;
  border-radius: 5px;
}

.ds_suported .ds_suported_pack .ds_title .ds_content h3 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 16px;
}

.ds_suported .ds_suported_pack .ds_title .ds_content p {
  margin-bottom: 50px;
}

.ds_next_equipment {
  padding-bottom: 116px;
}

.ds_next_equipment .ds_next_pack .ds_title_next h3 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 32px;
}

.ds_next_equipment .ds_next_pack .ds_equipment_box a {
  text-decoration: none;
}

.ds_next_equipment .ds_next_pack .ds_equipment_box .ds_content {
  background: white;
  border-radius: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ds_next_equipment .ds_next_pack .ds_equipment_box .ds_content:hover {
  -webkit-transform: scale(1.051);
          transform: scale(1.051);
}

.ds_next_equipment .ds_next_pack .ds_equipment_box .ds_content .ds_foto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ds_next_equipment .ds_next_pack .ds_equipment_box .ds_content .ds_title {
  padding: 24px 39px 28px 39px;
}

.ds_next_equipment .ds_next_pack .ds_equipment_box .ds_content .ds_title h3 {
  font-size: 1.875em;
  font-weight: 700;
  margin-bottom: 5px;
}

.ds_next_equipment .ds_next_pack .ds_equipment_box .ds_content .ds_title span {
  color: #bb0011;
}

.ds_next_equipment .ds_next_pack .ds_equipment_box .ds_content .ds_title p {
  letter-spacing: -0.011em;
  opacity: 0.72;
  margin-top: 22px;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .ds_equipment_title .ds_equipment_pack_title .ds_title .ds_content h1 {
    font-size: 2.625em;
    margin-bottom: 20px;
  }
  .ds_equipment_title .ds_equipment_pack_title .ds_title .ds_content p {
    font-size: 1em;
  }
  .ds_equipment_wrapper {
    padding-bottom: 91px;
  }
  .ds_flir_banner {
    padding-top: 92px;
    padding-bottom: 52px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .ds_flir_banner .ds_flir_banner_pack .ds_logo {
    margin-bottom: 30px;
  }
  .ds_flir_banner .ds_flir_banner_pack .ds_logo figure img {
    width: 100%;
  }
  .ds_suported {
    padding-top: 64px;
    padding-bottom: 46px;
  }
  .ds_suported .ds_suported_pack .ds_foto {
    margin-bottom: 30px;
  }
  .ds_next_equipment {
    padding-bottom: 20px;
  }
  .ds_next_equipment .ds_next_pack .ds_equipment_box {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .ds_equipment_title {
    padding-bottom: 47px;
  }
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.page-template-rn_detail_equipment .ds_next_equipment {
  padding-bottom: 120px;
  margin-top: -260px !important;
}

.ds_detail_equipment {
  padding-top: 88px;
  position: relative;
}

.ds_detail_equipment .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.ds_detail_equipment .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 400px;
  right: -162px;
  top: 210px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_detail_equipment .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 496px;
  height: 579px;
  right: -92px;
  top: 110px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_detail_equipment .ds_elipse_bg .elipse_3 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 600px;
  left: -292px;
  top: 400px;
  z-index: -1;
  background: radial-gradient(36% 50% at 50% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_detail_equipment .ds_elipse_bg .elipse_4 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 316px;
  height: 609px;
  left: -132px;
  top: 660px;
  z-index: -1;
  background: radial-gradient(78% 55% at 47% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 79%);
  opacity: 0.61;
}

.ds_detail_equipment .container .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 80px;
}

.ds_detail_equipment .container .ds_left_wrapper .ds_content h5 {
  font-size: 1.125em;
  color: #bb0011;
  margin-bottom: 9px;
  display: list-item;
  margin-left: 20px;
}

.ds_detail_equipment .container .ds_left_wrapper .ds_content h1 {
  font-size: 3.5em;
  color: #222222;
  margin-bottom: 24px;
  font-weight: 500;
}

.ds_detail_equipment .container .ds_left_wrapper .ds_content p {
  letter-spacing: -0.011em;
  opacity: 0.72;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto {
  height: 65%;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .swiper {
  width: 100%;
  height: 100%;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto body {
  background: #000;
  color: #000;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .swiper-slide {
  background-size: cover;
  background-position: center;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .mySwiper2 {
  height: 80%;
  width: 100%;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .mySwiper {
  height: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.ds_detail_equipment .container .ds_right_wrapper .ds_content_foto .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ds_detail_equipment .container .ds_button_line {
  position: relative;
}

.ds_detail_equipment .container .ds_button_line::before {
  content: "";
  height: 1px;
  z-index: -1;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 15px;
}

.ds_detail_equipment .container .ds_button_line .btn_round {
  padding: 20px 194px;
}

.divasd4as5d5ad4 .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.divasd4as5d5ad4 .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  left: -470px;
  bottom: 490px;
  z-index: -1;
  background: radial-gradient(31% 35% at 71% 59%, #b01e24 8.01%, rgba(255, 255, 255, 0) 81%);
  opacity: 0.61;
}

.divasd4as5d5ad4 .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1266px;
  height: 829px;
  left: -467px;
  bottom: 220px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 56%);
  opacity: 0.61;
}

@media only screen and (max-width: 991px) {
  .ds_next_equipment .swiper-wrapper .swiper-slide {
    width: 61% !important;
  }
  .ds_detail_equipment .container .ds_left_wrapper .ds_content h1 {
    font-size: 2.625em;
  }
  .ds_detail_equipment .container .ds_left_wrapper .ds_content p {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .ds_next_equipment .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  .ds_detail_equipment .container .ds_button_line .btn_round {
    padding: 20px 64px;
  }
}

@media only screen and (max-width: 400px) {
  .ds_detail_equipment .container .row {
    padding-bottom: 170px;
  }
  .ds_next_equipment .ds_next_pack .ds_title_next h3 {
    font-size: 1.3125em;
  }
  .page-template-rn_detail_equipment .ds_next_equipment {
    padding-bottom: 30px;
    margin-top: -260px !important;
  }
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_other_services {
  padding-top: 88px;
  padding-bottom: 80px;
  position: relative;
}

.ds_other_services .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_other_services .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  right: -142px;
  bottom: 210px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_other_services .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1446px;
  height: 829px;
  right: -472px;
  bottom: -40px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_other_services .ds_other_services_title .ds_title .ds_content h1 {
  color: #222222;
  margin-bottom: 14px;
  max-width: 700px;
  font-weight: 500;
  font-size: 3.625em;
}

.ds_other_services .ds_other_services_title .ds_title .ds_content p {
  max-width: 729px;
  font-size: 1.125em;
}

.ds_other_services_wrapper {
  padding-bottom: 122px;
}

.ds_other_services_wrapper .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ds_other_services_wrapper .ds_elipse_bg .elipse_3 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 436px;
  height: 639px;
  left: -222px;
  bottom: 120px;
  z-index: -1;
  background: radial-gradient(36% 50% at 59% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 90%);
  opacity: 0.61;
}

.ds_other_services_wrapper .ds_elipse_bg .elipse_4 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 700px;
  height: 829px;
  left: -342px;
  bottom: 190px;
  z-index: -1;
  background: radial-gradient(66% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_other_services_wrapper .ds_other_services_pack {
  /*
        .ds_button_all{
            display: flex;
            justify-content: center;
            margin-top: 26px;
            .btn_round{
                background: transparent;
                color: color(dark);
                letter-spacing: -0.011em;
                padding: 11px 58px;
                border: 1px solid #222222;
                &:hover{
                    background: color(dark);
                    color: white;
                }
            }
        }*/
}

.ds_other_services_wrapper .ds_other_services_pack .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ds_other_services_wrapper .ds_other_services_pack .ds_title_pack {
  margin-bottom: 33px;
}

.ds_other_services_wrapper .ds_other_services_pack .ds_title_pack h2 {
  font-size: 1.875em;
  margin-bottom: 0;
  font-weight: 500;
}

.ds_other_services_wrapper .ds_other_services_pack .ds_other_services_box {
  margin-bottom: 21px;
}

.ds_other_services_wrapper .ds_other_services_pack .ds_other_services_box a {
  text-decoration: none;
}

.ds_other_services_wrapper .ds_other_services_pack .ds_other_services_box .ds_services_content {
  background: #F8F8F8;
  border-radius: 11px;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ds_other_services_wrapper .ds_other_services_pack .ds_other_services_box .ds_services_content:hover {
  -webkit-transform: scale(1.051);
          transform: scale(1.051);
}

.ds_other_services_wrapper .ds_other_services_pack .ds_other_services_box .ds_services_content .ds_foto figure img {
  width: 100%;
  border-radius: 9px 9px 0 0;
}

.ds_other_services_wrapper .ds_other_services_pack .ds_other_services_box .ds_services_content .ds_title {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 0 9px 9px;
  /*
                    span{
                        letter-spacing: -0.011em;
                        color: color(red);
                        font-size: 1em;
                        margin-right: 44px;
                    }*/
}

.ds_other_services_wrapper .ds_other_services_pack .ds_other_services_box .ds_services_content .ds_title h3 {
  font-size: 1.25em;
  margin-bottom: 15px;
  margin-top: 5px;
  font-weight: 500;
}

.ds_detail_services .ds_text .wp-block-image {
  margin-bottom: 3em;
}

.ds_detail_services .ds_text h1, .ds_detail_services .ds_text h2, .ds_detail_services .ds_text h3, .ds_detail_services .ds_text h4, .ds_detail_services .ds_text h5, .ds_detail_services .ds_text h6 {
  margin-top: 2em;
}

.ds_detail_services .ds_text .wp-block-group {
  margin-bottom: 3em;
}

.ds_detail_services .ds_text .product_modal_opener {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .ds_other_services {
    padding-bottom: 50px;
  }
  .ds_other_services .ds_other_services_title .ds_title .ds_content h1 {
    font-size: 2.625em;
  }
  .ds_other_services .ds_other_services_title .ds_title .ds_content p {
    font-size: 1em;
  }
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_detail_services {
  padding-top: 88px;
  position: relative;
}

.ds_detail_services .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.ds_detail_services .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 400px;
  right: -162px;
  top: 210px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_detail_services .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 496px;
  height: 579px;
  right: -92px;
  top: 110px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_detail_services .ds_elipse_bg .elipse_3 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 600px;
  left: -292px;
  top: 400px;
  z-index: -1;
  background: radial-gradient(36% 50% at 50% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_detail_services .ds_elipse_bg .elipse_4 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 316px;
  height: 609px;
  left: -132px;
  top: 660px;
  z-index: -1;
  background: radial-gradient(78% 55% at 47% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 79%);
  opacity: 0.61;
}

.ds_detail_services .container {
  max-width: 752px;
}

.ds_detail_services .container .ds_pack_detail .ds_title_detail_2 {
  margin-bottom: 68px;
}

.ds_detail_services .container .ds_pack_detail .ds_title_detail_2 h5 {
  display: list-item;
  margin-bottom: 9px;
  color: #bb0011;
  margin-left: 20px;
  font-size: 1.125em;
}

.ds_detail_services .container .ds_pack_detail .ds_title_detail_2 h1 {
  color: #222222;
  margin-bottom: 39px;
  font-weight: 500;
}

.ds_detail_services .container .ds_pack_detail .ds_title_detail_2 p {
  font-size: 1.125em;
}

.ds_detail_services .container .ds_pack_detail .ds_content_detail .ds_foto {
  margin-bottom: 68px;
}

.ds_detail_services .container .ds_pack_detail .ds_content_detail .ds_foto figure img {
  width: 100%;
}

.ds_detail_services .container .ds_pack_detail .ds_content_detail .ds_title {
  margin-bottom: 68px;
}

.ds_detail_services .container .ds_pack_detail .ds_content_detail .ds_title h3 {
  font-size: 1.875em;
  font-weight: 500;
  margin-bottom: 24px;
}

.ds_detail_services .container .ds_pack_detail .ds_content_detail .ds_foto2 {
  margin-bottom: 51px;
}

.ds_detail_services .container .ds_pack_detail .ds_content_detail .ds_foto2 figure img {
  width: 100%;
}

.ds_detail_services .container .ds_pack_detail .btn_round {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.divasd4as5d5ad4 .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.divasd4as5d5ad4 .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 776px;
  height: 459px;
  left: -470px;
  bottom: 490px;
  z-index: -1;
  background: radial-gradient(31% 35% at 71% 59%, #b01e24 8.01%, rgba(255, 255, 255, 0) 81%);
  opacity: 0.61;
}

.divasd4as5d5ad4 .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 1266px;
  height: 829px;
  left: -467px;
  bottom: 220px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 56%);
  opacity: 0.61;
}

/*

@mixin chev-right($size) {
    .gg-chevron-right {
        box-sizing: border-box;
        position: relative;
        display: block;
        transform: scale($size);
        width: 22px;
        height: 22px;
        border: 2px solid transparent;
        border-radius: 100px
    }
    
    .gg-chevron-right::after {
        content: "";
        display: block;
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(-45deg);
        right: 6px;
        top: 4px
    }     
}

*/
.page-template-rn_frontpage main {
  padding-top: 0;
}

.ds_contact {
  padding-top: 115px;
  padding-bottom: 327px;
  position: relative;
}

.ds_contact .ds_elipse_bg {
  width: 100vw;
  overflow: hidden;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.ds_contact .ds_elipse_bg .elipse_1 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 400px;
  right: -162px;
  top: 210px;
  z-index: -1;
  background: radial-gradient(36% 50% at 74% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_contact .ds_elipse_bg .elipse_2 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 496px;
  height: 579px;
  right: -92px;
  top: 110px;
  z-index: -1;
  background: radial-gradient(87% 68% at 50% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.61;
}

.ds_contact .ds_elipse_bg .elipse_3 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 556px;
  height: 600px;
  left: -292px;
  top: 400px;
  z-index: -1;
  background: radial-gradient(36% 50% at 50% 47%, #b01e24 8.01%, rgba(255, 255, 255, 0) 97%);
  opacity: 0.61;
}

.ds_contact .ds_elipse_bg .elipse_4 {
  opacity: 0.55;
  position: absolute;
  border-radius: 190%;
  width: 316px;
  height: 609px;
  left: -132px;
  top: 660px;
  z-index: -1;
  background: radial-gradient(78% 55% at 47% 54%, #fdc803 0%, rgba(255, 255, 255, 0) 79%);
  opacity: 0.61;
}

.ds_contact .ds_contact_pack .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 66px;
  color: #222222;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_adress {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_adress .icon {
  margin-right: 20px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_adress .ds_info h4 {
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 6px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_adress .ds_info p {
  font-size: 1.125em;
  margin-bottom: 0;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_adress .contact-adress-campus-info {
  opacity: 0.7;
  font-size: 0.9em;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_email {
  margin-bottom: 42px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_email a {
  text-decoration: none;
  font-size: 1.125em;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_email a img {
  margin-right: 20px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_tel a {
  text-decoration: none;
  font-size: 1.125em;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_content .ds_tel a img {
  margin-right: 20px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_social_site {
  padding-top: 137px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_social_site h3 {
  font-size: 1.5625em;
  font-weight: 500;
  margin-bottom: 31px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_social_site .ds_pack_1 {
  margin-bottom: 25px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_social_site .ds_pack_1 a {
  margin-right: 25px;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_social_site .ds_pack_1 a img {
  border-radius: 8px;
  background: #FFFFFF;
  padding: 19px 21px;
  width: 104px;
  height: 104px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.ds_contact .ds_contact_pack .ds_left_wrapper .ds_social_site .ds_pack_1 a img:hover {
  background: #222222;
}

.ds_contact .ds_contact_pack .ds_right_wrapper {
  margin-top: 41px;
}

.ds_contact .ds_contact_pack .ds_right_wrapper .ds_content {
  padding: 54px 79px;
  background: white;
  border-radius: 5px;
  padding-bottom: 40px;
}

.ds_contact .ds_contact_pack .ds_right_wrapper .ds_content h3 {
  font-weight: 500;
  margin-bottom: 28px;
  font-size: 1.875em;
}

.ds_contact .ds_contact_pack .ds_right_wrapper .ds_content .wpcf7 .ds_button_text {
  max-width: 497px;
}

.ds_contact .ds_contact_pack .ds_right_wrapper .ds_content .wpcf7 .ds_button_text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ds_contact .ds_contact_pack .ds_right_wrapper .ds_content .wpcf7 label {
  color: #222222;
}

.ds_contact .ds_contact_pack .ds_right_wrapper .ds_content .wpcf7 label .ds_hvezda {
  color: #bb0011;
}

@media only screen and (max-width: 400px) {
  .ds_contact {
    padding-bottom: 47px;
  }
  .ds_contact .ds_contact_pack .ds_right_wrapper .ds_content {
    padding: 54px 19px;
  }
}
/*# sourceMappingURL=main.css.map */