/* ===== Base Styles ===== */
/*Sunflower*/
@font-face {
  font-family: "Sunflower";
  src: url("../fonts/sunflower-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Sunflower";
  src: url("../fonts/sunflower-medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Sunflower";
  src: url("../fonts/sunflower-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}
/*Segoe*/
@font-face {
  font-family: "Segoe";
  src: url("../fonts/segoe-ui.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Segoe";
  src: url("../fonts/segoe-ui-italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: fallback;
}
@font-face {
  font-family: "Segoe";
  src: url("../fonts/segoe-ui-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Segoe";
  src: url("../fonts/segoe-ui-bold-italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: fallback;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  --fontRoot: "Segoe";
  --fontSizeRoot: 1.8rem;
  --colorRoot: #63B0B0;
  --colorRootHov: #4b9595;
  --coral: #FF7068;
  --peach: #FFF8EF;
  --inputPadding: 10px;
  --transit: 0.2s;
  --rootBdrs: 30px;
  --var100: 100px;
}

html {
  font-size: 10px;
  position: relative;
  min-height: 100%;
}

body {
  font-size: var(--fontSizeRoot);
  font-family: var(--fontRoot), sans-serif;
  font-weight: 400;
  margin: 0;
  color: #494949;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
  border: none;
}

a {
  color: var(--colorRoot);
  transition: var(--transit);
}
a:hover {
  color: var(--colorRootHov);
  transition: var(--transit);
}

/*Titles*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sunflower", sans-serif;
  /* margin: 15px 0 30px; */
  line-height: 120%;
}

.title,
.topic {
  font-family: "Sunflower", sans-serif;
  font-weight: 700;
}

h1,
.title-1 {
  font-size: 4.4rem;
  margin: 0 0 3rem;
}

h2,
.title-2 {
  font-size: 4rem;
  margin: 1rem 0 2.8rem;
}

h3,
.title-3 {
  font-size: 3.6rem;
  margin: 1rem 0 2.6rem;
}

h4,
.title-4 {
  font-size: 3.2rem;
  margin: 1rem 0 2.4em;
}

h5,
.title-5 {
  font-size: 2.8rem;
  margin: 1rem 0 2.2rem;
}

h6,
.title-6 {
  font-size: 2.4rem;
  margin: 1rem 0 2rem;
}

p {
  margin: 15px 0;
  line-height: 140%;
  font-size: 2rem;
}

ul li,
ol li {
  line-height: 140%;
  margin: 0 0 15px 0;
}

/* ===== Base Styles End ===== */
/* ===== Form Elements ===== */
form label {
  display: inline-block;
  margin: 0 0 5px 0;
}

.form-full {
  width: 100%;
}
.form-full :is(input:is([type=text], [type=tel], [type=email], [type=password], [type=search], [type=number], [type=file], [type=date]), textarea, select) {
  width: 100%;
}
.form-full .password-holder,
.form-full .select-holder {
  width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit],
input[type=search],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
button,
select,
textarea {
  font-family: var(--fontRoot), sans-serif;
  font-size: var(--fontSizeRoot);
  display: block;
  padding: var(--inputPadding);
  margin-bottom: 10px;
  border: solid 1px var(--colorRoot);
  border-radius: var(--rootBdrs);
}

input[type=submit],
button {
  border: none;
  cursor: pointer;
  font-family: var(--fontRoot), sans-serif;
}

select {
  padding-right: 30px;
  background-image: url(../img/arrow-down-2.svg);
}
select option {
  padding: 22px;
}

.select-holder {
  display: inline-block;
  position: relative;
}
.select-holder .select-arrow {
  position: absolute;
  top: 10px;
  right: 5px;
  bottom: 0;
  padding: 2px;
  width: 20px;
  height: 20px;
}
.select-holder .select-arrow svg,
.select-holder .select-arrow svg g {
  fill: var(--colorRoot);
}

.password-holder {
  display: inline-block;
  position: relative;
}
.password-holder input :is([type=password], [type=text]) {
  padding-right: 20px;
}
.password-holder .ico {
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 5px;
  bottom: 0;
}
.password-holder .eye {
  display: none;
}
.password-holder .eye svg {
  fill: var(--colorRoot);
}
.password-holder .show-pass.close .eye-close {
  display: block;
}
.password-holder .show-pass.open .eye-open {
  display: block;
}

/* Midnight */
.midnight {
  position: relative;
  width: 100%;
  // height: 100%;
  min-width: 100px;
  min-height: 100px;
  overflow: hidden;

  img {
    position: absolute;
    display: block;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .mid-cont {
    position: relative;
    z-index: 2;
  }
}
.cover{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(#111111a4, #1111113a);
  z-index: 2;
}

/*Custom radio*/
.radio {
  display: none;
}

.radio-custom {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  position: relative;
}
.radio-custom .label {
  display: inline-block;
  vertical-align: middle;
}

.radio:checked + .radio-custom::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background: #403C42;
  border-radius: 2px;
}

.radio-custom,
.radio:checked + .radio-custom::before {
  border-radius: 50%;
}

/*Custom checkbox*/
.checkbox {
  display: none;
}

.checkbox-custom {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-right: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 2px;
}
.checkbox-custom .label {
  display: inline-block;
  vertical-align: middle;
}

.checkbox:checked + .checkbox-custom::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background: url(../img/checkmark-1.svg) no-repeat center;
  background-size: contain;
  border-radius: 2px;
}

.contento {
  flex-grow: 1;
  flex-shrink: 0;
}

/* ===== Form Elements End ===== */
/* ===== Page Elements ===== */
.centro {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1600px;
}

.content {
  padding: 30px 0;
}

.logo {
  display: block;
  width: 100%;
  max-width: 125px;
  margin: auto;
}
.logo img,
.logo svg {
  display: block;
  width: 100%;
}

.posr {
  position: relative;
}

.w100 {
  width: 100%;
}

.img-holder img,
.img-holder svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ico {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.ico img,
.ico svg {
  width: 100%;
  height: 100%;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 555;
  opacity: 1;
}

/*Lisn*/
.lisn {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lisn li {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  gap: 20px;
}
.lisn li img,
.lisn li svg {
  display: block;
  width: 100%;
}
.lisn li * {
  gap: 5px;
}
.lisn.nf li {
  display: block;
}
.lisn.lima-20 li:not(:last-of-type) {
  margin-bottom: 20px;
}
.lisn.lima-30 li:not(:last-of-type) {
  margin-bottom: 30px;
}
.lisn.lima-40 li:not(:last-of-type) {
  margin-bottom: 40px;
}

.title-holder {
  margin: 0 0 20px;
}
.title-holder .title {
  margin-top: 0;
}

.topic {
  margin-top: 0;
}

.nope p:first-child {
  margin-top: 0;
}

.coverin img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.radi {
  border-radius: var(--rootBdrs);
}

.radi-5 {
  border-radius: 5px;
}

.padi {
  padding: 30px 25px;
}

.padi-5 {
  padding: 5px;
}

.shad {
  box-shadow: 0px 0px 17.69px -4px rgba(0, 0, 0, 0.25);
}

/*Flex Nav*/
.nav-holder {
  width: 100%;
}

.flexnav {
  position: relative;
  background-position: 100% 0;
  background-size: 200% 200%;
  width: 100%;
  z-index: 99;
}
.flexnav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  /* li a:hover:after {
      content: '';
      position: absolute;
      bottom: 0;
      display: block;
      height: 2px;
      width: 100%;
      background: #243153;
      transition: 0.2s;
  } */
  /*Twice level menu*/
  /*Third level menu*/
}
.flexnav ul li {
  position: relative;
  width: 100%;
}
.flexnav ul li a {
  position: relative;
  padding: 12px 0;
  text-align: center;
  display: block;
  font-size: 1.8rem;
  white-space: nowrap;
  text-decoration: none;
  color: #494949;
  transition: 0.3s;
}
.flexnav ul li.current a {
  color: var(--colorRoot);
}
.flexnav ul li a:hover {
  color: var(--colorRootHov);
  transition: var(--transit);
}
.flexnav ul li a:first-child:nth-last-child(2):after {
  content: "";
  position: relative;
  display: inline-block;
  background: url(../img/arrow-down-black.svg) no-repeat center;
  background-size: contain;
  margin: 0 0 0 10px;
  padding-top: 5px;
  width: 11px;
  height: 14px;
}
.flexnav ul li ul {
  display: none !important;
  /* box-shadow: 2px 3px 5px #ebebeb; */
  z-index: 99;
}
.flexnav ul li:hover ul {
  position: absolute;
  display: flex !important;
  flex-direction: column;
  width: 100%;
  background: #fff;
  transition: 0.3s;
}
.flexnav ul li ul li a {
  color: #000;
  white-space: normal;
}
.flexnav ul li ul li ul {
  display: none !important;
  z-index: 99;
}

/*Toggle button*/
.toggle {
  text-align: center;
  display: none;
  padding: 5px 0;
  cursor: pointer;
  text-transform: uppercase;
  color: #fff;
}

.toggle-btn {
  display: inline-block;
}
.toggle-btn svg,
.toggle-btn img {
  width: 50px;
  height: 30px;
}

/* Footer */
.footer-holder {
  background: #333;
  color: #fff;
  padding: 50px 0 0 0;
}

.footer-contact {
  grid-template-columns: repeat(4, 1fr);
}
.footer-contact p,
.footer-contact a {
  font-size: 1.8rem;
  text-decoration: none;
}

.copyright {
  padding: 25px 0;
  margin: 25px 0 0 0;
  font-size: 1.4rem;
  border-top: solid 1px #a29f9c;
  color: #bfbfbf;
}

/*Great Greed*/
.great-grid {
  display: grid;
  gap: 20px;
  /*line style*/
  /*grid style*/
  /*chess style*/
  /*other greed elements style*/
}
.great-grid.line {
  grid-template-columns: repeat(1, 100%);
}
.great-grid.line .unit {
  display: flex;
  align-items: start;
}
.great-grid.grid {
  grid-template-columns: repeat(3, 1fr);
}
.great-grid.chess .unit {
  display: flex;
  align-items: start;
}
.great-grid.chess .unit:nth-child(even) .img-holder {
  order: 2;
  margin: 0 0 15px 15px;
}
.great-grid .row {
  margin-bottom: 15px;
}
.great-grid .topic {
  font-weight: 600;
  font-size: 2.4rem;
  margin: 0 0 10px 0;
}
.great-grid .date {
  color: #888;
  margin: 0 0 10px 0;
}
.great-grid .description {
  color: #888;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
}
.great-grid .img-holder {
  overflow: hidden;
  /* img {
      object-fit: cover;
      width: 100%;
      height: 100%;
  } */
}

@media (max-width: 768px) {
  .great-grid.line .unit {
    flex-direction: column;
  }
  .great-grid.line .img-holder {
    width: 100%;
    max-width: 100%;
    max-height: 200px;
    margin: 0 0 10px 0;
  }
  .great-grid.chess .unit {
    flex-direction: column;
  }
  .great-grid.chess .unit:nth-child(even) .img-holder {
    order: inherit;
    margin: 0 0 15px 0;
  }
}
/*Flex Grid*/
.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-grid.nw {
  flex-wrap: nowrap;
}
.flex-grid .unit {
  flex: 1 1 30%;
  /* padding: 20px; */
  text-align: center;
}

/*Table*/
table {
  /* border-collapse: collapse; */
  /* border: 1px solid #333; */
}
table thead tr,
table thead:hover tr {
  background: var(--colorRoot);
  color: #fff;
}
table tfoot tr,
table tfoot:hover tr {
  background: #333;
  color: #fff;
}
table tr {
  transition: 0.2s;
}
table tr:hover {
  background: #c7c7c7;
  transition: 0.2s;
}
table tr td {
  border-bottom: 1px solid #999;
  padding: 5px 10px;
}
table tr:last-of-type td {
  border-bottom: none;
}

/* Lic */
.lic {
  display: flex;
  align-items: center;
}

.if {
  display: inline-flex;
}

.w {
  flex-wrap: wrap;
}

.sb {
  justify-content: space-between;
}

.c {
  justify-content: center;
}

.ed {
  justify-content: end;
}

.ais {
  align-items: start;
}

.aic {
  align-items: center;
}

.aie {
  align-items: end;
}

.v {
  flex-direction: column;
}

.gap {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.child > * {
  display: flex;
  align-items: center;
}

.greed > * {
  flex: 1 1 100%;
}

/*Pagination*/
.pagination {
  padding: 20px 0 0 0;
  list-style: none;
  text-align: center;
}
.pagination li {
  display: inline-block;
}
.pagination li.active {
  padding: 10px;
}
.pagination li a {
  display: block;
  text-decoration: none;
  padding: 10px;
}

/* Section */
.section {
  padding: 10rem 0;
}

/* Tabs */
.tabs__content {
  display: none;
}
.tabs__content.active {
  display: block;
}

.tabs__caption {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: solid 1px #e1e5e7;
}
.tabs__caption li {
  display: inline-block;
  cursor: pointer;
  padding: 10px 20px;
  background: #989898;
}
.tabs__caption li.active {
  color: #fff;
  background: #385ba1;
}

/*Spoiler*/
.spoiladoor {
  display: none;
}
.spoiladoor .info {
  padding: 20px 0 0 0;
  margin: 0;
  max-width: 85%;
}

.spoilakey {
  position: relative;
  background: #fff;
  cursor: pointer;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 15px -4px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
.spoilakey:hover {
  box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
.spoilakey .topic-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
}
.spoilakey .topic-holder .topic {
  margin: 0;
  flex: 0 1 85%;
}

/* .spoilakey:after {
    display: inline-block;
    content: '>';
} */
.spoilastyle .cross {
  transform: rotate(180deg);
  transition: 0.2s;
}

.cross {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #F4F6FB;
  width: 40px;
  height: 40px; */
  border-radius: 50px;
  transition: 0.2s;
}
.cross .plus {
  position: absolute;
  height: 1px;
  width: 60%;
  background: #629CF4;
  top: auto;
  bottom: auto;
  display: block;
}
.cross .minus {
  position: absolute;
  width: 1px;
  height: 60%;
  background: #629CF4;
  top: auto;
  bottom: auto;
  display: block;
}
 
/* Breadcrumbs */
.breadcrumbs {
  /* margin: 50px 0 10px; */
  padding: 3px 5px;
  list-style: none;
  color: #b3b3b3;
}
.breadcrumbs li {
  display: inline-block;
  margin-bottom: 0;
}
.breadcrumbs li:last-child:after {
  content: "";
}
.breadcrumbs li a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 1.4rem;
}

/*DL list*/
.dl-list dl {
  display: flex;
}
.dl-list dt {
  flex: 1 1 35%;
}
.dl-list dd {
  flex: 1 1 65%;
}

/*Adapt-T*/
.adapt-t {
  width: 100%;
  position: relative;
  overflow-y: auto;
}

@media (max-width: 1024px) {
  .adapt-t {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0)), linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25));
    background-repeat: no-repeat, no-repeat;
    background-position: right 100%, right 100%;
    background-size: 4px 100%, 4px 100%;
    background-origin: padding-box, border-box;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
  }
  .adapt-t::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
  }
  .adapt-t::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #F5F5F5;
  }
  .adapt-t::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
  }
  .adapt-t table {
    width: 100% !important;
  }
}
/* ===== Page Elements End ===== */
/* ===== Additional Elements ===== */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

/* Display */
.dn {
  display: none;
}

.dg {
  display: grid;
}

.df {
  display: flex;
}

.ws {
  white-space: nowrap;
}

/* Centro Flex */
.cf {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Additional Elements End ===== */
/* ===== Buttons ===== */
.init-btn {
  display: inline-block;
  text-align: center;
  padding: 15px 50px;
  white-space: nowrap;
  margin: 0;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.init-btn:hover {
  color: #fff;
  transition: 0.2s;
}

.tag-btn {
  display: inline-block;
  padding: 5px 15px;
  margin: 0;
  font-size: 1.4rem !important;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.tag-btn:hover {
  color: #fff;
  transition: 0.2s;
}

/*Blue Button*/
.blue-btn {
  color: #fff;
  background: var(--colorRoot);
}
.blue-btn:hover {
  background: hsl(216, 100%, 53%);
}
.blue-btn.t {
  color: rgb(116, 143, 200);
}

/*White Button*/
.white-btn {
  color: var(--colorRoot);
  background: #fff;
}
.white-btn:hover {
  color: var(--colorRoot);
  background: #e6e6e6;
}
.white-btn.t {
  color: #fff;
}

/*Black Button*/
.black-btn {
  color: #fff;
  background: hsl(0, 0%, 20%);
}
.black-btn:hover {
  background: hsl(0, 0%, 10%);
}
.black-btn.t {
  color: hsl(0, 0%, 20%);
}

/*Green Button*/
.green-btn {
  color: #fff;
  background: hsl(113, 78%, 32%);
}
.green-btn:hover {
  background: hsl(113, 78%, 22%);
}
.green-btn.t {
  color: hsl(113, 78%, 32%);
}

/*Red Button*/
.red-btn {
  color: #fff;
  background: hsl(0, 75%, 38%);
}
.red-btn:hover {
  background: hsl(0, 75%, 28%);
}
.red-btn.t {
  color: hsl(0, 75%, 38%);
}

/*Gray Button*/
.gray-btn {
  color: #fff;
  background: hsl(0, 0%, 59%);
}
.gray-btn:hover {
  color: #fff;
  background: hsl(0, 0%, 49%);
}
.gray-btn.t {
  color: hsl(0, 0%, 49%);
}

/*Peach Button*/
.peach-btn {
  color: #111;
  background: #FFE9CC;
}
.peach-btn:hover {
  color: #111;
  background: hsl(34, 100%, 80%);
}
.peach-btn.t {
  color: #FFE9CC;
}

/*Peach Button*/
.sea-btn {
  color: #fff;
  background: #63B0B0;
}
.sea-btn:hover {
  background: hsl(180, 33%, 44%);
}
.sea-btn.t {
  color: #63B0B0;
}

/*Peach Button*/
.coral-btn {
  color: #fff;
  background: #FF7068;
}
.coral-btn:hover {
  color: #fff;
  background: hsl(3, 100%, 60%);
}
.coral-btn.t {
  color: #FF7068;
}

.t,
.t:hover {
  padding: 0 !important;
  background: none !important;
}

/* ===== Buttons End ===== */
/* Left Right Holder */
.hlr {
  display: flex;
  min-height: 0;
  min-width: 0;
}
.hlr .left,
.hlr .right {
  flex: 1 1 50%;
  min-width: 0px;
}

/* Ajax Hint */
.ajax-hint {
  position: fixed;
  z-index: 999;
  background: orange;
  color: #fff;
  left: 0;
  right: 0;
  padding: 15px;
  text-align: center;
}

.hint-cross {
  position: absolute;
  right: 15px;
  cursor: pointer;
  top: 30%;
}

.slick-list {
  margin: 0 -5px;
}

.slick-slide {
  margin: 0 5px;
}/*# sourceMappingURL=a5b-styles.css.map */