@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

@font-face {
  font-family: "din-next-bold";
  src: url(../fonts/din-next-bold.ttf);
}
@font-face {
  font-family: "din-next-regular";
  src: url(../fonts/din-next-regular.ttf);
}
@font-face {
  font-family: "din-next-medium";
  src: url(../fonts/din-next-medium.ttf);
}
a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #000;
}

p {
  margin: 0;
  color: #000;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #8965df;
}

a:hover {
  color: #8965df;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

a {
  text-decoration: none;
}

.font-druk {
  font-family: "druk-super-trial.otf";
}

body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  background-color: #ffffff;
  color: #000;
}

html[dir="ltr"] body {
  font-family: "Roboto", sans-serif;
}
html[dir="ltr"] .font-bold {
  font-weight: bold;
}

html[dir="rtl"] body {
  font-family: "din-next-regular";
}
html[dir="rtl"] .font-bold {
  font-family: "din-next-bold";
}
html[dir="rtl"] .font-medium {
  font-family: "din-next-medium";
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 7px;
}

.form-control {
  height: 50px;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  box-shadow: none;
  padding: 8px 16px;
  font-size: 14px;
  color: #283946;
}

.form-control:focus {
  box-shadow: none;
  background-color: #fff;
  border-color: #8965df;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.bg-primary {
  background-color: #8965df !important;
}

.text-primary {
  color: #8965df !important;
}

.border-primary {
  border-color: #8965df !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.main-content {
  padding: 60px 0px;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

::-moz-placeholder {
  color: #c2c8dd !important;
  font-size: 14px !important;
}

::placeholder {
  color: #c2c8dd !important;
  font-size: 14px !important;
}

::-moz-placeholder {
  color: #c2c8dd !important;
  font-size: 14px !important;
}

::-ms-placeholder {
  color: #c2c8dd !important;
  font-size: 14px !important;
}

::-o-placeholder {
  color: #c2c8dd !important;
  font-size: 14px !important;
}

::-webkit-placeholder {
  color: #c2c8dd !important;
  font-size: 14px !important;
}

.loader-page {
  background: #f8f8f8;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-page span {
  position: absolute;
  display: inline-block;
  background-color: #8965df;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation: loader3 1.5s linear infinite;
}

.loader-page span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.btn {
  padding: 11px 25px;
  font-size: 16px;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .btn {
    font-size: 12px;
    padding: 8px 25px;
  }
}

.btn-primary {
  color: #fff;
  background: #8965df;
  border: 0;
}
.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background-color: #6e50b6;
  box-shadow: none;
}

.btn-white {
  color: #00295c;
  background-color: #fff;
}

@media (max-width: 992px) {
  .main-header {
    padding: 20px;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .main-header .menu-nav {
    margin-bottom: 10px;
  }
  .main-header .logo img {
    max-height: 30px;
  }
  .main-header .btn-outline-primary {
    padding: 10px;
    width: 100%;
  }
  .header-mobile__toolbar {
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8965df;
    border-radius: 50%;
    position: relative;
    z-index: 9999;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link.req {
    padding: 8px 20px !important;
  }
  .active-body {
    overflow: hidden;
  }
  .mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    background-color: #fff;
  }
  .mobile-menu-overlay-active {
    visibility: visible;
  }
  .menu--mobile {
    padding-top: 20px;
    min-width: 100px;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
    background: url(../images/bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-color: #fff;
  }
  .menu--mobile > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 0px);
  }
  .menu--mobile .list-main-menu {
    width: 100%;
  }
  .menu--mobile .main-menu .menu_item {
    flex: auto;
  }
  .menu--mobile .main-menu .menu_item .menu_link {
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    position: relative;
  }
  .menu--mobile .main-menu .menu_item .menu_link.active {
    color: #8965df;
  }
  .menu--mobile .main-menu .menu_item .btn {
    border-radius: 0;
    width: 100%;
    padding: 10px 15px !important;
    color: #000 !important;
    text-align: start;
    background-color: #8965df;
  }
  .menu--mobile .main-menu .dropdown-menu {
    width: 92%;
    min-width: 92%;
  }
  .btn-close-header-mobile {
    color: #fff;
    cursor: pointer;
  }
  .menu-mobile-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .main-header {
    padding: 20px 0;
  }
  .main-header .main-header-content {
    padding: 17px 25px;
    top: 0px;
    right: 0;
    width: 100%;
    position: relative;
    height: 80px;
    z-index: 3;
    background: #f9f7ff;
    border-radius: 19px;
  }
  .main-header .main-header-content .logo img {
    max-height: 35px;
  }
  .main-header .main-header-content .menu--mobile {
    display: flex;
    align-items: center;
    flex: auto;
  }
  .main-header .main-header-content .menu-container {
    position: relative;
  }
  .main-header .main-header-content .menu-container .main-menu .menu_item {
    display: inline-block;
    position: relative;
  }
  .main-header
    .main-header-content
    .menu-container
    .main-menu
    .menu_item
    .menu_link {
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 45px;
    position: relative;
    color: #000000;
    margin: 0px 20px;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
  }
  .main-header
    .main-header-content
    .menu-container
    .main-menu
    .menu_item
    .menu_link::before {
    position: absolute;
    content: "";
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    background-color: #8965df;
    height: 2px;
    transition: width 0.2s ease-in-out;
  }
  .main-header
    .main-header-content
    .menu-container
    .main-menu
    .menu_item
    .menu_link:hover,
  .main-header
    .main-header-content
    .menu-container
    .main-menu
    .menu_item
    .menu_link.active {
    color: #8965df;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .menu-container .main-menu .menu_item .menu_link {
    font-size: 12px;
  }
}
.dropdown.dropdown-lang .dropdown-menu {
  min-width: 138px;
}

