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

*:focus {
  outline: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

.head .container {
  overflow: visible;
}

*::-moz-selection {
  color: #fff;
  background-color: #11172F;
}

*::selection {
  color: #fff;
  background-color: #11172F;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #3E4666;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #11172F;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d04c05;
}

.text_big {
  font-weight: 900;
  font-size: 40px;
}

.text_medium {
  font-size: 22px;
}

.text_regular {
  font-size: 16px;
}

@media (max-width: 576px) {
  .text_big {
    font-size: 28px;
  }
}
@media (max-width: 475px) {
  .text_big {
    font-size: 22px;
  }
}
.bold {
  font-weight: 600;
}

.black {
  font-weight: 900;
}

.mon_family {
  font-family: "Montserrat" sans-serif;
}

.rale_family {
  font-family: "Raleway" sans-serif;
}

.nav_bar a, .main h1 {
  font-family: "Montserrat" sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.yellow {
  color: #FF6B1A;
}

.dark {
  color: #11172F;
}

.white {
  color: #fff;
}

.grey {
  color: #848484;
}

.bgGrey {
  background-color: #DEDEDE;
}

.bgDarkGrey {
  background-color: #F4F3F2;
}

.bgYellow {
  background-color: #FF6B1A;
}

.bgDark {
  background-color: #11172F;
}

.bgWhite {
  background-color: #fff;
}

.yellow_btn {
  background-color: #FF6B1A;
  color: #fff;
  border: none;
  padding: 12px 17px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.yellow_btn:hover {
  background-color: #d04c05;
}

.dark_btn {
  background-color: #11172F;
  color: #fff;
  padding: 12px 17px;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark_btn:hover {
  background-color: #3E4666;
}

.outline_btn {
  border: 2px solid #B9B9B9;
  border-radius: 8px;
  background: transparent;
  padding: 8px 10px;
  transition: all 0.5s;
}

.outline_btn:hover {
  background-color: #3E4666;
  border-color: #DEDEDE;
}

.transition {
  transition: all 0.5s;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  color: #d04c05;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

body {
  background-color: #DEDEDE;
  font-family: "Montserrat";
}

.nav_center ul li {
  display: inline-block;
  margin: 0 20px;
}

.nav_center ul li a {
  color: #11172F;
  transition: all 0.5s;
}

.nav_center ul li a:hover {
  color: #d04c05;
}

.nav_center li.active a {
  color: #FF6B1A;
}

.nav_right {
  gap: 40px;
}

@media (max-width: 1024px) {
  .nav_center {
    display: none;
  }
}
.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  min-width: auto;
  width: 100%;
  text-align: center;
  padding: 0;
}

.dropdown-menu ul li {
  padding: 0;
}

.dropdown-item {
  margin: 10px auto;
  padding: 0;
}

.dropdown-menu img {
  width: 22px;
  height: 22px;
}

.offcanvas_open {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
  flex-direction: column;
}

.offcanvas_open span {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
}

.offcanvas_open span:nth-child(2) {
  width: 30px;
}

.offcanvas_open span:nth-child(3) {
  width: 15px;
}

.main .wrapper {
  justify-content: flex-start;
  gap: 20px;
}

.main {
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.head {
  position: relative;
}

#shape {
  position: absolute;
  top: 10%;
  left: 30%;
  z-index: -1;
  height: 400px;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

#shapefooter {
  width: 100%;
  height: 100%;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.main_h1 {
  margin-bottom: 30px;
}

.main_left {
  width: 55%;
}
.main_left p {
  padding: 10px 0;
}
.main_left .btn_group {
  margin-top: 50px;
}

.main_right {
  width: 40%;
}
.main_right .main_img {
  position: absolute;
  top: 50px;
  right: 0;
  -webkit-animation: main 1s linear;
          animation: main 1s linear;
}
.main_right .main_img img {
  width: 100%;
  -webkit-animation: imgShake 3s infinite linear 1s;
          animation: imgShake 3s infinite linear 1s;
}

@-webkit-keyframes main {
  0% {
    right: -10%;
    top: 100%;
  }
  100% {
    right: 0;
    top: 50px;
  }
}

@keyframes main {
  0% {
    right: -10%;
    top: 100%;
  }
  100% {
    right: 0;
    top: 50px;
  }
}
@-webkit-keyframes imgShake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes imgShake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (max-width: 1300px) {
  .main_right .main_img {
    width: 40%;
    top: auto;
    bottom: 50px;
    right: -3%;
  }
  @-webkit-keyframes main {
    0% {
      right: -10%;
      bottom: -100%;
    }
    100% {
      right: -3%;
      bottom: 50px;
    }
  }
  @keyframes main {
    0% {
      right: -10%;
      bottom: -100%;
    }
    100% {
      right: -3%;
      bottom: 50px;
    }
  }
  .main {
    padding: 50px 0;
  }
}
@media (max-width: 992px) {
  .main_left, .main_right {
    width: 100%;
  }
  .main_right {
    display: flex;
    justify-content: flex-end;
    display: none;
  }
  .main_right .main_img {
    width: 70%;
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 576px) {
  .main {
    padding: 25px 0;
  }
  .main_h1 {
    margin: 10px 0;
  }
  .main_left .btn_group {
    margin-top: 20px;
  }
}
.index__about {
  padding: 50px 0;
}

.index_about_text {
  position: relative;
  z-index: 0;
  padding: 20px 0;
  margin: 30px 0;
}
.index_about_text .wrapper::after {
  content: "";
  width: 43%;
  height: 100%;
  background-color: #F4F3F2;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.about_center {
  width: 100%;
  height: 100%;
}

.about__left {
  width: 65%;
  padding-right: 10%;
}
.about__left .about_img {
  position: relative;
  z-index: 0;
  width: 220px;
  height: 340px;
  margin: 0 auto;
}
.about__left .about_img .about__img__top {
  position: absolute;
  top: 5%;
  left: -65%;
  z-index: -1;
  -webkit-animation: about 3s infinite linear;
          animation: about 3s infinite linear;
  transform: translate(-50%, -50%);
}
.about__left .about_img .about__img__right {
  position: absolute;
  top: 15%;
  right: -35%;
  -webkit-animation: about 3s infinite linear 1s;
          animation: about 3s infinite linear 1s;
}
.about__left .about_img .about__img__bottom {
  position: absolute;
  bottom: -25%;
  right: -65%;
  -webkit-animation: about 3s infinite linear 1.5s;
          animation: about 3s infinite linear 1.5s;
}
.about__left .about_img .about__img__left {
  position: absolute;
  bottom: -25%;
  left: -65%;
  -webkit-animation: about 3s infinite linear 2s;
          animation: about 3s infinite linear 2s;
}

@-webkit-keyframes about {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes about {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.about__right {
  width: 35%;
  overflow: hidden;
  background-color: #F4F3F2;
}

.about__item {
  padding: 15px 0;
  border-bottom: 1px solid #DEDEDE;
}
.about__item:last-child {
  border: none;
}

.about__item h2 {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .about__left {
    width: 100%;
    padding: 0;
  }
  .about__right {
    width: 100%;
    margin-top: 100px;
    padding: 20px;
  }
  .index_about_text .wrapper::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .about__left .about_img {
    width: 180px;
    height: 290px;
  }
  .img_absolute {
    width: 70%;
  }
  .about__left .about_img .about__img__top {
    top: 15%;
  }
  .about__left .about_img .about__img__right {
    top: 27%;
  }
  .index__about {
    padding: 25px 0;
  }
}
@media (max-width: 500px) {
  .about__left .about_img {
    width: 160px;
    height: 250px;
  }
  .img_absolute {
    width: 50%;
  }
  .about__left .about_img .about__img__left {
    bottom: -15%;
  }
  .about__left .about_img .about__img__top {
    top: 20%;
  }
  .index_about_text {
    padding: 0;
    margin: 0;
  }
  .index__about {
    padding: 15px 0;
  }
}
@media (max-width: 330px) {
  .about__img__top, .about__img__left, .about__img__right, .about__img__bottom {
    display: none;
  }
  .about__right {
    margin-top: 30px;
  }
}
.index__services {
  position: relative;
  z-index: 0;
  padding: 50px 0;
  background-color: #11172F;
}

.index__services::after {
  content: "";
  background-image: url(../images/service_bg.png);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.service__item {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 40px;
  min-height: 480px;
  margin-bottom: 25px;
  transition: all 0.5s;
  cursor: pointer;
}

.read_more {
  margin-top: 20px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}

.read_more span {
  margin-right: 10px;
}

.service__item:hover {
  transform: scale(1.01, 1.01);
  background-color: #3E4666;
}

.service__item:hover .read_more {
  transform: translateY(15px);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 500px) {
  .index__services {
    padding: 10px 0;
  }
  .service__item {
    padding: 25px;
  }
}
.index_adv {
  padding: 50px 0;
}

.advantage__content {
  padding-top: 30px;
}

.advantage__content ul li {
  list-style: none;
  margin-bottom: 30px;
  position: relative;
}

.advantage__content ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #11172F;
  position: absolute;
  border-radius: 50%;
  top: 6px;
  left: -20px;
}

@media (max-width: 768px) {
  .advantage_img {
    text-align: center;
  }
  .advantage__content ul li {
    margin-left: 15px;
  }
}
@media (max-width: 500px) {
  .index_adv {
    padding: 10px 0;
  }
  .advantage__content {
    padding: 0;
  }
  .advantage__content ul li {
    margin-bottom: 15px;
  }
}
.slider__content {
  padding: 50px 0;
}

.slider {
  padding: 20px 0;
}

.slider__content .text_big {
  font-size: 36px;
}

.slider__item ul li {
  list-style-position: inside;
  color: #3E4666;
  font-size: 14px;
}

.slider__item img {
  display: inline-block;
  margin-bottom: 20px;
}

.sliders_group {
  position: relative;
}

.arrow__left {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(-50%, -50%);
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
}

.arrow__right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 26px;
  cursor: pointer;
}

.slick-dots li button:before {
  font-size: 20px;
}

.slick-dots li.slick-active button:before {
  color: #11172F;
}

@media (max-width: 992px) {
  .slider__text {
    padding: 0 30px;
  }
  .arrow__left, .arrow__right {
    display: none;
  }
}
@media (max-width: 500px) {
  .slider__content {
    padding: 15px 0;
  }
  .slider__content .text_big {
    font-size: 20px;
  }
  .slider__text {
    padding: 0;
  }
}
.index__partner {
  background-color: #3E4666;
  padding: 50px 0;
}

.index__partner .swiper {
  margin-left: 5%;
}
.index__partner .swiper__item {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px;
  min-height: 250px;
  margin-bottom: 70px;
  min-height: 350px;
}
.index__partner .swiper-scrollbar-drag {
  height: 10px;
  top: -2px;
}
.index__partner .swiper-horizontal > .swiper-scrollbar, .index__partner .swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: 20px;
  left: 0;
}

@media (max-width: 1300px) {
  .index__partner .swiper {
    margin-left: 0;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .index__partner .swiper__item {
    gap: 30px;
    margin-bottom: 40px;
  }
  .index__partner .swiper-horizontal > .swiper-scrollbar, .index__partner .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 5px;
  }
  .index__partner {
    padding: 20px 0;
  }
  .index__partner .swiper__item {
    min-height: 550px;
  }
}
.index__contact {
  padding: 50px 0;
  /* For Ripple Effect */
}
.index__contact .contact__item {
  background-color: #F4F3F2;
  padding: 50px 40px;
}
.index__contact .text_big {
  font-size: 34px;
}
.index__contact .input {
  width: 100%;
  margin: 15px 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 7px;
  padding: 15px 20px;
  border: 1px solid #fff;
}
.index__contact .label {
  margin: 10px 0;
  width: 100%;
}
.index__contact .confirm label {
  font-size: 14px;
}
.index__contact .checkbox-label {
  color: white;
  display: block;
  position: relative;
  margin: auto;
  cursor: pointer;
  font-size: 22px;
  line-height: 24px;
  height: 50px;
  width: 24px;
  clear: both;
}
.index__contact .checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.index__contact .checkbox-label .mark {
  top: 5px;
  position: absolute;
  height: 18px;
  width: 19px;
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.3s ease-in;
  border: 2px solid #11172F;
}
.index__contact .checkbox-label input:checked ~ .mark {
  background-color: #11172F;
  border-radius: 5px;
  transform: rotate(0deg) scale(1);
  opacity: 1;
  border: 2px solid #11172F;
}
.index__contact .checkbox-label .mark::after {
  position: absolute;
  content: "";
  border-radius: 5px;
}
.index__contact .checkbox-label input:checked ~ .mark::after {
  transform: rotate(45deg) scale(1);
  left: 6px;
  top: 1px;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  border-radius: 0;
}
.index__contact .checkbox-label .mark::before {
  position: absolute;
  content: "";
  border-radius: 10px;
  border: 1px solid #3E4666;
  transform: scale(0);
}
.index__contact .checkbox-label input:checked ~ .mark::before {
  left: -3px;
  top: -3px;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  transform: scale(3);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.index__contact .group__btn {
  display: flex;
  justify-content: flex-end;
}

.contact__app {
  margin: 20px 0 10px 0;
}

.contact__app__item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.contact__app__item a {
  color: #11172F;
  width: 70%;
  font-weight: 600;
}

.contact__socials img {
  width: 25px;
  height: 25px;
}

.contact__socials a {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .index__contact .group__btn {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .index__contact .contact__app__item a {
    width: 100%;
  }
  .index__contact {
    padding: 20px 0;
  }
  .index__contact .contact__item {
    padding: 25px;
  }
  .index__contact .text_big {
    font-size: 24px;
  }
}
footer {
  background-color: #11172F;
  color: #fff;
  padding: 15px 0;
}

.footer__center ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
}

.footer__center ul li a {
  color: #fff;
}

.footer__right p {
  color: #3E4666;
}
.footer__right p span a {
  color: #8288A0;
}

@media (max-width: 1024px) {
  .footer__center {
    display: none;
  }
}
@media (max-width: 576px) {
  footer .wrapper {
    justify-content: center;
    gap: 10px;
  }
}
/* offcanvas */
.offcanvas.show, .offcanvas-end {
  background-color: #11172F;
  color: #fff;
}

.offcanvas .btn-close {
  background-image: url(../images/close.png);
  opacity: 1;
}

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

.offcanvas-body {
  text-align: end;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.dropdown-menu {
  background-color: #727687;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #878DA3;
}

.lang {
  border: 2px solid #3E4666;
  padding: 10px;
  border-radius: 5px;
}

.menu {
  padding: 50px 0 100px 0;
}

.menu ul li {
  list-style: none;
  margin: 20px 0;
}

.menu ul li a {
  color: #fff;
  transition: color 0.5s;
}

.menu ul li a:hover {
  color: #3E4666;
}

.social-app {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.social-app a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  margin: 10px 0;
}

.modal-header, .modal-content {
  border: none;
  border-radius: 0;
  background-color: #F4F3F2;
}

.modal-content {
  padding: 20px 20px 40px 20px;
}

.modal .index__contact {
  padding: 0;
}

.modal .main_h1 {
  margin-bottom: 10px;
}

.modal .index__contact .text_big {
  font-size: 30px;
}

@media (max-width: 576px) {
  .modal-content {
    padding: 10px;
  }
  .modal .index__contact .text_big {
    font-size: 20px;
  }
}
.modal__icons {
  font-size: 40px;
  color: #FF6B1A;
}

/* scroll top */
#btn-back-to-top {
  position: fixed;
  bottom: 50px;
  right: 25px;
  display: none;
  z-index: 890;
}

.toTop {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6B1A;
  color: #fff;
  border: none;
  border-radius: 50%;
  overflow: hidden;
}

.toTop i {
  -webkit-animation: iconTop 2s infinite linear;
          animation: iconTop 2s infinite linear;
}

@-webkit-keyframes iconTop {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes iconTop {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
.part .head {
  min-height: 200px;
}

.parts {
  padding: 50px 0;
  background-color: #fff;
}

.part__item {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #F4F3F2;
  margin-bottom: 30px;
  cursor: pointer;
}

.part__left {
  padding: 30px;
  width: 65%;
  height: 100%;
}

.part__right {
  width: 35%;
  height: 100%;
}

.part__right img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.part__item__btn {
  margin-top: 20px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s;
}

.part__item:hover .part__item__btn {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 700px) {
  .part__item {
    flex-wrap: wrap;
  }
  .part__left {
    width: 100%;
  }
  .part__right {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .part__right img {
    height: 250px;
  }
  .parts {
    padding: 15px 0;
  }
}
.parts.products .slider__item img {
  margin: 0;
  cursor: pointer;
}

.parts.products .slider__item {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .parts.products .slider__item {
    margin-bottom: 50px;
  }
  .product__img {
    text-align: center;
    margin-bottom: 20px;
  }
  .slider__item:first-child {
    margin-top: 20px;
  }
}
.parts.abouts .about__left {
  width: 50%;
}

.parts.abouts .about__right {
  width: 50%;
  background-color: transparent;
}

.parts.abouts .wrapper {
  padding: 50px 0;
  min-height: 500px;
}

.main_h2 {
  margin-bottom: 30px;
}

.full_content {
  padding: 50px 0;
}

.about_advantage__item {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .parts.abouts .about__left, .parts.abouts .about__right {
    width: 100%;
    padding: 0;
  }
  .parts.abouts .wrapper {
    padding: 0;
  }
  .full_content {
    padding: 30px 0;
  }
}
.parts.contacts .contact__app__item a {
  font-weight: 400;
  width: 50%;
}

.contacts__item {
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .parts.contacts .contact__app__item a {
    width: 100%;
  }
  .parts.contacts .main_h1 {
    margin-bottom: 20px;
  }
  .contacts__item {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .index__contact .col-xl-7 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */