.lodingsscren, nav {
  display: -webkit-box;
}

.mainBg, .toggle-menu span {
  background-color: var(--mainColor);
}

.footer--tilte, .sec3--h5, .sec3-p, .section2--p, .section2--title {
  letter-spacing: 0;
}

:root {
  --mainColor: #1090cb;
  --neroColor: #252525;
}

body {
  font-family: Sen, sans-serif;
}

a {
  text-decoration: none;
}

.Container {
  width: 90%;
  margin: auto;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

.mainColor {
  color: var(--mainColor);
}

.neroColor {
  color: var(--neroColor);
}

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

.buttom {
  -o-transition: .6s;
  background-color: #03a9f4;
  border-radius: 3px;
  padding: 5px 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 2em;
  transition: all .6s;
  display: inline-block;
  box-shadow: 0 6px 16px #03a9f459;
}

.Links--list, .lodingsscren, nav {
  display: -ms-flexbox;
}

#scrollTopBtn {
  color: #fff;
  cursor: pointer;
  opacity: .5;
  z-index: 2147483647;
  background-color: #08d3bb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 24px;
  display: none;
  position: fixed;
  bottom: 5%;
  right: 3%;
}

#scrollTopBtn:hover {
  -o-transition: .2s;
  opacity: 1;
  transition: all .2s;
}

nav {
  justify-content: space-between;
  width: 95%;
  margin: auto;
  padding: 1rem 0;
  display: flex;
}

.Links--list {
  justify-content: space-around;
  align-items: center;
  width: 50%;
  display: flex;
}

.Links--list a {
  color: #000;
  line-height: 24px;
}

header {
  border-bottom: 1px solid #81818133;
}

.toggle-menu {
  cursor: pointer;
  z-index: 1;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 35px;
  padding: 5px;
  display: none;
}

.toggle-menu:focus {
  outline: 0;
}

.toggle-menu span {
  -o-transition: .6s;
  width: 40px;
  height: 3px;
  margin: 3px 0;
  transition: all .6s;
  display: inline-block;
}

.toggle-menu.open span:nth-child(2) {
  opacity: 0;
  transform: rotate(45deg);
}

.toggle-menu.open span:first-child {
  transform: rotate(45deg);
}

.toggle-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.toggle-menu.open span {
  justify-content: center;
  position: absolute;
}

@media screen and (width <= 990px) {
  .Links--list {
    display: none;
  }

  .Links--list.open, .toggle-menu {
    display: -webkit-box;
    display: -ms-flexbox;
  }

  .toggle-menu {
    z-index: 999;
    display: flex;
  }

  .Links--list.open {
    -o-transition: .5s;
    z-index: 99;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    transition: all .5s;
    display: flex;
    position: absolute;
    inset: 0;
  }

  .Links--list a {
    margin: 2rem 0;
  }
}

.lodingsscren {
  z-index: 2147483647;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0;
}

.boxes, .boxes .box {
  width: 32px;
  height: 32px;
}

.boxes {
  transform-style: preserve-3d;
  transform-origin: 50%;
  margin-top: 32px;
  position: relative;
  transform: rotateX(60deg)rotateZ(45deg)rotateY(0)translateZ(0);
}

.boxes .box {
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
}

.boxes .box:first-child {
  -webkit-animation: 1s linear infinite box1;
  animation: .5s linear infinite box1;
  transform: translate(100%);
}

.boxes .box:nth-child(2) {
  animation: .5s linear infinite box2;
  transform: translate(0, 100%);
}

.boxes .box:nth-child(3) {
  animation: .5s linear infinite box3;
  transform: translate(100%, 100%);
}

.boxes .box:nth-child(4) {
  animation: .5s linear infinite box4;
  transform: translate(200%);
}

.boxes .box > div {
  --translateZ: 15.5px;
  --rotateY: 0deg;
  --rotateX: 0deg;
  background: #5c8df6;
  background: var(--mainColor);
  -webkit-transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto;
}

.boxes .box > div:first-child {
  background: var(--mainColor);
  top: 0;
  left: 0;
}

.boxes .box > div:nth-child(2) {
  --rotateY: 90deg;
  background: #145af2;
  right: 0;
}

.boxes .box > div:nth-child(3) {
  --rotateX: -90deg;
  background: #447cf5;
}

.boxes .box > div:nth-child(4) {
  --translateZ: -90px;
  background: #dbe3f4;
  top: 0;
  left: 0;
}

@keyframes box1 {
  0%, 50% {
    transform: translate(100%);
  }

  100% {
    transform: translate(200%);
  }
}

@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }

  50% {
    transform: translate(0);
  }

  100% {
    transform: translate(100%);
  }
}

