#bgc{
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}.main-index {
  max-width: 1100px;
  margin: auto;
  padding: 10px;
}
.indiv-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding: 36px 10px;
  margin-bottom: 30px;
  box-shadow: 0 6px 30px -20px #000;
  border-radius: 30px;
  position: relative;
  border: 4px solid rgb(255 165 0);
  background-color: rgb(253 140 0);
  color: #fff;
}
.indiv-box h2 {
  background-image: linear-gradient(45deg, rgb(215 0 0), rgb(58, 157, 255));
  color: #fff;
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 10px 30px;
  padding: 10px;
  font-size: 18px;
  transition: 0.5s;
}
.boxRightImg h2 {
  right: 0;
  left: initial;
}
.indiv-box:hover h2 {
  margin-left: 40px;
}
.boxRightImg:hover h2 {
  margin-right: 40px;
}
@media only screen and (min-width: 550px) {
  .indiv-box h2 {
    font-size: 24px;
    padding: 12px 18px;
  }
  .indiv-box {
    flex-direction: row;
  }
  .boxRightImg {
    flex-direction: row-reverse;
  }
  .indiv-box img {
    width: 20%;
  }
}

/* LEGAL */
.legGal{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.indLeg{
  text-align: center;
}

/*index page*/
.legalSend{
  min-height: 400px;
  position: relative;
  background-image: linear-gradient(45deg, #b5b5ff, #3a92ff);
  padding: 30px 30px 60px 30px;
  border-radius: 40px 20px 10px 40px;
  border-left: 14px solid rgb(121, 101, 240);
  margin-top: 40px;
}
.legalSend p:first-letter{
  color: rgb(58, 48, 252);
  font-size: 26px;
}
.legalSend p{
  margin-top: 30px;
  color: rgb(220, 220, 255);
}
.legalSend a{
  background-color: rgb(8, 8, 117);
  color: #fff;
  padding: 10px 30px;
  position: absolute;
  right: 30px;
  bottom: 20px;
  border-radius: 30px;
  box-shadow: 0 0 3px 0 #fff;
}
.slider{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider img{
  width: 100%;
}
.sliderBtn{
  position: absolute;
  top: 50%;
  left: 10px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(223, 224, 255, 0.3);
  z-index: 99;
  color: rgb(0, 94, 144);
  cursor: pointer;
}
.slider-button-next{
  left: initial;
  right: 10px;
}
.sliderBtn:hover{
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 120, 248);
}


.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-cont{
  background-color: #fff;
  position: sticky;
  top: 0;;
  z-index: 9999;
  border-top: 1px solid #eee;
}
.header {
  max-width: var(--contentWidth);
  margin: 0 auto;
  padding: 0 10px;
}

.headerLogo {
  display: inline-block;
  max-width: 150px;
  min-width: 80px;
}
.nav{
    list-style-type: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70vw;
    background-color: #fff;
    overflow-y: auto;
    padding: 10px;
}
.nav>li{
    position: relative; 
}
.nav>li::after, .submenu a::after{
    content: "";
    width: 0;
    height: 4px;
    background-color: blue;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .35s;
}
.nav>li:hover::after, .submenu a:hover::after{
    width: 100%;
}
.nav>li>a, .nav>li.menu, .submenu a{
    display: inline-block;
    padding: 30px 10px;
    cursor: pointer;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    background-color: rgb(255, 213, 161);
    width: calc(70vw - 20px);
}
.menu{
    position: relative;
}
.menu:focus i, .menu:hover i{
    transform: rotate(45deg);
}
.menu i{
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}
.submenu {
    display: none;
    position: initial;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .2);
    width: 400px;
}
.submenu a{
    position: relative;
    width: 100%;
    display: block;
    background-color: #eee;
}
.menu:focus .submenu,.menu:hover .submenu{
    display: initial;
}
.logReg{
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.logReg a{
    padding: 14px 26px;
    background-color: #7b014c;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 32px;
    transition: .2s all;
}
.logReg a.logHeader{
    background-color: rgb(0, 92, 0);
}
.logReg a.regHeader:hover{
    color: rgb(240, 198, 255);
    box-shadow: 0 0 0 3px rgb(240, 198, 255);
}
.logReg a.logHeader:hover{
    color: rgb(198, 255, 206);
    box-shadow: 0 0 0 3px rgb(198, 255, 206);
}
.rozgar{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-direction: column;
}
#toggler{
  padding: 10px;
  font-size: 18px;
  background-color: rgb(237, 158, 0);
  color: #fff;
  border-radius: 7px;
  width: 45px;
  text-align: center;
  transition: .2s;
  cursor: pointer;
}
#toggler:hover{
  transform: scale(.95);
}
@media only screen and (min-width:1100px) {
  #toggler{
    display: none;
  }
  .top{
      display: flex;
  }
  .nav{
      display: flex !important;
      justify-content: space-between;
      flex-direction: row;
      align-items: center;
      position: initial;
      background-color: transparent;
      overflow: initial;
      width: initial;
      padding: 0;
  }
  .logReg{
      display: flex;
  }
  .nav>li{
      border: none;
  }
  .nav>li>a, .nav>li.menu, .submenu a{
      background-color: transparent;
      width: initial;
  }
  .submenu a{
    width: 400px;
  }
  .submenu{
      position: absolute;
  }
  .rozgar{
    flex-direction: row-reverse;
  }
}

.tagline{
  text-align: center;
  margin: 30px 0;
  font-weight: initial;
}
.hilit{
  color: #c90089;
}