.dropdown-lg .dropdown-menu {
  min-width: 400px;
}
@media (max-width: 567px) {
  .dropdown-lg .dropdown-menu {
    min-width: 300px;
  }
}

.main-header .menu-container .main-menu .dropdown .menu_link {
  border-radius: 6px;
  border: 1px solid transparent;
  color: #fff;
}
@media (min-width: 992px) {
  .main-header .menu-container .main-menu .dropdown .menu_link {
    padding: 9px 20px;
    line-height: 1.5;
  }
}
.main-header .menu-container .main-menu .dropdown .menu_link::before {
  content: unset !important;
}
.main-header .menu-container .main-menu .dropdown .menu_link.show,
.main-header .menu-container .main-menu .dropdown .menu_link:hover {
  border-color: #8965df;
}
.main-header .menu-container .main-menu .dropdown .dropdown-menu {
  border-radius: 8px;
}
.main-header
  .menu-container
  .main-menu
  .dropdown
  .dropdown-menu
  .dropdown-item {
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  color: #707070;
}
.main-header
  .menu-container
  .main-menu
  .dropdown
  .dropdown-menu
  .dropdown-item.active {
  color: #0a0e1c !important;
}

.menu_top.height {
  height: 85px;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
}
.section {
  padding: 80px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
}

.section-home {
  background: linear-gradient(
    180deg,
    rgba(249, 247, 255, 0) 14.15%,
    #e9e2ff 100%
  );
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}
.section-home::before {
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, #e9e2ff 0%, #ffffff 100%);
  content: "";
  height: 70px;
  bottom: -64px;
  z-index: -1;
  left: 0;
}
.section-home .home-title {
  font-size: 35px;
}
.section-home .btn {
  padding: 16px 20px;
  font-size: 12px;
}
@media (min-width: 992px) {
  .section-home {
    padding: 70px 0px;
  }
  .section-home .home-title {
    font-size: 64px;
    margin-bottom: 12px;
    line-height: 72px;
  }
  .section-home .btn {
    padding: 16px 45px;
    font-weight: bold;
    font-size: 18px;
  }
}

.btn-video {
  padding: 9px 30px !important;
  border-radius: 30px;
  color: #8965df;
}

.btn-video:hover {
  color: #fff;
  background-color: #8965df;
}

.btn-video:hover i {
  color: #fff;
}

.btn-video-icon {
  border: 1px solid #8965df;
  background-color: #8965df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin: 0px auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.ripple::before {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #000;
  border-radius: 100%;
  animation-name: ripple;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

.ripple::after {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #000;
  border-radius: 100%;
  animation-name: ripple;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

.btn-video-play .btn-video-icon:hover {
  border-color: #fff;
}

.ripple:hover::after,
.ripple:hover::before {
  border-color: #fff;
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1.19, 1.19, 1.45);
  }
  to {
    opacity: 0;
    transform: scale3d(1.95, 1.95, 1.19);
  }
}
.home-video {
  text-align: center;
}

@media (min-width: 992px) {
  .title-section {
    font-size: 50px;
    line-height: 1.3;
  }
}
@media (max-width: 991px) {
  .title-section {
    font-size: 26px;
  }
}

.widget__item-info {
  background: #f9f7ff;
  border-radius: 24px;
  transition: background-color 0.2s ease-in-out;
}
.widget__item-info .widget__item-title {
  font-size: 24px;
}
@media (min-width: 992px) {
  .widget__item-info .widget__item-title {
    font-size: 40px;
    line-height: 48px;
  }
}
.widget__item-info .widget__item-icon {
  height: 72px;
}
.widget__item-info .widget__item-icon img {
  max-height: 70px;
}
.widget__item-info .widget__item-title,
.widget__item-info .widget__item-desc {
  transition: color 0.2s ease-in-out;
}
.widget__item-info:hover {
  background-color: #8965df;
}
.widget__item-info:hover .widget__item-title,
.widget__item-info:hover .widget__item-desc {
  color: #fff;
}
@media (max-width: 991px) {
  .widget__item-info {
    width: 190px;
    margin: 0px auto 20px;
  }
  .widget__item-info .widget__item-icon {
    height: 50px;
  }
  .widget__item-info .widget__item-icon img {
    max-height: 50px;
  }
  .widget__item-info .widget__item-title {
    font-size: 20px;
  }
  .widget__item-info .widget__item-desc {
    font-size: 10px;
  }
}