@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }

  100% {
    transform: translate(0, 100%);
  }
}

@keyframes box4 {
  0% {
    transform: translate(200%);
  }

  50% {
    transform: translate(200%, 100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}

.about--header {
  background-image: url("aboutBg.088a8ce7.svg");
  background-position: center;
  background-size: cover;
  padding: 4rem 0;
}

.item--section {
  justify-content: space-around;
  align-items: flex-end;
  display: flex;
}

.about--header .mainColor {
  font-size: 25px;
  font-weight: 400;
  line-height: 38px;
}

.about--title {
  font-size: 40px;
  font-weight: 600;
  line-height: 68px;
}

.about--header .about-p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.About--img1 {
  position: relative;
  overflow: hidden;
}

.About--img1:before {
  z-index: 2;
  content: "";
  opacity: 0;
  background: linear-gradient(to right, #fff0 0, #ffffff4d 100%);
  width: 60%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -49%;
  overflow: hidden;
  transform: skewX(-25deg);
}

.About--img1:hover:before {
  animation: 1s alternate shine;
}

@keyframes shine {
  100% {
    opacity: 1;
    left: 200%;
  }
}

@media screen and (width <= 760px) {
  .item--section {
    justify-content: start;
  }
}

.ss {
  z-index: 99999;
  top: -151%;
  right: -85%;
}

.section2--title {
  font-size: 45px;
  font-weight: 600;
  line-height: 72px;
}

.section2--p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

.icon {
  padding: .7rem;
}

.section3--container {
  width: 91%;
  margin-left: auto;
}

.se3-item2 {
  margin-left: 120px;
}

.se3-item2 .row {
  box-shadow: 0 4px 124px #0000001a;
}

.sec3--h5 {
  font-size: 30px;
  font-weight: 600;
  line-height: 48px;
}

.sec3-p {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

.icon1 {
  background-color: #fff2f2;
}

.icon2 {
  background-color: #e2f3ff;
}

.icon3 {
  background-color: #f1e8ff;
}

.icon4 {
  background-color: #ffe7fb;
}

.owl-dot.active span {
  padding: 3px 9px;
  background: #6e00fa !important;
  display: inline-block !important;
}

.se4-container {
  width: 98%;
  margin-left: 55px;
}

.footer--input {
  border: none;
  outline: 0;
}

.footer {
  background-image: url("footer.25aadf84.svg");
}

.footer--tilte {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
}

.iconsohial a {
  background: #fff;
  border-radius: 50%;
  padding: 3px 9px;
  box-shadow: 0 2px 8px #63636333;
}

.Copyright {
  border-top: .1px solid #dfdadaf1;
}

@media screen and (width <= 600px) {
  .social, .subscribe--foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }

  .footer--tilte {
    font-size: 19px;
    line-height: 26px;
  }

  .subscribe--foot {
    flex-direction: column;
  }

  .subscribe--foot input {
    -o-transition: 1s;
    margin-bottom: .5rem;
    transition: all 1s;
  }

  .subscribe--foot a:hover {
    transform: translateY(4px);
  }

  .About--foot {
    margin-top: .7rem;
  }

  .social {
    flex-direction: column;
    align-items: start !important;
  }

  .iconsohial {
    margin: 10px 0;
  }

  .footer--logo .container {
    padding: .9rem !important;
  }

  .footer--input {
    text-align: center;
  }
}

@media screen and (width <= 400px) {
  .toggle-menu {
    margin-bottom: 1px;
    padding: 0;
  }

  .Contact--p, .footer--p {
    font-size: 14px;
  }
}

@media screen and (width <= 700px) {
  .Company {
    justify-content: center !important;
  }
}

@media (width <= 768px) {
  .section3--container .row {
    flex-direction: column;
    padding: 1rem 0 !important;
  }

  .se3-item2 {
    margin-top: 2.5rem;
    margin-left: 0;
  }

  .section3--container {
    margin: auto;
  }
}

@media (width <= 576px) {
  .about--title, .sec3--h5, .section2--title {
    font-size: 20px;
    line-height: 29px;
  }

  .sec3--p, .section2--p {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
  }

  .about--header .item--section {
    margin-bottom: 1rem;
  }
}

::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  box-shadow: inset 0 0 6px #0000004d;
}

::-webkit-scrollbar {
  background-color: #f5f5f5;
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #03a9f4;
  background-image: -webkit-linear-gradient(0deg, #ffffff80 25%, #0000 25% 50%, #ffffff80 50% 75%, #0000 75%, #0000);
  border-radius: 10px;
}

.link {
  transition: all .3s;
}

.link:hover {
  color: var(--mainColor);
}

/*# sourceMappingURL=about.8220b21c.css.map */
