@charset "UTF-8";
/*
Media query steps
0-600px :       xs - Phone
600-900px :     sm - Tablet portrait
900-1200px :    md - Tablet landscape
1200-1800px :   lg - Normal layout
1800px + :      xl - Large desktop

Created media query mixins and the use in any place will be much more
@include media([step(xs,sm...)]) { [css for the media query] }
*/
/* sass variables
@import '../../styles/common.scss';
*/
:root {
  --color-primary: $c-primary;
  --color-backgroud: $c-backgroud;
  --color-accent: $c-accent;
  --color-base: $c-base;
  --color-base-light: $c-base-light;
  --color-thm-light: $c-thm-light;
  --color-thm-mid: $c-thm-mid;
  --color-thm-dark: $c-thm-dark;
}

/*  font personalizzate */
@font-face {
  font-family: "Agrandir-Grand-bold";
  src: url("./fonts/Agrandir-GrandHeavy.eot");
  src: url("./fonts/Agrandir-GrandHeavy.eot?#iefix") format("embedded-opentype"), url("./fonts/Agrandir-GrandHeavy.woff2") format("woff2"), url("./fonts/Agrandir-GrandHeavy.woff") format("woff"), url("./fonts/Agrandir-GrandHeavy.ttf") format("truetype"), url("./fonts/Agrandir-GrandHeavy.svg#Agrandir-GrandHeavy") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir-Regular";
  src: url("./fonts/Agrandir-Regular.eot");
  src: url("./fonts/Agrandir-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/Agrandir-Regular.woff2") format("woff2"), url("./fonts/Agrandir-Regular.woff") format("woff"), url("./fonts/Agrandir-Regular.ttf") format("truetype"), url("./fonts/Agrandir-Regular.svg#Agrandir-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir-Narrow";
  src: url("./fonts/Agrandir-Tight.eot");
  src: url("./fonts/Agrandir-Tight.eot?#iefix") format("embedded-opentype"), url("./fonts/Agrandir-Tight.woff2") format("woff2"), url("./fonts/Agrandir-Tight.woff") format("woff"), url("./fonts/Agrandir-Tight.ttf") format("truetype"), url("./fonts/Agrandir-Tight.svg#Agrandir-Tight") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir-WideLight";
  src: url("./fonts/Agrandir-WideLight.eot");
  src: url("./fonts/Agrandir-WideLight.eot?#iefix") format("embedded-opentype"), url("./fonts/Agrandir-WideLight.woff2") format("woff2"), url("./fonts/Agrandir-WideLight.woff") format("woff"), url("./fonts/Agrandir-WideLight.ttf") format("truetype"), url("./fonts/Agrandir-WideLight.svg#Agrandir-WideLight") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Handwrite";
  src: url("./fonts/handwrite.eot");
  src: url("./fonts/handwrite.eot?#iefix") format("embedded-opentype"), url("./fonts/handwrite.woff2") format("woff2"), url("./fonts/handwrite.woff") format("woff"), url("./fonts/handwrite.ttf") format("truetype"), url("./fonts/handwrite.svg#handwrite") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  color: #252525;
  scroll-behavior: smooth;
}

body {
  font-family: "Agrandir-Regular", Verdana, Arial, sans-serif;
  color: #252525;
  background-color: #ffffff;
}

a {
  font-family: "Agrandir-Regular", Verdana, Arial, sans-serif;
  text-decoration: none;
  color: #252525;
}

a:visited,
a:active {
  color: #252525;
  fill: #252525;
}

ul {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Agrandir-Grand-bold", "Agrandir-Regular", Verdana, Arial, sans-serif;
}

h1 {
  font-size: 5rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 4rem;
}
@media (max-width: 600px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: 3.5rem;
}
@media (max-width: 600px) {
  h3 {
    font-size: 2.1rem;
  }
}

h4 {
  font-size: 3rem;
}
@media (max-width: 600px) {
  h4 {
    font-size: 1.9rem;
  }
}

h5 {
  font-size: 2.5rem;
}
@media (max-width: 600px) {
  h5 {
    font-size: 1.8rem;
  }
}

p {
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  p {
    font-size: 1.6rem;
  }
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top-color: currentcolor;
  border-top-style: none;
  border-top-width: 0px;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  li {
    font-size: 1.6rem;
  }
}

/*
input {
  width: 100%;
  border-radius: 2px;
  border: 1px solid $c-primary;
  outline: none;
  color: $c-thm-light;
}
//prevent chrome to change color in prefill
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
  background-color: #ffffff !important;
  color: #555 !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #555555 !important;
  font-family: "Montserrat" !important;
  font-size: 1.8rem !important;
}
*/
.hrsoft {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #007d83, rgba(0, 0, 0, 0));
  max-width: 80rem;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.pointer {
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}
@media (max-width: 600px) {
  .text-justify {
    text-align: left;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.display--none {
  display: none;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.container {
  max-width: 120rem;
  width: 100%;
  margin-top: 16rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container--fixsptop {
  margin-top: -4rem;
}

.section {
  padding: 6rem 0 2rem 0;
  text-align: center;
}
.section__title__primary {
  font-size: 3.2rem;
  padding: 1rem 0 3rem 0;
  font-weight: 100;
}
.section--notoppadd {
  padding-top: 0;
}

.breadcrumbs {
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .breadcrumbs {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.d-none {
  display: none;
}

.font-2 {
  font-size: 2rem;
}

.font-3 {
  font-size: 3rem;
}

.font-3-4 {
  font-size: 3.5rem;
}

.font-4 {
  font-size: 4rem;
}

.font-4-5 {
  font-size: 4.5rem;
}

.font-5 {
  font-size: 5rem;
}

.font-5-6 {
  font-size: 5.5rem;
}

.font-6 {
  font-size: 6rem;
}

.cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .cols {
    flex-direction: column;
  }
}

.col-2 {
  width: 48%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .col-2 {
    width: 100%;
  }
}

.col-3 {
  width: 31.5%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .col-3 {
    width: 100%;
  }
}

.col-4 {
  width: 24%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .col-4 {
    width: 100%;
  }
}

.col-2_3 {
  width: 65%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .col-2_3 {
    width: 100%;
  }
}

.col-1_3 {
  width: 30%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .col-1_3 {
    width: 100%;
  }
}

/* added to fix */
.fadecontainer {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.fade-in-left {
  position: relative;
  transform: translateX(-100%);
  opacity: 0;
  width: 100%;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-right {
  position: relative;
  transform: translateX(100%);
  opacity: 0;
  width: 100%;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-top {
  position: relative;
  transform: translateY(-100%);
  opacity: 0;
  width: 100%;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-bottom {
  position: relative;
  transform: translateY(100%);
  opacity: 0;
  width: 100%;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-scalesm {
  position: relative;
  transform: scale(0.5);
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fgrid {
  font-size: 3.5rem;
  display: flex;
  width: 100%;
}

@media (max-width: 900px) {
  .fgrid {
    font-size: 2.5rem;
  }
}
.fgrid h2 {
  font-size: 5rem;
}

@media (max-width: 900px) {
  .fgrid h2 {
    font-size: 4rem;
  }
}
@media (max-width: 600px) {
  .fgrid h2 {
    font-size: 3rem;
  }
}
.fgrid__right {
  justify-content: right;
}

@media (max-width: 900px) {
  .fgrid__right {
    justify-content: center;
  }
}
.fgrid__left {
  justify-content: left;
}

@media (max-width: 900px) {
  .fgrid__left {
    justify-content: center;
  }
}
.fgrid__center {
  justify-content: center;
}

.fgrid__divleft {
  width: 30%;
  margin-left: 30rem;
  margin-right: 15rem;
}

@media (max-width: 1400px) {
  .fgrid__divleft {
    width: 35%;
    margin-left: 20rem;
    margin-right: 15rem;
  }
}
@media (max-width: 1200px) {
  .fgrid__divleft {
    width: 100%;
    margin-left: 15rem;
    margin-right: 15rem;
  }
}
@media (max-width: 900px) {
  .fgrid__divleft {
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
.fgrid__divright {
  width: 30%;
  margin-left: 15rem;
  margin-right: 30rem;
}

@media (max-width: 1400px) {
  .fgrid__divright {
    width: 35%;
    margin-left: 15rem;
    margin-right: 20rem;
  }
}
@media (max-width: 1200px) {
  .fgrid__divright {
    width: 100%;
    margin-left: 15rem;
    margin-right: 15rem;
  }
}
@media (max-width: 900px) {
  .fgrid__divright {
    width: 100%;
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
.fillaccent {
  color: #c1ff72;
  fill: #c1ff72;
}

.fillbase {
  color: #0051bc;
  fill: #0051bc;
}

.fgrid__arrow {
  height: 12rem;
  width: 12rem;
}

@media (max-width: 1200px) {
  .fgrid__arrow {
    display: none;
  }
}
.fgrid__arrow__small {
  display: none;
}

@media (max-width: 1200px) {
  .fgrid__arrow__small {
    display: block;
  }
}
.fgrid__arrow__diag {
  height: 9rem;
  width: 9rem;
}

@media (max-width: 1200px) {
  .fgrid__arrow__diag {
    display: none;
  }
}
@media (max-width: 900px) {
  .fgrid__arrow__small {
    height: 8rem;
    width: 8rem;
  }
}
.back-black {
  background-color: #09002f;
  color: #c1ff72;
  fill: #c1ff72;
}

.back-black a {
  color: #c1ff72;
  fill: #c1ff72;
}

.back-yellow {
  background-color: #e1ffbb;
  color: #09002f;
  fill: #09002f;
}

.back-yellow a {
  color: #09002f;
  fill: #09002f;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-spinner {
  width: 150px;
  height: 150px;
}

#loading-spinner img {
  width: 100%;
  height: 100%;
}

/* endo to fix */
/** ajax loader and progress bar **/
.modalAjaxLoader {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8) url("../../img/ajax.gif") 50% 50% no-repeat;
}

.progress-container {
  z-index: 2000;
  position: fixed;
  top: 60%;
  left: 50%;
  padding: 10px;
  width: 250px;
  margin-left: -125px;
  text-align: center;
  display: none;
}

.progress-container .progress {
  margin: 0 auto;
  width: 250px;
}

.progress {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

.progress-bar {
  background-color: #edba31;
  height: 16px;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  -moz-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
}

/** end of ajax loader and progress bar **/
/* aminations */
@keyframes gradient45 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  border-radius: 2px;
  text-transform: uppercase;
  padding: 1.8rem 4.5rem;
  font-size: 2rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-accent {
  color: #ffffff;
  background-color: #d1aeac;
  border-color: #d1aeac;
}

.btn-accent:hover {
  color: #d1aeac;
  background-color: #4a989a;
  border-color: #4a989a;
}

.btn-mid {
  color: #ffffff;
  background-color: #0051bc;
  border-color: #0051bc;
}

.btn-mid:hover {
  color: #252525;
  background-color: #c1ff72;
  border-color: #c1ff72;
}

#slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  height: auto !important;
  display: flex;
}
#slider ul {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}
#slider ul li {
  flex: 0 0 100%;
  text-align: center;
  line-height: 20rem;
  max-width: 120rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  #slider {
    height: auto !important;
  }
  #slider ul li {
    max-width: 70rem;
  }
}
@media (max-width: 900px) {
  #slider {
    height: auto !important;
  }
  #slider ul li {
    max-width: 50rem;
  }
}
@media (max-width: 600px) {
  #slider {
    height: auto !important;
  }
  #slider ul li {
    max-width: 40rem;
  }
}
@media (max-width: 400px) {
  #slider {
    height: auto !important;
  }
  #slider ul {
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
  }
  #slider ul li {
    width: 100%;
    padding: 0 0.5rem;
  }
}

.slider__control_prev, .slider__control_next {
  position: absolute;
  font-size: 5rem;
  top: 50%;
  z-index: 999;
  padding: 2.5rem 3.5rem;
  width: auto;
  height: auto;
  background: #0051bc;
  border: solid 2px #0051bc;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 25px;
  cursor: pointer;
  transform: translateY(-50%);
}
.slider__control_prev:hover, .slider__control_next:hover {
  background-color: #c1ff72;
  color: #0051bc;
  transition: all 0.2s ease;
}
.slider__control_prev {
  border-radius: 50rem;
  left: 1rem;
}
.slider__control_next {
  right: 1rem;
  border-radius: 50rem;
}
.slider__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 90rem;
  margin: 0 auto;
}
.slider__slide__text {
  font-size: 2.5rem;
  color: #0051bc;
  margin-bottom: 3rem;
  text-align: justify;
  overflow: hidden;
  padding: 0 1rem;
  word-wrap: break-word;
}
@media (max-width: 600px) {
  .slider__slide__text {
    text-align: left;
  }
}
.slider__slide__img {
  width: 13rem;
  height: 13rem;
  border-radius: 10rem;
  margin-bottom: 3rem;
}
.slider__slide__name {
  padding: 0.5rem;
  padding-bottom: 0rem;
  margin: 0;
  font-weight: 600;
  font-size: 2.5rem;
  color: #0051bc;
}
.slider__slide__role {
  padding-bottom: 0.5rem;
  padding-top: 0;
  margin: 0;
  font-weight: 100;
  font-size: 2.2rem;
  color: #0051bc;
}
.slider__slide__company {
  padding: 0.5rem;
  margin: 0;
  margin-top: 1rem;
  color: #0051bc;
  font-size: 2.5rem;
  font-weight: 700;
  background-color: #c1ff72;
  border-radius: 50rem;
  padding: 1rem 2rem 0.6rem 2rem;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .slider__slide {
    max-width: 50rem;
  }
}
@media (max-width: 900px) {
  .slider__slide {
    max-width: 100%;
  }
  .slider__control_prev, .slider__control_next {
    display: none;
  }
}
@media (max-width: 600px) {
  .slider__slide {
    width: 100%;
  }
}

.paginator {
  text-align: center;
  font-size: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}
.paginator__text {
  margin-bottom: 2rem;
}
.paginator__general {
  display: flex;
  justify-content: center;
}
.paginator__pagerelement {
  list-style: none;
  display: inline-flex;
}
.paginator__pagerelement a {
  color: #f02e41;
  border-color: #f02e41;
  border-style: solid;
  border-width: thin;
  border-radius: 30px;
  background-color: transparent;
  text-align: center;
  margin: 2px;
  font-size: 15px;
  letter-spacing: 0px;
  padding: 13px 13px;
  text-transform: none;
  line-height: 1;
}
.paginator__pagerelement a:hover {
  background-color: #f02e41;
  color: white;
}
.paginator__pagerelement--numb a {
  width: 42px;
  height: 42px;
}

.form-group:not(:last-child) {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: 4rem;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.7;
  color: #0051bc;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0 0 0 0;
  border-style: solid;
  border-width: 0 0 2px 0;
  border-color: #0051bc;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  outline: none;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control-label {
  font-size: 1.7rem;
  font-weight: 600;
}

/* added to fix */
.form-control::-moz-placeholder {
  color: #a49fa5;
  opacity: 1;
}

.form-control::placeholder {
  color: #a49fa5;
  opacity: 1;
}

.form-control:focus::-moz-placeholder {
  color: #252525;
}

.form-control:focus::placeholder {
  color: #252525;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:active,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:hover {
  background-color: #fff;
  font-size: 3rem;
  color: #0051bc;
}

/* endfix */
textarea.form-control {
  height: auto;
  overflow: auto;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: var(--color-cat-invalidinput) !important;
}

textarea.invalid {
  background-color: var(--color-cat-invalidinput) !important;
}

select.invalid {
  background-color: var(--color-cat-invalidinput) !important;
}

::-moz-placeholder {
  color: var(--color-primary-accent);
  opacity: 1;
}

/* set placeholder color for forms */
::placeholder {
  color: var(--color-primary-accent);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-primary-accent);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color-primary-accent);
}

.form-checkbox-container {
  height: 3rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-check-label {
  padding-left: 1rem;
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-weight: 600;
}
@media (max-width: 400px) {
  .form-check-label {
    font-size: 1.1rem;
  }
}

.form-check-input:after {
  content: "✓";
  font-weight: 900;
  display: none;
  color: var(--color-primary);
  font-size: 1.8rem;
}

.form-check-input:hover {
  background-color: var(--color-secondary-blue);
}

.form-check-input:checked {
  background-color: var(--color-primary-accent);
}

.form-check-input:checked::after {
  display: block;
}

.lightgallery {
  /* Prevent vertical gaps */
  /* line-height: 0; */
  /* -webkit-column-count: 3; */
  /* -webkit-column-gap:   0px; */
  -moz-column-count: 3;
  -moz-column-gap: 0px;
  column-count: 3;
  column-gap: 0px;
}
.lightgallery img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
  padding: 2px;
}
@media (max-width: 900px) {
  .lightgallery {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .lightgallery {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

/*  insert image section  */
.addimg__img {
  padding-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.addimg__img-box {
  display: inline-block;
  margin: 4px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0px;
  min-height: 200px;
  width: 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.addimg__img-box__inner {
  fill: var(--color-white);
  height: 8rem;
  width: 8rem;
  padding: 17px 20px 14px 20px;
  background-color: #e7e7e7;
  border-radius: 50px;
}
.addimg__container {
  display: inline-block;
  margin: 0.4rem;
  padding: 1.5rem;
  position: relative;
  border: 1px solid #ccc;
  background-color: var(--color-primary-gray);
  color: var(--color-primary-accent);
  border-radius: 0px;
  min-height: 20rem;
  min-width: 15rem;
}
.addimg__container__delete {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: red;
  padding: 0.4rem 0.4rem;
  border-radius: 5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.addimg__container__size {
  position: absolute;
  bottom: 4rem;
  left: 2.2rem;
  background-color: var(--color-primary);
  border-radius: 3rem;
  padding: 0.2rem 0.6rem;
  color: var(--color-white);
  font-size: 1.4rem;
  border-color: var(--color-primary-accent) !important;
  border: 1px solid;
}
.addimg__container__radio {
  position: absolute;
  bottom: 8px;
  left: 20px;
}
.addimg__container__label {
  position: absolute;
  bottom: 0.7rem;
  left: 4rem;
  font-size: 1.4rem;
  font-family: "raleway";
  font-weight: 100;
  letter-spacing: 0.1rem;
}
.addimg__container__img {
  width: 100%;
  border-color: var(--color-primary-accent) !important;
  border: 1px solid;
  background-color: var(--color-white);
}
.addimg__prev-mod {
  height: 150px;
  width: auto;
}

.client-carusel {
  overflow: hidden;
  padding-bottom: 12rem;
  background-color: #09002f;
}
.client-carusel__title {
  color: #c1ff72;
  padding-bottom: 8rem;
}
.client-carusel__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  will-change: transform;
}
.client-carusel__slide {
  height: 20rem;
  box-sizing: border-box;
  padding: 0 6rem;
}
@media (max-width: 600px) {
  .client-carusel__slide {
    height: 15rem;
    padding: 0 3rem;
  }
}
.client-carusel__slide__inner {
  aspect-ratio: 1/1;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.client-carusel__slide img {
  width: auto;
  height: 100%;
}

.header {
  position: relative;
  margin-bottom: 6rem;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header__home {
  min-height: 90vh;
}
.header__contnav {
  position: relative;
}
.header__nav {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}
.header__nav__cont {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #fff;
  border-bottom: 2px solid #0051bc;
}
.header__nav__small {
  display: none;
}
.header__nav__logosm {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3rem;
  height: 7.5rem;
  width: auto;
}
.header__nav__logosm svg {
  height: 6rem;
  width: auto;
}
.header__nav__logosm__logo {
  height: 4.5rem;
}
@media (max-width: 900px) {
  .header__nav {
    display: flex;
    flex-direction: row;
  }
  .header__nav__small {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 2px solid #0051bc;
  }
  .header__nav__cont {
    position: absolute;
    top: 7.2rem;
    display: none;
    flex-direction: column;
    width: 100%;
    border-bottom: 2px solid #0051bc;
  }
  .header__nav__cont.active {
    display: flex;
  }
}

.header__nav__el {
  flex: 1;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border-left: 1px solid #0051bc;
  border-right: 1px solid #0051bc;
  font-weight: 900;
}

.header__nav__el__selected {
  background-color: #0051bc;
  color: #c1ff72;
  fill: #c1ff72;
}

.header__nav__el__selected a {
  color: #c1ff72 !important;
  fill: #c1ff72 !important;
}

.header__nav__el__logo {
  fill: #0051bc;
  height: 5rem;
  width: auto;
}

.header__nav__el__onlys {
  display: none;
}

.header__nav__el__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0051bc !important;
  transition: background-color 0.6s ease, color 0.6s ease;
}

@media (max-width: 900px) {
  .header__nav__el__link {
    height: 6rem;
  }
}
.header__nav__el__link:hover {
  background-color: #92c1ff;
  color: #c1ff72 !important;
}

@media (max-width: 900px) {
  .header__nav__el {
    border-left: 0;
    border-right: 0px;
    font-size: 2.5rem;
    overflow: hidden;
  }
  .header__nav__el__hidesm {
    display: none;
  }
  .header__nav__el__logo {
    display: none;
  }
  .header__nav__el__link {
    border-bottom: 1px solid #0051bc;
  }
  .header__nav__el__onlys {
    display: Flex;
  }
}
.header__nav__burger {
  display: none;
}
@media (max-width: 900px) {
  .header__nav__burger {
    display: flex;
    flex: 0.1;
    max-width: 3rem;
    justify-content: flex-end;
    align-items: center;
  }
}

.header__burger {
  flex-direction: column;
  cursor: pointer;
  transition: transform 1s;
  margin-right: 0.5rem;
}

.header__burger__bar {
  width: 25px;
  height: 3px;
  background-color: #0051bc;
  margin: 3px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.active .header__burger__bar:first-child {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.header__burger.active .header__burger__bar:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger__bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 900px) {
  .header__burger {
    display: flex;
    z-index: 1000;
  }
  .header__burger.active {
    transform: rotate(90deg);
  }
  .header__burger.active .header__burger__bar:first-child {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .header__burger.active .header__burger__bar:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active .header__burger__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}
.header__content {
  min-height: 100%;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  padding: 25rem 30rem 10rem 30rem;
}
@media (max-width: 1400px) {
  .header__content {
    padding: 25rem 10rem 10rem 10rem;
  }
}
@media (max-width: 900px) {
  .header__content {
    padding: 15rem 5rem 10rem 5rem;
    height: 60rem;
  }
}
@media (max-width: 600px) {
  .header__content {
    padding: 15rem 1rem 10rem 1rem;
    height: 45rem;
  }
}

.header__content__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.header__content__wrap__pretitle {
  align-self: flex-start;
  display: inline-block;
  width: auto;
  color: #c1ff72;
  background-color: #0051bc;
  border-radius: 16rem;
  padding: 0.8rem 2.5rem;
  padding-bottom: 0.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .header__content__wrap__pretitle {
    font-size: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .header__content__wrap__pretitle {
    margin-bottom: 5rem;
  }
}

.header__content__wrap__pretitle p {
  margin: 0;
  font-size: 2.8rem;
}
@media (max-width: 1200px) {
  .header__content__wrap__pretitle p {
    font-size: 2.2rem;
  }
}
@media (max-width: 1200px) {
  .header__content__wrap__pretitle p {
    font-size: 2rem;
  }
}

.header__content__wrap__title {
  font-size: 10rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #0051bc;
  word-break: break-word;
}

@media (max-width: 1400px) {
  .header__content__wrap__title {
    font-size: 10rem;
  }
}
@media (max-width: 1200px) {
  .header__content__wrap__title {
    font-size: 6rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 600px) {
  .header__content__wrap__title {
    font-size: 3.5rem;
  }
}
.header__content__wrap__title__change {
  padding: 0;
  padding-right: 0.4rem;
  border-right: 4px solid #c1ff72;
  animation: blink 1s infinite;
}

.header__content__wrap__subtitle,
.header__content__wrap__subtitle2 {
  min-height: 4.9rem;
  font-size: 3.2rem;
  color: #0051bc;
}

@media (max-width: 1200px) {
  .header__content__wrap__subtitle,
  .header__content__wrap__subtitle2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 600px) {
  .header__content__wrap__subtitle,
  .header__content__wrap__subtitle2 {
    font-size: 1.8rem;
    min-height: auto;
  }
}
.header__bottom__container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 5rem;
}
@media (max-width: 600px) {
  .header__bottom__container {
    padding-bottom: 1rem;
  }
}

.header__bottom__container__arrow {
  fill: #0051bc;
  transition: transform 0.6s ease, fill 0.6s ease;
}
.header__bottom__container__arrow:hover {
  transform: translateY(2rem);
  fill: #92c1ff;
}

.header__bottom__container__arrow__icon {
  height: 12rem;
  width: 12rem;
}
@media (max-width: 600px) {
  .header__bottom__container__arrow__icon {
    height: 8rem;
    width: 8rem;
    margin-top: 6rem;
  }
}

.header__contact {
  z-index: 999;
  position: fixed;
  bottom: 9rem;
  right: 8rem;
  background-color: #09002f;
  border-radius: 200rem;
  height: 13.5rem;
  width: 13.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  border: 2px solid #c1ff72;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  color: #c1ff72;
  transition: border 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.header__contact:hover {
  border: 2px solid #09002f;
  background-color: #c1ff72;
  color: #09002f;
}

@media (max-width: 900px) {
  .header__contact {
    bottom: 4rem;
    right: 2rem;
    height: 10rem;
    width: 10rem;
    font-size: 1.8rem;
  }
}
@keyframes blink {
  0% {
    border-right-color: #c1ff72;
  }
  50% {
    border-right-color: #92c1ff;
  }
  100% {
    border-right-color: #c1ff72;
  }
}
/* Footer css */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12rem 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .footer {
    padding: 12rem 2.5rem 1.6rem 2/5rem;
  }
}
@media (max-width: 1200px) {
  .footer {
    padding: 12rem 1rem 1.6rem 1rem;
  }
}
.footer__container {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #09002f;
  padding-bottom: 8rem;
}

@media (max-width: 900px) {
  .footer__container {
    padding: 2rem 1rem 2rem 1rem;
  }
}
.footer__col-left {
  font-weight: 100;
  color: #09002f;
  display: flex;
  flex-direction: column;
}

.footer__col-left a {
  color: #09002f;
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 2rem;
}

.footer__col-center {
  font-weight: 100;
  color: #09002f;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__col-center-text {
  font-size: 2.5rem;
  text-align: justify;
  margin: 0;
  margin-bottom: 2.5rem;
}

.footer__col-center-input {
  font-size: 1.4rem;
  padding: 0.8rem;
  border: 0;
}

.footer__col-right {
  font-size: 1.8rem;
  font-weight: 100;
  color: #09002f;
  fill: #09002f;
  text-align: right;
}

.footer__col-right-social {
  fill: #09002f;
  height: 4.5rem;
  width: 4.5rem;
  margin-right: 2.5rem;
}

.footer__cr {
  text-align: center;
}

.footer__cr-text {
  color: #09002f;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 4rem;
}

.footer__cr-logo {
  fill: #09002f;
  width: auto;
  height: 6rem;
}

@media (max-width: 1200px) {
  .footer__container {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .footer__col-left {
    text-align: center;
    margin-bottom: 3rem;
  }
  .footer__col-center {
    align-items: center;
    margin-bottom: 3rem;
  }
  .footer__col-center-input {
    width: 95%;
    max-width: 25rem;
  }
  .footer__col-right {
    text-align: center;
  }
  .footer__col-right-social {
    margin: 1rem;
  }
}
.table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.6rem;
  margin-top: 3rem;
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--color-lightprim);
}
.table td, .table th {
  border: 1px solid #ddd;
  padding: 0.6rem;
}
.table tr {
  vertical-align: top;
}
.table tr:nth-child(2n) {
  background-color: var(--color-white);
}
.table--green th {
  background-color: var(--color-cat-reviews);
  color: var(--color-white);
}
.table--red th {
  background-color: var(--color-cat-safety);
  color: var(--color-white);
}
.table--primary th {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.login__container {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  margin-top: 5rem;
  color: var(--color-primary);
}
.login__container__title {
  margin-top: 3rem;
  font-size: 3rem;
  color: #0051bc;
}
.login__container__form {
  max-width: 40rem;
  margin: 0 auto;
  margin-top: 4rem;
  font-size: 2rem;
}
.login__container__form__element {
  margin-bottom: 2rem;
  margin-top: 1rem;
  border: 1px solid #252525;
  border-radius: 4px;
  color: #0051bc;
  font-weight: 600;
}
.login__container__form__btn {
  min-width: 12rem;
  text-align: center;
  font-size: 1.8rem;
  padding: 1.3rem 2rem;
  text-transform: none;
  line-height: 1;
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .login__container__form__btn {
    font-size: 1.4rem;
    padding: 1rem 0.5rem;
  }
}

.dmn__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.dmn__subtitle {
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
}
.dmn__menuwrap {
  height: 5rem;
  color: #ffffff;
  background-color: #0051bc;
  font-size: 2.4rem;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.dmn__navbuttons {
  margin-right: 0.7rem;
  margin-left: 0.7rem;
  height: 5rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dmn__navbuttons:hover {
  background-color: #245d68;
  color: #ffffff;
  transition: 0.5s;
}
.dmn__main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.dmn__main__cards {
  height: 25rem;
  width: 19rem;
  max-width: 100%;
  border: 1px solid;
  text-align: center;
  margin-left: 6rem;
  margin-right: 6rem;
  margin-bottom: 6rem;
  font-size: 1.6rem;
  font-family: "ralewaysemibold";
  line-height: 2rem;
  background-color: var(--color-white);
}
.dmn__main__cards__icon {
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
}
.dmn__main__cards__title {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.dmn__main__cards__text-red {
  color: red;
}
.dmn__main__cards-blog {
  color: #d1aeac;
  fill: #d1aeac;
  border-color: #d1aeac;
}
.dmn__main__cards-sub {
  color: #007d83;
  fill: #007d83;
  border-color: #007d83;
}
.dmn__main__cards-test {
  color: #245d68;
  fill: #245d68;
  border-color: #245d68;
}
.dmn__main__cards-back {
  color: #252525;
  fill: #252525;
  border-color: #252525;
}
.dmn__main__inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.dmn__main__addicon {
  fill: #ffffff;
  background-color: #007d83;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0.7rem;
  border-radius: 3px;
  margin-left: 1rem;
}
.dmn__blog__openicon {
  fill: #4a989a;
  height: 2.5rem;
  width: 2.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.dmn__blog__deleteicon {
  fill: #ffffff;
  background-color: red;
  height: 2.3rem;
  width: 2.3rem;
  padding: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 10rem;
}
.dmn__blog__newmodify__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
}
.dmn__blog__newmodify__subtitle {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.dmn__blog__newmodify__cont {
  display: flex;
}
.dmn__blog__newmodify__cont__left {
  flex: 1;
}
.dmn__blog__newmodify__cont__left2 {
  flex: 2;
}
.dmn__blog__newmodify__cont__right {
  flex: 1;
  margin-left: 2rem;
}
.dmn__blog__newmodify__cont__right2 {
  flex: 2;
  margin-left: 2rem;
}
.dmn__blog__newmodify__cont__submitbtn {
  margin-bottom: 2rem;
  font-size: 2rem;
  border-radius: 2px;
  padding: 1rem 2rem;
}
.dmn__blog__newmodify__cont__low-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.dmn__blog__newmodify__gallery {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.dmn__blog__newmodify__gallery__btninput {
  font-size: 2.1rem;
  width: fit-content;
  border: 0;
}
.dmn__blog__newmodify__gallery__btnadd {
  font-size: 1.8rem;
  border-radius: 2px;
  padding: 0.3rem 2rem;
}
.dmn__blog__newmodify__gallery__minigallery {
  display: flex;
}
.dmn__blog__newmodify__gallery__minigallery__element {
  height: 150px;
  margin-bottom: 1rem;
  margin-right: 1rem;
}
.dmn__blog__newmodify__gallery__minigallery__img {
  height: 100%;
  width: 100%;
}
.dmn__blog__newmodify__gallery__modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.dmn__blog__newmodify__gallery__modal__content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 2rem;
  border: 1px solid #888;
  width: 50%;
}
.dmn__blog__newmodify__gallery__modal__content__img {
  max-height: 40rem;
}
.dmn__blog__newmodify__gallery__modal__content__imgcont {
  max-height: 40rem;
  max-width: 100%;
  height: auto;
}
.dmn__blog__newmodify__gallery__modal__btn {
  font-size: 1.8rem;
  border-radius: 3rem;
  padding: 0.3rem 2rem;
}
.dmn__blog__newmodify__gallery__modal__close {
  text-align: right;
  font-size: 3rem;
  font-weight: 600;
  width: 100%;
  padding-right: 3rem;
  color: red;
}
.dmn__backlinks {
  display: flex;
  width: 100%;
}
.dmn__backlinks__left {
  width: 48%;
  margin: 1rem;
}
.dmn__backlinks__right {
  width: 48%;
  margin: 1rem;
}
.dmn__backlinks__imgcontainer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
}
.dmn__backlinks__imgcontainer__element {
  width: 33%;
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dmn__backlinks__imgcontainer__element--imgcont {
  display: flex !important;
  align-items: center;
}
.dmn__backlinks__imgcontainer__imginput {
  font-size: 2rem;
}
.dmn__backlinks__imgcontainer__imgupl {
  height: 6.5rem;
  width: auto;
}
.dmn__backlinks__submitbtn {
  margin-bottom: 3rem;
  margin-top: 2rem;
  margin-right: 2rem;
  font-size: 2rem;
  border-radius: 3rem;
  padding: 0.5rem 2rem;
}
.dmn__subscribers__button {
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 2rem;
  border-radius: 3rem;
  padding: 0.5rem 2rem;
}
.dmn__subscribers__icon {
  width: 2.8rem;
  height: 2.8rem;
  fill: var(--color-white);
  background-color: red;
  border-radius: 30rem;
  padding: 0.4rem;
}
.dmn__subscribers__icon--approved {
  background-color: var(--color-bright-green);
  top: 0.5rem;
}
.dmn__subscribers__icon--approved-margin {
  margin-left: 1.5rem;
}
.dmn__subscribers__icon--delete {
  background-color: var(--color-text-dark);
}
.dmn .cke_1 .cke_top {
  background-color: #d1aeac !important;
}
.dmn .cke_1 .cke_bottom {
  background-color: #d1aeac !important;
}
.dmn .cke_1 .cke_dialog_title {
  background-color: #d1aeac !important;
}
.dmn .cke_1 .cke_dialog_footer {
  background-color: #d1aeac !important;
}
.dmn a.cke_dialog_ui_button_ok {
  background-color: #252525 !important;
  color: #ffffff !important;
}
.dmn a.cke_dialog_ui_button_ok:hover {
  background-color: #252525 !important;
  border-color: #252525 !important;
}
.dmn a.cke_dialog_ui_button_cancel {
  background-color: #ffffff !important;
  color: #252525 !important;
}
.dmn a.cke_dialog_ui_button_cancel:hover {
  background-color: #007d83 !important;
  color: #ffffff !important;
}

.ins__blogcontainer ol, .ins__blogcontainer ul {
  -webkit-padding-start: 4rem;
  padding-inline-start: 4rem;
}
@media (max-width: 600px) {
  .ins__blogcontainer ol, .ins__blogcontainer ul {
    -webkit-padding-start: 1rem;
    padding-inline-start: 1rem;
  }
}
.ins__section {
  padding: 6rem 12rem;
}
@media (max-width: 1200px) {
  .ins__section {
    padding: 6rem 6rem;
  }
}
@media (max-width: 900px) {
  .ins__section {
    padding: 6rem 2rem;
  }
}
.ins__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: justify;
}
@media (max-width: 1200px) {
  .ins__top {
    flex-direction: column-reverse;
  }
}
.ins__top__main {
  flex: 4;
  margin-right: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 1200px) {
  .ins__top__main {
    flex: 1;
    margin-right: 0;
  }
}
.ins__top__main__title {
  width: 100%;
  border-bottom: 2px solid #92c1ff;
  color: #0051bc;
}
.ins__top__main__latest {
  margin-top: 4rem;
  margin-bottom: 6rem;
  color: #09002f;
}
.ins__top__main__latest__img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.ins__top__main__latest__img:hover {
  filter: grayscale(0%);
}
.ins__top__main__latest__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ins__top__main__latest__wrap-1 {
  width: 65%;
}
.ins__top__main__latest__wrap-2 {
  width: 30%;
}
@media (max-width: 1200px) {
  .ins__top__main__latest__wrap {
    flex-direction: column;
  }
  .ins__top__main__latest__wrap-1 {
    width: 100%;
  }
  .ins__top__main__latest__wrap-2 {
    width: 100%;
  }
}
.ins__top__main__latest__title {
  margin-bottom: 5rem;
  font-size: 3rem;
  color: #0051bc;
}
@media (max-width: 900px) {
  .ins__top__main__latest__title {
    font-size: 2.2rem;
  }
}
.ins__top__main__latest__subtitle {
  font-style: italic;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  color: #0051bc;
}
@media (max-width: 900px) {
  .ins__top__main__latest__subtitle {
    font-size: 2rem;
  }
}
.ins__top__main__latest__props {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ins__top__main__latest__props-item {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-right: 2rem;
}
.ins__top__main__latest__props-icon {
  fill: #c1ff72;
  height: 4.5rem;
  width: 4.5rem;
  padding: 0.8rem;
  padding-left: 1.1rem;
  background-color: #09002f;
  border-radius: 10rem;
  margin-right: 1rem;
}
@media (max-width: 900px) {
  .ins__top__main__latest__props-icon {
    height: 2.2rem;
    width: 2.2rem;
  }
}
.ins__top__main__previous__wrapper {
  margin-bottom: 4rem;
}
.ins__top__main__previous__wrapper__element {
  margin-top: 6rem;
  max-width: 52rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.ins__top__main__previous__wrapper__element:hover {
  filter: grayscale(0%);
}
@media (max-width: 900px) {
  .ins__top__main__previous__wrapper__element {
    max-width: none;
  }
}
.ins__top__main__previous__wrapper__img {
  height: 35rem;
  overflow: hidden;
}
.ins__top__main__previous__wrapper__img-ins {
  height: 100%;
  width: 100%;
}
.ins__top__main__previous__title {
  font-size: 2.3rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  min-height: 4rem;
  color: #0051bc;
}
.ins__top__main__previous__subtitle {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 5rem;
  min-height: 8rem;
  color: #0051bc;
}
.ins__top__main__previous__props {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  color: #0051bc;
}
@media (max-width: 900px) {
  .ins__top__main__previous {
    flex-direction: column;
  }
}
.ins__top__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #0051bc;
}
@media (max-width: 1400px) {
  .ins__top__left {
    display: none;
  }
}
.ins__top__left__title {
  margin-bottom: 2rem;
}
.ins__top__left__cat {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0051bc;
}
.ins__top__left__cat-element {
  margin: 1.5rem;
  font-size: 3rem;
  color: #0051bc;
}
@media (max-width: 1200px) {
  .ins__top__left__cat {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.ins__single__title {
  font-size: 5rem;
  color: #0051bc;
}
@media (max-width: 900px) {
  .ins__single__title {
    font-size: 3rem;
  }
}
.ins__single__subt {
  font-size: 3rem;
  font-weight: 100;
  font-family: Montserrat, Verdana, Arial, sans-serif;
  color: #0051bc;
}
@media (max-width: 900px) {
  .ins__single__subt {
    font-size: 2rem;
    font-weight: 600;
  }
}
.ins__single__menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.ins__single__menu__icon {
  height: 9rem;
  width: 9rem;
  margin: 0 3rem 0 3rem;
  fill: #0051bc;
}
@media (max-width: 600px) {
  .ins__single__menu__icon {
    height: 2rem;
    width: 2rem;
    margin: 0 1rem 0 1rem;
  }
}

.services__section {
  padding-top: 12rem;
  padding-bottom: 8rem;
}

.services__section__sidepad {
  padding-left: 30rem;
  padding-right: 30rem;
}

@media (max-width: 1400px) {
  .services__section__sidepad {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (max-width: 900px) {
  .services__section__sidepad {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.services__section__title {
  font-size: 5rem;
}

@media (max-width: 900px) {
  .services__section__title {
    font-size: 4rem;
  }
}
.services__section__text {
  font-size: 3rem;
}

@media (max-width: 900px) {
  .services__section__text {
    font-size: 2.1rem;
  }
}
.services__menu__cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4rem;
}

@media (max-width: 1200px) {
  .services__menu__cols {
    justify-content: space-around;
  }
}
@media (max-width: 900px) {
  .services__menu__cols {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.services__menu-element {
  display: flex;
  width: 23%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 2rem 0 4rem 0;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .services__menu-element {
    width: 40%;
  }
}
@media (max-width: 900px) {
  .services__menu-element {
    width: 100%;
  }
}
.services__menu-icon {
  width: 100%;
  max-width: 12rem;
  max-height: 12rem;
  fill: #e1ffbb;
}

.services__menu-text {
  margin-top: 2rem;
  text-transform: uppercase;
  word-wrap: break-word;
}

.services__menu-anchor {
  margin-top: 9rem;
  scroll-margin-top: 9rem;
}

.services__descr__title {
  font-size: 4rem;
}

.services__descr__text {
  font-size: 2.5rem;
}

@media (max-width: 1200px) {
  .services__descr__div {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .services__descr__title {
    font-size: 4rem;
  }
  .services__descr__text {
    font-size: 2rem;
  }
}
.about__section {
  padding-top: 12rem;
  padding-bottom: 8rem;
}

.about__section__sidepad {
  padding-left: 30rem;
  padding-right: 30rem;
}

@media (max-width: 1400px) {
  .about__section__sidepad {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (max-width: 900px) {
  .about__section__sidepad {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.about__section__intro {
  font-size: 3rem;
}

@media (max-width: 900px) {
  .about__section__intro {
    font-size: 2.2rem;
  }
}
.about__bigtitles {
  font-size: 5rem;
}

@media (max-width: 900px) {
  .about__bigtitles {
    font-size: 3.5rem;
  }
}
.about__arrowdown {
  height: 10rem;
  width: 10rem;
}

.contacts {
  margin-top: 14rem;
}

.contacts__how {
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #0051bc;
}
.contacts__how a {
  color: #0051bc;
}

.contacts__how-2 {
  display: flex;
  flex-direction: row;
}

.contacts__how-2__social {
  height: 4rem;
  width: 4rem;
  fill: #fff;
}
.contacts__how-2__social:hover {
  fill: #c1ff72;
}

.contacts__how-2__socialcont {
  width: 8rem;
  height: 8rem;
  background-color: #92c1ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}

.contacts__how-2__socialcont:hover {
  background-color: #0051bc;
}

.contacts__how-2__socialcont:hover .contacts__how-2__social {
  fill: #c1ff72;
}

.contacts__requestanswer {
  display: none;
}

.contacts p {
  font-size: 3rem;
}

.contacts__btn {
  background-color: #92c1ff;
  color: #fff;
  border: 0;
  padding: 2rem 4rem;
  font-size: 3rem;
}

.contacts__btn:hover {
  background-color: #0051bc;
  color: #c1ff72;
}

.contacts__send {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .contacts__send {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .contacts__reverse {
    flex-direction: column-reverse !important;
  }
}
.home__section {
  padding-top: 12rem;
  padding-bottom: 8rem;
}
.home__section__pretitle {
  font-size: 3rem;
  color: #fff;
}
.home__section__pretitle-b {
  font-size: 3rem;
  color: #0051bc;
}

.home__section__sidepad {
  padding-left: 30rem;
  padding-right: 30rem;
}

@media (max-width: 1400px) {
  .home__section__sidepad {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (max-width: 900px) {
  .home__section__sidepad {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.home__section__sidepad2 {
  padding-left: 20rem;
  padding-right: 20rem;
}

@media (max-width: 1400px) {
  .home__section__sidepad2 {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (max-width: 900px) {
  .home__section__sidepad2 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.home__section__slogan {
  font-family: Handscr, Verdana, sans-serif;
  text-align: center;
  font-size: 8rem;
}
@media (max-width: 900px) {
  .home__section__slogan {
    font-size: 5rem;
  }
}
@media (max-width: 600px) {
  .home__section__slogan {
    font-size: 3.5rem;
  }
}

.home__service {
  border-bottom: solid 0.2rem #0051bc;
  color: #0051bc;
}
.home__service__left {
  width: 65%;
  margin-top: 3rem;
  font-size: 2.8rem;
}
@media (max-width: 1200px) {
  .home__service__left {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .home__service__left {
    font-size: 2rem;
  }
}
.home__service__left__arrow {
  display: none;
}
@media (max-width: 1200px) {
  .home__service__left__arrow {
    display: block;
  }
}
.home__service h2 {
  color: #c1ff72;
  background-color: #0051bc;
  padding: 1.5rem 6rem;
  border-radius: 10rem;
  font-size: 3.5;
}
@media (max-width: 400px) {
  .home__service h2 {
    font-size: 2.1rem;
    padding: 1.5rem 2rem;
    word-wrap: break-word;
  }
}

.home__service__right {
  width: 32%;
  margin-top: 3rem;
  font-size: 1.8rem;
}

@media (max-width: 1200px) {
  .home__service__right {
    display: none;
  }
}
.home__service__hidden {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out;
}

@media (max-width: 1200px) {
  .home__service__hidden {
    max-height: none;
  }
}
.home__why__logo {
  height: 100%;
}

.home__why__col1 {
  width: 48%;
}

@media (max-width: 1200px) {
  .home__why__col1 {
    display: none;
  }
}
.home__why__col2 {
  width: 48%;
  font-size: 3.5rem;
}

@media (max-width: 1200px) {
  .home__why__col2 {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .home__why__col2 {
    font-size: 2.5rem;
  }
}
.home__insights__title {
  font-size: 5rem;
  color: #0051bc;
}
@media (max-width: 1200px) {
  .home__insights__title {
    font-size: 4rem;
  }
}
@media (max-width: 900px) {
  .home__insights__title {
    font-size: 3rem;
  }
}

.home__insights__subtitle {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  font-size: 3.5rem;
  color: #0051bc;
}
@media (max-width: 1200px) {
  .home__insights__subtitle {
    font-size: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
  }
}
@media (max-width: 900px) {
  .home__insights__subtitle {
    font-size: 2.2rem;
  }
}

.home__insights__horarrow {
  transition: transform 0.6s ease, fill 0.6s ease;
  position: relative;
  cursor: pointer;
}

.home__insights__horarrow:hover {
  transform: translateX(1rem);
}

.home__insights__horarrow:hover svg {
  fill: #c1ff72;
}

.home__insights__horarrow svg {
  pointer-events: none;
  fill: #0051bc;
}

.home__insights__smallarrow {
  width: 10rem;
  margin-left: 3rem;
}

.home__insights__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0051bc;
}

.home__insights__wrap__element {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #0051bc;
}

@media (max-width: 900px) {
  .home__insights__wrap__element {
    max-width: none;
  }
}
.home__insights__wrap__element__title {
  font-size: 4rem;
}

@media (max-width: 1200px) {
  .home__insights__wrap__element__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 900px) {
  .home__insights__wrap__element__title {
    font-size: 2.5rem;
  }
}
.home__insights__wrap__element__info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 900px) {
  .home__insights__wrap__element__info {
    display: none;
  }
}
.home__insights__wrap__element__icons {
  height: 5rem;
  width: 5rem;
  margin-left: 2.5rem;
  margin-right: 1.5rem;
  fill: #c1ff72;
  background-color: #09002f;
  padding: 1.2rem;
  padding-left: 1.5rem;
  border-radius: 3rem;
}

.landing__link {
  font-size: 5rem;
  color: #0051bc;
  margin-top: 6rem;
  margin-bottom: 7rem;
}
@media (max-width: 900px) {
  .landing__link {
    font-size: 4rem;
  }
}
@media (max-width: 600px) {
  .landing__link {
    font-size: 3rem;
  }
}
.landing__titles {
  font-size: 5rem;
}
@media (max-width: 900px) {
  .landing__titles {
    font-size: 4rem;
  }
}
@media (max-width: 600px) {
  .landing__titles {
    font-size: 2.5rem;
  }
}
.landing__regtitle {
  font-size: 5rem;
  color: #0051bc;
}
@media (max-width: 900px) {
  .landing__regtitle {
    font-size: 4rem;
  }
}
@media (max-width: 600px) {
  .landing__regtitle {
    font-size: 2.5rem;
  }
}
.landing__intro {
  font-size: 3rem;
}
@media (max-width: 900px) {
  .landing__intro {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .landing__intro {
    font-size: 2rem;
  }
}


