@import url('https://fonts.googleapis.com/css2?family=Baumans&display=swap');
#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(0, 255, 119);
  background-color: rgb(0, 253, 135);
  color: #fff;
}
.indiv-box h2 {
  background-image: linear-gradient(45deg, rgb(215, 158, 0), rgb(117, 58, 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, #853aff);
  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(48, 109, 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;
  border-radius: 50px;
  overflow: hidden;
  display: block;
  padding: 10px;
}
.headerLogo img{
  max-width: 100%;
  max-height: 100%;
}
.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;
  width: 100%;
  text-align: center;
}
.nav > li::after,
.submenu a::after {
  content: "";
  width: 0;
  height: 4px;
  background-color: blue;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.35s;
}
.nav > li:hover::after,
.submenu a:hover::after {
  width: 100%;
}
.nav > li > a,
.nav > li.menu,
.submenu a {
  display: inline-block;
  padding: 10px 30px;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  background-color: rgb(255, 213, 161);
  white-space: nowrap;
}
.nav > li > a{
  display: block;
  width: 100%;
}
.menu {
  position: relative;
  width: 100%;
}
.menu:focus i,
.menu:hover i {
  transform: rotate(45deg);
}
.menu i {
  font-size: 12px;
  font-weight: 900;
  transition: 0.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;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}
.submenu a {
  position: relative;
  width: 100%;
  display: block;
  background-color: #eee;
}
.menu:focus > .submenu,
.menu:hover .submenu {
  display: initial;
}
.logReg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.logReg a {
  padding: 8px 12px;
  background-color: #777b01;
  color: #fff;
  text-decoration: none;
  transition: 0.2s all;
  display: inline-block;
  font-size: 11px;
}
.logReg a.logHeader {
  background-color: rgb(92, 63, 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: 0.2s;
  cursor: pointer;
}
#toggler:hover {
  transform: scale(0.95);
}
@media only screen and (min-width: 1100px) {
  .logReg a {
    padding: 10px 18px;
    font-weight: bold;
    font-size: 14px;
  }
  #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;
  }
  .nav > li {
    border: none;
  }
  .nav > li > a,
  .nav > li.menu {
    background-color: transparent;
    width: initial;
  }
  .submenu a {
    background-color: transparent;
    width: 100%;
    font-size: 13px;
    padding: 10px;
    text-align: center;
  }
  .submenu {
    position: absolute;
  }
  .rozgar {
    flex-direction: row-reverse;
  }
  .menu {
    padding: 10px 40px !important;
  }
}
.infoPHeaderImg img {
  width: 100%;
  margin-bottom: 15px;
}
.bank-cont {
  display: flex;
  align-items: center;
  justify-self: center;
  flex-direction: column;
}
.bankImg {
  max-width: 250px;
}
.officeImgC {
  position: relative;
}
.officeInfo {
}
.ofImg {
  min-height: 450px;
}
.officeInfo > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  /* transform-origin: 50% 0; */
}

.officeName {
  border-top: 2px solid rgb(76, 0, 96);
  border-bottom: 2px solid rgb(76, 0, 96);
  color: rgb(76, 0, 96);
  padding: 10px;
}
.officeInfo h2 {
  text-align: center;
}
.officeInfo p {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
}
.officeInfo img {
  width: 150px;
}
.dirMes {
  background-color: #eeeeff;
  border: 1px solid #6da2ff;
  padding: 20px;
  border-radius: 20px;
}
.teamAll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}
.indivTeam {
  width: 100%;
  padding: 10px;
  background-color: #f2fcff;
  border: 1px solid #5cceff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.indivTeam .imgContTeam {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.indivTeam p.msgTeam {
  text-align: justify;
  line-height: 22px;
}
.teamFooter {
  display: block;
  margin-top: 30px;
  width: auto;
  max-width: 100%;
}
@media only screen and (min-width: 650px) {
  .bank-cont {
    flex-direction: row-reverse;
  }
}
.ctaI{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.ctaI a{
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  background-color: #3a92ff;
  width: 100%;
  aspect-ratio: 16/9;
  transition: .3s;
}
.ctaI a:hover{
  background-size: 120%;
}
.ctaTxt{
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.ctaTxt h3{
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 1.5vw;
}
.ctaTxt p{
  font-size: 1vw;
  line-height: normal;
}
.OPCont{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media only screen and (min-width: 750px) {
  .OPCont{
    grid-template-columns: 1fr 1fr;
  }
}
.picDesOP{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
  height: 100%;
  min-height: 450px;
}
.op1, .op2{
  width: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  border-radius: 12px;
}
.op1{
  height: 80%;
}
.op2{
  width: 50%;
}
.matterOP{
  padding: 20px;
  text-align: justify;
}
.matterOP h3, .matterOP h1, .matterOP p{
  font-family: "Baumans", system-ui;
}

.matterOP h3, .matterOP p{
  color: #999;
}
.matterOP h1{
  color: #333;
  margin: 18px 0 25px;
}
.matterOP p{
  line-height: 24px;
  margin-bottom: 20px;
}
.review{
  text-align: center;
  margin-top: 30px;
}
.review h2::first-letter{
  color: rgb(123, 1, 76);
}
.review p{
  max-width: 70%;
  color: #999;
  line-height: 30px;
}
.reviewVid{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.reviewInd{
  max-width: 350px;
}
.achivCont{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 5%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  gap: 20px;
}
.achInd > *{
  color: #fff;
  text-align: center;
  font-family: "Baumans", system-ui;
}
.cNewsInd{
  margin-bottom: 20px;
}
.cNewsTitle{
  padding: 13px 20px 18px;
  background-image: linear-gradient(15deg,#f7c92f, #ffe389);
  color: #fff;
  margin-bottom: 15px;
  border: 5px solid #f5c010;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  transition: .2s;
  cursor: pointer;
}
.cNewsTitle:hover{
  border-radius: 0px;
}
.cNewsImg{
  width: 100%;
  display: block;
  margin: auto;
  border: 4px solid #fff;
  box-shadow: 0 3px 10px -8px #000;
}
.cOff .cNewsTitle{
  background-image: linear-gradient(15deg, #b9173d, #ff6589);
  border-color: #ac022a;
}
.hEdu .cNewsTitle{
  background-image: linear-gradient(15deg, #0b3f6e, #3178b6);
  border-color: #032747;
}
.eduLinkC{
  margin: 10px auto;
  text-align: center;
}
.eduLink{
  padding: 10px 18px;
  color: #fff;
  background-color: #003b6f;
}