.widge__steps {
  position: relative;
}
.widge__steps::before {
  position: absolute;
  content: "";
  border-left: 2px dashed #8965df;
  height: 100%;
  top: 0;
  width: 2px;
  inset-inline-start: 7%;
  z-index: -1;
}

.widget__item-step:not(:last-of-type) {
  margin-bottom: 60px;
}
.widget__item-step .widget__item-number {
  background: #f9f7ff;
  border: 2px dashed #8965df;
  width: 64px;
  height: 64px;
  transition: all 0.2s ease-in-out;
}
.widget__item-step:hover .widget__item-number {
  background-color: #8965df;
  color: #fff;
  border-color: #fff;
}
.widget__item-step:hover .widget__item-title {
  color: #8965df;
}

.section-work {
  position: relative;
}
@media (min-width: 992px) {
  .section-work .bg-image {
    inset-inline-end: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .section-work .bg-image img {
    max-width: auto;
  }
}

.widge__about {
  background: url(../images/bg-about.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px;
  background-color: #F9F7FF;
  border-radius: 40px;
}
.widge__about .widge__about-icon {
  width: 56px;
  height: 56px;
  background: #e7dcff;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .widge__about {
    padding: 100px;
  }
}

.content-sale {
  background: #f9f7ff;
  border-radius: 56px;
  padding: 40px;
}

.bg-blue {
  background: #421b9f;
}

.widge__about-card {
  background: #ffffff;
  border: 1px solid #dfdfdf;
  border-radius: 40px;
  padding: 30px;
  position: relative;
  transition: box-shadow .2s ease-in-out;
}
.widge__about-card .widge__about-icon {
  background: #f8f7ff;
  border-radius: 15px;
  width: 67px;
  height: 67px;
}
.widge__about-card .widget__item-number {
  font-size: 48px;
}
.widge__about-card .widge__about-text li:not(:last-of-type) {
  margin-bottom: 15px;
}
.widge__about-card.card-favorite {
  background-color: #8965df;
}
.widge__about-card.card-favorite * {
  color: #fff;
}
.widge__about-card.card-favorite .widge__about-favorite {
  position: absolute;
  background: #e3be46;
  border-radius: 10px;
  right: 50%;
  transform: translateX(50%);
  top: -20px;
  padding: 5px 18px;
  font-size: 20px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .widge__about-card.card-favorite .widge__about-favorite {
    top: -10px;
    font-size: 14px;
  }
}
.widge__about-card.card-favorite .btn-outline-primary {
  color: #8965df;
}
.widge__about-card.card-favorite .btn-outline-primary:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .widge__about-card {
    width: 270px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }
}

.widge__about-card:hover{
  box-shadow: 0 10px 30px #8965df66;
}

.btn-outline-primary {
  background-color: #fff;
  border-color: #8965df;
  color: #8965df;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #8965df;
  border-color: #fff;
}

.card-switch {
  border: 1px solid #000;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card-switch .item-switch {
  color: #000;
  padding: 10px;
  min-width: 125px;
  text-align: center;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.card-switch .item-switch.active,
.card-switch .item-switch:hover {
  background-color: #000;
  color: #fff;
}

.bg-gray {
  background-color: #f6f6f6;
}

.swiper-about-content{
  padding: 30px;
  background: #f9f7ff;
  border-radius: 17px;
}

.swiper-pagination-bullet {
  width: 11px;
  height: 9px;
  background: #e6dbff;
  border-radius: 24px;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #8965df;
  width: 43px;
}

.main-footer {
  background: url(../images/bg-footer.png);
  background-position: -6% 0%;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .main-footer {
    background-position: -38% 60%;
    background-size: 60%;
  }
}
.main-footer .footer-top {
  padding: 70px 0;
}
@media (max-width: 991px) {
  .main-footer .footer-top {
    background-size: cover !important;
  }
}
.main-footer .link-footer a {
  color: #000;
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: #8965df;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media li a {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0px 2px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out;
  background-color: #8965df;
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}

.social-media li:not(:last-of-type) {
  margin-right: 10px;
}

.social-media li a:hover {
  color: #fff;
  background-color: #421b9f;
}

html[dir="rtl"] .social-media li:not(:last-of-type) {
  margin-left: 10px;
  margin-right: 0;
}
.swiper-vertical {
  margin: 0px 13px;
}
.swiper-vertical .swiper-wrapper {
  height: 300px;
}

.swiper-vertical .swiper-wrapper .swiper-slide {
  height: auto;
}

.swiper-vertical .swiper-image img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 20px;
}
/*.swiper-wrapper {*/
/*  -webkit-transition-timing-function: linear !important;*/
/*  transition-timing-function: linear !important;*/
/*  position: relative;*/
/*}*/
/*@keyframes line-slide {*/
/*  0% {*/
/*    background-position: -5% 0;*/
/*  }*/
/*  100% {*/
/*    background-position: 100% 0;*/
/*  }*/
/*} */

.swiper-row .swiper-slide{
  width: auto;
}
.swiper-row .swiper-image img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 20px;
}
/*# sourceMappingURL=main.css.map */
