@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,500;1,600&display=swap");

:root {
  --H1: #1e1e1e;
  --title: #0f111c;
  --txt: #4e4f51;
  --p: #797b8d;
  --orange-color: #0d76ff;
  --orange-background: #0d76ff;
  --inter-family: "Inter", sans-serif;
  --poppins-family: "Poppins", sans-serif;
  --telegraf-family: "TelegrafUltraBold", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  /*font-family: 'Inter', sans-serif;*/
  /*font-family: 'Poppins', sans-serif;*/
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth !important;
}

body {
  background: #fff;
  font-family: var(--inter-family);
}

.main {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.main::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 100% 50%;
  border-bottom-right-radius: 100% 50%;
  transform: scaleX(1.2);
}

.content {
  color: #8b7f75;
  max-height: 0px;
  overflow: hidden;
  /* transition: all 0.5 cubic-bezier(0,1,0,1); */
  transition: all 0.7s ease-in-out;
}
.content.show {
  height: auto;
  max-height: 999px;
  /* transition: all 0.5s cubic-bezier(1,0,1,0); */
  transition: all 1.2s ease-in-out;
}

@media screen and (max-width: 480px) {
  .content.show {
    height: auto;
    max-height: 999px;
    transition: all 1.2s ease-in-out;
    color: #141629 !important;
  }
  .content {
    color: #fff !important;
  }
}
.color {
  color: #409cff;
}
.color1 {
  color: #797b8d;
}

.border {
  border: 2px solid #409cff;
}
.border1 {
  border: 2px solid #f6f6f5;
}

.slides {
  opacity: 0.5;
}

.activeSlides {
  opacity: 1;
}

/* HeroSection*/

/*.loader::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    background: #0bec7c;*/
/*    border-radius: 50%;*/
/*    animation: animate 8s linear infinite;*/
/*}*/

/*@keyframes animateDot {*/
/*    0%{*/
/*        transform: translateY(-50%) scale(0);*/
/*    }*/
/*    5%{*/
/*        transform: translateY(-50%) scale(1);*/
/*    }*/
/*    20%{*/
/*        transform: translateY(-50%) scale(1);*/
/*        box-shadow: 0 0 0 4px #0bec7c22,*/
/*        0 0 010px #0bec7c22,*/
/*        0 0 20px #0bec7c,*/
/*        0 0 40px 5px #0bec7c,*/
/*        0 0 60px 10px #0bec7c;*/
/*    }*/
/*    40%{*/
/*        transform: translateY(-50%) scale(1) translateX(395px);*/
/*    }*/
/*    80%{*/
/*        transform: translateY(-50%) scale(1) translateX(395px);*/
/*        box-shadow: 0 0 0 4px #0bec7c22,*/
/*        0 0 010px #0bec7c22,*/
/*        0 0 20px #0bec7c,*/
/*        0 0 40px 5px #0bec7c,*/
/*        0 0 60px 10px #0bec7c;*/
/*    }*/
/*    95%{*/
/*        transform: translateY(-50%) scale(1) translateX(395px);*/
/*        box-shadow:none;*/
/*    }*/
/*}*/

.bloc-tabs {
  display: flex;
}

.tabs {
  padding: 12px 0;
  text-align: left;
  width: 50%;
  /*cursor: pointer;*/
  border: none;
  box-sizing: content-box;
  position: relative;
  outline: none;
  background: none;
  font-weight: 500;
  font-size: 17px;
  color: #6c6c70;
  border-bottom: 2px solid #e7e7e7;
  font-family: "Inter", sans-serif;
}

.tabs:nth-child(2) {
  margin: 0 24px;
}

.tabs2 {
  margin: 0 24px;
}

.active-tabs {
  font-weight: 600;
  line-height: 24px;
  color: var(--H1) !important;
  position: relative;
  transition: all 1s ease-in-out;
}

.active-tabs::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 2px;
  /*background: var(--H1);*/
  background: linear-gradient(90deg, #c5d7eb 0%, #409cff 100%);
  transform-origin: left;
  animation: animate 37s linear;
}

.loader {
  position: relative;
  width: 400px;
  height: 4px;
  background: black;
}

.loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0bec7c;
  transform-origin: left;
  animation: animate 30s linear infinite;
}

@keyframes animate {
  0%,
  40% {
    transform: scaleX(0);
  }
  40% {
    transform: scaleX(1);
    transform-origin: left;
  }
  40.000001%,
  60% {
    transform: scaleX(1);
    transform-origin: right;
  }
  80%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.hero_content_tabs {
  display: flex !important;
}

.hero_content {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--p);
  width: 100%;
  font-family: var(--inter-family);
  padding: 12px 38px 12px 0;
}

.hero_content:nth-child(2) {
  margin: 0 24px;
}

.active-content {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--H1) !important;
  transition: all 0.5s ease-in-out;
}

.angryGrid {
  border: 1px solid white;
  display: grid;
  grid-template-areas:
    "c a a f"
    "c e g f"
    "d e b b";
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  gap: 24px;
}

.a {
  grid-area: a;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b {
  grid-area: b;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c {
  grid-area: c;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d {
  grid-area: d;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.e {
  grid-area: e;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f {
  grid-area: f;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g {
  overflow: hidden;
  grid-area: g;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imgA {
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 20%;
  object-fit: cover;
  width: 100%;
}

nav {
}

nav:after {
  content: "";
  clear: both;
  display: table;
}

nav .logo {
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 60px;
  display: none;
}

nav ul {
  display: flex;
  float: right;
  list-style: none;
  position: relative;
}

nav ul li {
  float: left;
  display: inline-block;
  margin: 0 5px;
  /*padding: 15px 0;*/
}

nav ul li:nth-child(2) {
  /* padding: 15px 0; */
}

.nav_li {
  padding: 0px 24px;
  position: relative;
}
.nav_li2 {
  display: none;
}
.nav_li:hover > .nav_li2 {
  /*transform: scaleX(1);*/
  display: block;
  position: absolute;
  border-bottom: solid 4px rgb(147, 145, 145);
}
.nav_li:hover {
  /*transform: scaleX(1);*/
  /*border-bottom: solid 4px rgb(147, 145, 145);*/
}
.nav_li_help {
  padding: 26px 0;
}

nav ul li a {
  /*text-decoration: none;*/
  /*line-height: 24px;*/
  /*padding: 0 24px;*/
  /*font-size: 16px;*/
  /*font-weight: 500;*/
  /*color: #50555c;*/
  /*cursor: pointer;*/
  /*font-family: "Inter", sans-serif;*/
}

.navbarTXT {
  text-decoration: none;
  line-height: 24px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  color: #50555c;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

nav ul li a:hover {
  border-radius: 5px;
}

nav ul ul {
  position: absolute;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: top 0.3s;
}

nav ul li:hover > ul {
  top: 60px;
  opacity: 1;
  visibility: visible;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  right: -170px;
}

.nav_ul {
  padding: 0 !important;
}

nav ul ul li {
  position: relative;
  margin: 0px;
  width: 100%;
  float: none;
  text-align: left;
  display: list-item;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.3); */
}

nav ul ul ul li {
  position: relative;
  top: -70px;
  left: 150px;
}

@media (max-width: 1294px) {
  .nav_li {
    /*padding: 26px 24px;*/
  }
  .nav_li_help {
    /*padding: 26px 0;*/
  }

  nav ul {
    margin-right: 0px;
  }

  nav ul li {
    margin: 0;
    /*padding: 15px;*/
    /*margin: 0 5px;*/
  }

  nav ul li a {
    /*padding: 0 20px;*/
    /*font-size: 14px;*/
  }

  nav ul li:hover > ul {
    right: -140px;
  }
}

@media (max-width: 1280px) {
  .tabs {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
  }

  .hero_content {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
  }

  .active-tabs::before {
    top: 44px;
  }

  .angryGrid {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  nav ul li a {
    /*padding: 0 16px;*/

    font-weight: 500;
    /*font-size: 13px;*/
    line-height: 20px;
  }

  nav ul li {
    margin: 0px;
  }

  .nav_li {
    padding: 0px 17px;
  }
}

.hero_content2 {
  display: none;
}

@media (max-width: 480px) {
  .bloc-tabs {
    display: block;
  }

  .hero_content {
    display: none;
  }

  .hero_content2 {
    display: flex;
  }

  .hero_content_tabs2 {
    display: flex !important;
  }

  .hero_content2 {
    color: var(--p);
    width: 100%;
    font-family: var(--inter-family);
    padding: 12px 40px 12px 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
  }

  .hero_content:nth-child(2) {
    margin: 0 24px;
  }

  .tabs2 {
    margin: 0;
  }

  .tabs {
    padding: 32px 0 12px 0;
    text-align: center;
    width: 100%;
    /*cursor: pointer;*/
    border: none;
    box-sizing: content-box;
    position: relative;
    outline: none;
    background: none;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    color: #6c6c70;
    border-bottom: 2px solid #e7e7e7;
    font-family: "Inter", sans-serif;
  }

  .active-tabs {
    font-weight: 600;
    line-height: 24px;
    color: var(--H1) !important;
    position: relative;
    transition: all 1s ease-in-out;
  }

  .active-tabs::before {
    content: "";
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    height: 2px;
    /*background: #130f26;*/
    background: linear-gradient(90deg, #c5d7eb 0%, #409cff 100%);
    transform-origin: left;
    animation: animate 15s linear;
  }

  .angryGrid {
    display: none;
  }

  .border {
    background: #f8f8f8;
    border-radius: 4px;
    margin: 0 !important;
    padding: 5px 10px 20px 10px !important;
  }
}

.container {
  flex-grow: 1;
  padding: 2em;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.title {
  font-size: 3em;
}

.info {
  font-size: 1.1em;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 1.5em;
  color: rgb(224, 224, 224);
}

.btn {
  margin: 0 auto;
  border: none;
  outline: none;
  padding: 0.75em 1em;
  font-size: 1em;
  letter-spacing: 1px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  background-color: rgb(134, 49, 0);
  color: #fff;
}

.sidebar {
  flex-shrink: 0;
  /*background-color: rgb(185, 185, 185);*/
  height: 100%;
  overflow: auto;
  padding: 16px 16px 0 16px;
}

.sidebar-item {
  padding: 0.75em 15px;
  display: block;
  transition: background-color 0.15s;
  border-radius: 5px;
  font-family: var(--inter-family);
  font-size: 19px;
  background-color: rgba(248, 248, 248, 0.1);
}

.sidebar-item-Open {
  padding: 0.75em 15px;
  display: block;
  transition: background-color 0.15s;
  border-radius: 5px;
  font-family: var(--inter-family);
  font-size: 19px;
  background-color: rgba(248, 248, 248, 0.1);
}

.sidebar-item:hover {
  background: #e3e3e3;
}

.sidebar-item2 {
  padding: 0.75em 15px;
  display: block;
  transition: background-color 0.15s;
  border-radius: 5px;
  font-family: var(--inter-family);
  color: var(--txt);
  font-size: 19px;
  background-color: rgba(248, 248, 248, 0.1);
  cursor: pointer;
}

.sidebar-item2:hover {
  background-color: rgba(115, 115, 115, 0.1);
}

.sidebar-title {
  color: var(--txt);
  display: flex;
  cursor: pointer;
  justify-content: space-between;
}

.sidebar-title:hover {
  border-radius: 8px;
}

.sidebar-title span i {
  display: inline-block;
}

.sidebar-title .toggle-btn {
  cursor: pointer;
  transition: transform 0.3s;
}

.sidebar-item-Open.open > .sidebar-title .toggle-btn {
  transform: rotate(180deg);
}

.sidebar-content {
  /*padding-top: .25em;*/
  height: 0;
  overflow: hidden;
  background: #f5f5f5;
  font-size: 19px !important;
  border-radius: 4px;
}

.sidebar-content:hover {
}

.sidebar-item-Open.open > .sidebar-content {
  height: auto;
}

.sidebar-item-Open.plain {
  color: var(--txt);
  text-decoration: none;
  font-size: 19px;
}

.sidebar-item-Open.plain:hover {
  text-decoration: underline;
}

.sidebar-item-Open.plain i {
  display: inline-block;
  width: 1.7em;
}

.pricing {
  color: var(--txt);
  font-size: 15px;
}

.title {
  font-size: 3em;
}

.info {
  font-size: 1.1em;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 1.5em;
  color: rgb(224, 224, 224);
}

.btn {
  margin: 0 auto;
  border: none;
  outline: none;
  padding: 0.75em 1em;
  font-size: 1em;
  letter-spacing: 1px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  background-color: rgb(134, 49, 0);
  color: #fff;
}

/*.nav_li:after {*/
/*    display: block;*/
/*    content: "";*/
/*    margin-bottom: -10px;*/
/*    border-bottom: solid 4px rgb(147, 145, 145);*/
/*    border-radius: 10%;*/
/*    transform: scaleX(0);*/
/*    transition: transform 250ms ease-in-out;*/
/*}*/

/*.nav_li:hover:after {*/
/*    transform: scaleX(1);*/
/*}*/
.highlight {
  background-color: #fff3cd;
  padding: 0.1875em;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

