@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
  letter-spacing: 0.5px;
}

a {
  text-decoration: none !important;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

img {
  max-width: 100%;
  width: 100%;
}

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

body {
  font-family: "Roboto", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0 !important;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #121111;
}
body::-webkit-scrollbar-thumb {
  background: #e7511f;
}
body::-webkit-scrollbar-thumb:hover {
  background: white;
}
body section {
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}
body.menu-opened {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.color-red {
  color: #fa4216;
}

.bg-red {
  background: #fa4216;
}

.modal {
  padding: 0 !important;
  z-index: 9050;
}
.modal .modal-dialog {
  margin: auto;
  padding: 10px;
}
.modal .modal-content {
  border-radius: 2px;
  -webkit-box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
  background: #031a3d;
}
.modal .modal-content .modal-header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal .modal-content .modal-header .close {
  color: white;
  opacity: 0.75;
  font-size: 40px;
  margin: -14px;
}
.modal .modal-content .modal-body ul li {
  display: block;
  text-align: center;
  padding: 8px 10px;
}
.modal .modal-content .modal-body ul li a {
  font-size: 24px;
  color: White;
  padding: 4px;
}

.modal-backdrop.show {
  opacity: 0.75 !important;
}

.form-one {
  padding: 10px;
}
.form-one .form-group {
  padding: 10px 0;
}
.form-one .form-group label {
  display: inline-block;
  padding: 2px 10px;
  color: #fa4216;
  font-weight: 600;
}
.form-one .form-group label.error {
  color: #fa4216;
}
.form-one .form-group .input-style {
  display: block;
  width: 100%;
  background-color: #fbfbfb;
  border: 1px solid #fa4216;
  border-radius: 0 10px 10px 10px;
  padding: 7px 10px;
  outline: none;
  color: #121111;
}
.form-one .form-group .input-style:focus {
  color: #fa4216;
}
.form-one .form-group .select2-container .select2-selection--single {
  height: 38px;
  border: 1px solid #fa4216;
  border-radius: 0 10px 10px 10px;
  background-color: #fbfbfb;
  outline: none;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: #757575;
}

.scroll-down {
  position: relative;
  cursor: pointer;
  z-index: 6;
  display: inline-block;
  margin-top: 40px;
}
.scroll-down a {
  height: 90px;
  width: 120px;
}
.scroll-down span {
  font-weight: 500;
  font-size: 16px;
  color: #FEFEFD;
  position: absolute;
  letter-spacing: 2px;
  bottom: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.scroll-down .chevron {
  position: absolute;
  width: 40px;
  height: 3px;
  left: 50%;
  opacity: 0;
  margin-left: -20px;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
}
.scroll-down .chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}
.scroll-down .chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}
.scroll-down .chevron:before,
.scroll-down .chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.scroll-down .chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
          transform: skew(0deg, 30deg);
}
.scroll-down .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
          transform: skew(0deg, -30deg);
}
@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

#window-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(-35deg, #bfbfbf, #f4f4f4, #acacac);
}
#window-loader .logo {
  display: inline-block;
  max-width: 100%;
  padding: 10px;
}
#window-loader .logo img {
  -webkit-animation: loader-anime 2s linear infinite;
          animation: loader-anime 2s linear infinite;
}

@-webkit-keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.quick-whatsapp {
  position: fixed;
  left: 11.6px;
  bottom: 11.6px;
  z-index: 8999;
}
.quick-whatsapp a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #03c600;
  color: white;
  font-size: 32px;
}

.breadcrumb {
  margin: 0;
  position: relative;
  border: none;
  padding: 200px 0 0;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.38);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.38);
}
.breadcrumb .breadcrumb-content {
  position: relative;
  z-index: 1;
}
.breadcrumb .breadcrumb-content h1 {
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.25);
  font-weight: 900;
  font-size: 52px;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}
.breadcrumb .breadcrumb-content .page-path {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.breadcrumb .breadcrumb-content .page-path:after {
  content: "";
  position: absolute;
  right: 0;
  width: 100vw;
  height: 100%;
  background: white;
  z-index: 0;
  bottom: 0;
}
.breadcrumb .breadcrumb-content .page-path ul {
  position: relative;
  z-index: 2;
}
.breadcrumb .breadcrumb-content .page-path ul li {
  display: inline-block;
  padding: 10px;
}
.breadcrumb .breadcrumb-content .page-path ul li a {
  font-weight: 500;
  color: #121111;
}
.breadcrumb .breadcrumb-content .page-path ul li a:after {
  content: "/";
  display: inline-block;
  padding-left: 16px;
}
.breadcrumb .breadcrumb-content .page-path ul li:last-of-type a {
  color: #fa4216;
  pointer-events: none;
}
.breadcrumb .breadcrumb-content .page-path ul li:last-of-type a:after {
  display: none;
}
.breadcrumb .breadcrumb-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.breadcrumb .breadcrumb-image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), color-stop(rgba(255, 255, 255, 0.55)), to(white));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(255, 255, 255, 0.55), white);
}
.breadcrumb .breadcrumb-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .header-top .header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  margin: 0 -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-top .header-contacts:after {
  bottom: 0;
  right: 0;
  content: "";
  height: 2px;
  width: 85%;
  position: absolute;
  background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(#fa4216), to(#fa4216));
  background: rgba(0, 0, 0, 0) linear-gradient(to right, rgba(0, 0, 0, 0), #fa4216, #fa4216);
}
header .header-top .header-contacts a {
  color: #031a3d;
  padding: 5px 10px;
  margin: 10px 5px;
  font-weight: 500;
  font-size: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
header .header-top .header-contacts a i {
  margin-right: 5px;
}
header .header-top .header-contacts .phones-block {
  display: inline-block;
  margin-left: 12px;
}
header .header-top .header-contacts .phones-block a {
  display: block;
  margin: 3px 0;
  padding: 3px;
  border-right: 0;
}
header .header-bottom {
  padding: 10px;
}
header .logo a {
  max-width: 320px;
}
header .logo a img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .main-menu nav ul li {
  display: inline-block;
  padding: 0 4px;
}
header .main-menu nav ul li a {
  color: #031a3d;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
header .main-menu nav ul li a:hover {
  color: #fa4216;
}
header .main-menu nav ul li:last-of-type {
  padding-right: 0;
}
header .main-menu nav ul li:last-of-type a {
  background-color: #fa4216;
  color: White;
}
header .main-menu nav ul li:last-of-type a:hover {
  background: #121111;
}
header .menu-button {
  display: none;
  color: white;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: #fa4216;
  border: none;
}
header .menu-button:hover {
  background: #121111;
}
header.affix {
  background: rgba(0, 0, 0, 0.85);
  -webkit-box-shadow: 0 0 23px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 23px rgba(0, 0, 0, 0.5);
}
header.affix .logo a {
  max-width: 256px;
}
header.affix .logo a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
header.affix .main-menu nav ul li a, header.affix .header-top .header-contacts a {
  color: White;
}
header.affix .main-menu nav ul li a:hover, header.affix .header-top .header-contacts a:hover {
  color: #fa4216;
}

footer .footer-top {
  padding: 80px 0;
  background: #031a3d;
}
footer .footer-top .footer-about {
  background: white;
  padding: 20px 15px;
  -webkit-box-shadow: 0 0 15px black;
          box-shadow: 0 0 15px black;
  border-radius: 2px;
  margin: 15px 0;
}
footer .footer-top .footer-about .logo {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 22px;
}
footer .footer-top .footer-about .logo:after {
  content: "";
  position: absolute;
  left: 0;
  width: 60%;
  height: 1px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
footer .footer-top .footer-about p {
  font-size: 12px;
  font-weight: 600;
}
footer .footer-top .footer-about a {
  background: #fa4216;
  color: white;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 600;
}
footer .footer-top .top-content-header {
  margin-bottom: 15px;
}
footer .footer-top .top-content-header h4 {
  color: white;
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  font-size: 20px;
}
footer .footer-top .top-content-header h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fa4216;
  width: 10px;
  height: 10px;
}
footer .footer-top .top-content-header h4:after {
  content: "";
  position: absolute;
  left: 0;
  width: 60%;
  height: 1px;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
}
footer .footer-top .footer-top-content {
  margin: 15px 0;
}
footer .footer-top .footer-top-content ul li {
  padding: 3px 5px;
}
footer .footer-top .footer-top-content ul li a {
  color: rgba(255, 255, 255, 0.75);
  padding-left: 5px;
  border-left: 1px solid transparent;
  font-size: 14px;
}
footer .footer-top .footer-top-content ul li a:hover {
  color: white;
  border-color: #fa4216;
}
footer .footer-top .footer-top-content .footer-contact address, footer .footer-top .footer-top-content .footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  padding-left: 5px;
  border-left: 1px solid transparent;
  font-size: 14px;
  margin: 5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-top .footer-top-content .footer-contact address i, footer .footer-top .footer-top-content .footer-contact a i {
  color: white;
  margin-right: 5px;
  width: 18px;
  font-size: 16px;
  text-align: center;
}
footer .footer-top .footer-top-content .footer-contact address:hover, footer .footer-top .footer-top-content .footer-contact a:hover {
  color: white;
  border-color: #fa4216;
}
footer .footer-top .footer-top-content .footer-socials {
  margin-top: 15px !important;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-top .footer-top-content .footer-socials a {
  padding: 4px;
}
footer .footer-top .footer-top-content .footer-socials a i {
  font-size: 30px;
}
footer .footer-top .footer-top-content .e-bulten p {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
footer .footer-top .footer-top-content .e-bulten form {
  text-align: right;
}
footer .footer-top .footer-top-content .e-bulten form input {
  width: 100%;
  padding: 4px 7px;
  font-size: 14px;
}
footer .footer-top .footer-top-content .e-bulten form button {
  background: #fa4216;
  border: none;
  margin-top: 5px;
  color: White;
  padding: 4px 10px;
}
footer .copyright {
  position: relative;
  text-align: center;
  padding: 20px 0;
  background: #121111;
}
footer .copyright:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), color-stop(white), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), white, rgba(255, 255, 255, 0.2), transparent);
  height: 2px;
  border-radius: 50px;
}
footer .copyright a, footer .copyright p {
  font-size: 14px;
  color: white;
  margin: 5px 0;
}
footer .copyright a:hover, footer .copyright p:hover {
  color: #fa4216;
}

.welcome-section .video-background {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.welcome-section .video-background:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.65)), color-stop(rgba(0, 0, 0, 0.25)), to(white));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25), white);
}
.welcome-section video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.welcome-section .welcome-content {
  position: absolute;
  padding-top: 150px;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.welcome-section .welcome-content small {
  color: white;
  background: #031a3d;
  font-size: 20px;
  padding: 12px 20px;
}
.welcome-section .welcome-content h1 {
  color: white;
  font-size: 150px;
  letter-spacing: 6px;
  font-weight: 700;
  line-height: 1.1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.2);
}
.welcome-section .welcome-content h1 strong {
  display: block;
  text-align: right;
  font-weight: 900;
}
.welcome-section .welcome-content p {
  color: white;
  text-align: center;
  margin: 30px 0;
  letter-spacing: 4px;
  font-size: 18px;
}
.welcome-section .welcome-content p b {
  display: inline-block;
  background: #fa4216;
  color: #031a3d;
  padding: 0 3px;
}

.ft-about-section {
  padding: 80px 0px 100px;
}

.ft-about-img-exp {
  padding-top: 100px;
}

.ft-about-exp-area {
  top: 0px;
  right: 0;
}

.ft-about-exp-area .ft-about-exp-text {
  top: 50px;
  left: 60px;
  max-width: 185px;
}

.ft-about-exp-area .ft-about-exp-text h3 {
  font-size: 18px;
  color: #031a3d;
  font-weight: 700;
}

.ft-about-exp-area .ft-about-exp-text h3 span, .ft-about-exp-area .ft-about-exp-text h3 b {
  font-size: 48px;
}

.ft-about-exp-area .ft-about-exp-text p {
  font-weight: 500;
}

.ft-about-feature-list-warpper {
  padding-top: 35px;
}

.ft-about-feature-list-item {
  padding: 27px 20px 25px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
  -webkit-box-shadow: 1.91px 10.833px 50px 0px rgba(68, 68, 68, 0.15);
  box-shadow: 1.91px 10.833px 50px 0px rgba(68, 68, 68, 0.15);
}

.ft-about-feature-list-item .ft-about-feature-icon {
  width: 55px;
  height: 55px;
  margin-right: 20px;
  border-radius: 100%;
  background-color: #ffebeb;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}

.ft-about-feature-list-item .ft-about-feature-icon i {
  font-size: 30px;
  line-height: 0.75;
  color: #ea1e00;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}

.ft-about-feature-list-item .ft-about-feature-text {
  max-width: 420px;
}

.ft-about-feature-list-item .ft-about-feature-text h3 {
  color: #031a3d;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 5px;
}

.ft-about-feature-list-item:hover .ft-about-feature-icon {
  background-color: #ea1e00;
}

.ft-about-feature-list-item:hover .ft-about-feature-icon i {
  color: #031a3d;
}

.ft-about-section-2 {
  padding: 140px 0px 100px;
}

.ft-about-feature-wrapper-2 {
  margin-top: 20px;
}

.ft-about-feature-wrapper-2 .ft-about-feature-list-item .ft-about-feature-icon {
  background-color: transparent;
  margin-right: 15px;
}

.ft-about-feature-wrapper-2 .ft-about-feature-list-item {
  padding: 18px 15px 20px 15px;
  height: calc(100% - 30px);
  margin: 15px 0;
}

.ft-about-feature-wrapper-2 .ft-btn-3 {
  margin-top: 20px;
}

.ft-about-img-2 {
  overflow: hidden;
  border-radius: 8px;
}

.ft-about-img-2-wrapper {
  padding-left: 40px;
  z-index: 1;
}

.ft-about-img-2-wrapper .ft-about-shape1 {
  right: -15px;
  top: -15px;
}

.ft-about-img-2-wrapper .ft-about-shape2 {
  left: 0;
  z-index: -1;
  bottom: -40px;
}

.ft-about-sign-img-text {
  right: 0;
  bottom: -20px;
  position: absolute;
}

.ft-about-sign-img-text .sign-shape {
  left: -95px;
  bottom: 10px;
  position: absolute;
}

.ft-about-sign-img-text span {
  color: #141415;
  display: block;
  margin-top: 5px;
  font-weight: 700;
}

.ft-about-text-3 .ft-about-sub-text {
  color: #272727;
  font-size: 17px;
  line-height: 1.765;
  padding: 25px 0px 20px;
}

.ft-about-text-3 .ft-about-feature-text {
  color: #666666;
  font-size: 15px;
  line-height: 1.667;
}

.ft-about-text-3 .ft-about-btn-group {
  margin-top: 30px;
}

.ft-about-text-3 .ft-about-btn-group a {
  color: #141415;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 30px;
  margin-right: 25px;
  font-family: "Poppins";
  border: 2px solid #fa3b0e;
}

.ft-about-text-3 .ft-about-btn-group a i {
  margin-left: 5px;
}

.ft-about-text-3 .ft-about-btn-group a:hover {
  color: #fff;
  border: 2px solid #008eff;
  background-color: #008eff;
}

.ft-thx-about-section {
  padding: 30px 0px 100px;
}

.pr-cor-about-feature-area {
  padding: 28px 0px;
}

.pr-cor-about-feature-list {
  margin-bottom: 28px;
}

.pr-cor-about-feature-list .pr-cor-about-ft-icon {
  width: 75px;
  height: 75px;
  border-radius: 5px;
  margin-right: 30px;
  background-color: #ffeced;
}

.pr-cor-about-feature-list .pr-cor-about-ft-icon i {
  font-size: 50px;
  line-height: 0.7;
  color: #ff484e;
}

.pr-cor-about-feature-list .pr-cor-about-ft-text {
  max-width: 455px;
}

.pr-cor-about-feature-list .pr-cor-about-ft-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ff484e;
  padding-bottom: 10px;
}

.pr-cor-about-feature-list:hover .pr-cor-about-ft-icon {
  -webkit-animation: icon-bounce 0.8s ease-out;
  animation: icon-bounce 0.8s ease-out;
}

.pr-cor-about-img-wrap {
  z-index: 1;
}

.pr-cor-about-img-wrap .pr-cor-about-img-area,
.pr-cor-about-img-wrap .pr-cor-about-img-area2 {
  overflow: hidden;
  border-radius: 5px;
}

.pr-cor-about-img-wrap .pr-cor-about-img-shape {
  top: 100px;
  right: 100px;
  z-index: -1;
  -webkit-animation: zoominoutsinglefeatured 10s infinite;
  animation: zoominoutsinglefeatured 10s infinite;
}

.pr-cor-about-img-wrap .pr-cor-about-img-area2 {
  right: 0;
  top: 205px;
}

.pr-sx-about-section-2 {
  padding: 95px 0px;
  overflow: hidden;
  background-color: #f5f8fd;
}

.pr-sx-about-section-2 .pr-sx-secion-title p {
  padding-bottom: 15px;
}

.pr-sx-about-feature-list {
  padding: 20px 0px;
}

.pr-sx-about-feature-list li {
  padding-left: 55px;
  margin-bottom: 18px;
  position: relative;
}

.pr-sx-about-feature-list li:before {
  top: 0;
  left: 0;
  font-size: 25px;
  content: "\f058";
  font-weight: 900;
  color: #ff484e;
  position: absolute;
  font-family: "Font Awesome 5 Pro";
}

.pr-sx-about-img-area {
  background-color: #fff;
  overflow: hidden;
  border-top-right-radius: 70px;
  border-bottom-left-radius: 70px;
  -webkit-box-shadow: 0px 48px 40px 0px rgba(135, 135, 135, 0.15);
  box-shadow: 0px 48px 40px 0px rgba(135, 135, 135, 0.15);
}

.pr-sx-about-exp {
  top: 55px;
  right: -120px;
  width: 260px;
  height: 105px;
  padding-left: 15px;
  border-radius: 8px;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 13.435px 13.435px 30px 0px rgba(55, 54, 54, 0.2);
  box-shadow: 13.435px 13.435px 30px 0px rgba(55, 54, 54, 0.2);
}

.pr-sx-about-exp .pr-sx-about-exp-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ff484e;
}

.pr-sx-about-exp .pr-sx-about-exp-text p {
  font-weight: 500;
  color: #ff484e;
}

.pr-sx-about-exp .pr-sx-about-exp-icon {
  width: 60px;
  height: 60px;
  line-height: 70px;
  margin-right: 18px;
  border-radius: 1000%;
  background-color: #ff484e;
}

.pr-sx-about-exp .pr-sx-about-exp-icon i {
  color: #fff;
  font-size: 35px;
}

.ft-thx-about-section-3 {
  padding: 80px 0px 110px;
}

.ft-thx-about-img-3 {
  z-index: 1;
}

.ft-thx-about-img-3 .ft-thx-ab-inner-img1 {
  margin-top: 50px;
  margin-left: 40px;
  overflow: hidden;
  border-radius: 5px;
  display: inline-block;
}

.ft-thx-about-img-3 .ft-thx-ab-inner-img2 {
  position: absolute;
  right: 50px;
  bottom: 150px;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
}

.ft-thx-about-img-3 .ft-thx-ab-shape1 {
  left: -50px;
  z-index: -1;
  bottom: 200px;
}

.ft-thx-about-text-3 {
  padding-left: 15px;
}

.ft-thx-about-list-item-wrapper-3 {
  padding-top: 50px;
}

.ft-thx-about-list-item-3 {
  margin-bottom: 30px;
}

.ft-thx-about-list-item-3 .ft-thx-inner-icon {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  margin-right: 25px;
  background-color: rgba(74, 185, 207, 0.1490196078);
}

.ft-thx-about-list-item-3 .ft-thx-inner-icon i {
  font-size: 50px;
  line-height: 0.75;
  color: #4ab9cf;
}

.ft-thx-about-list-item-3 .ft-thx-inner-text {
  max-width: 430px;
}

.ft-thx-about-list-item-3 .ft-thx-inner-text h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.ft-btn-3 a {
  color: #fff;
  height: 55px;
  width: 180px;
  font-weight: 600;
  border-radius: 2px;
  background-color: #ea1e00;
}
.ft-btn-3 a:hover {
  background-color: #031a3d;
}
.ft-btn-3 a:hover i {
  margin-left: 10px;
}

.ft-btn-3 a i {
  margin-left: 5px;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.ft-section-title-2 .sub-title {
  font-size: 20px;
  font-weight: 700;
  color: #ea1e00;
}
.ft-section-title-2 p {
  font-size: 14px;
  text-align: justify;
  margin: 0;
}

.def-stats {
  padding: 100px 0;
  background: #031a3d;
}
.def-stats .stats-item {
  padding: 10px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.def-stats .stats-item .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  background: #fa4216;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.def-stats .stats-item .icon img {
  max-width: 64px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.def-stats .stats-item .stats-value {
  font-weight: 700;
  color: #031a3d;
  font-size: 36px;
}
.def-stats .stats-item .stats-name {
  text-align: center;
  line-height: 1.1;
}

.home-services {
  padding: 100px 0;
}
.home-services h2 {
  position: relative;
  text-align: center;
  color: #031a3d;
  padding-bottom: 10px;
}
.home-services h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#fa4216), color-stop(#031a3d), color-stop(#fa4216), to(transparent));
  background: linear-gradient(to right, transparent, #fa4216, #031a3d, #fa4216, transparent);
}
.home-services .services-item {
  margin: 60px 0;
  padding: 140px 0;
  position: relative;
}
.home-services .services-item:nth-of-type(odd) .background-image {
  right: 0;
}
.home-services .services-item:nth-of-type(even) .background-image {
  left: 0;
}
.home-services .services-item:nth-of-type(even) .item-content {
  margin-left: auto;
}
.home-services .services-item .background-image {
  position: absolute;
  top: 0;
  width: calc(100% - 40px);
  height: 100%;
  z-index: 0;
  -webkit-box-shadow: 0 0 30px rgba(3, 26, 61, 0.5);
          box-shadow: 0 0 30px rgba(3, 26, 61, 0.5);
  border-radius: 2px;
}
.home-services .services-item .background-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-services .services-item .item-content {
  position: relative;
  z-index: 1;
  padding: 50px 30px;
  background: white;
  max-width: 480px;
  -webkit-box-shadow: 0 0 24px #031a3d;
          box-shadow: 0 0 24px #031a3d;
  border-radius: 2px;
  border-bottom: 4px solid #fa4216;
}
.home-services .services-item .item-content h3 {
  color: #fa4216;
}
.home-services .services-item .item-content p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-weight: 500;
}
.home-services .services-item .item-content a {
  background: #031a3d;
  padding: 8px 14px;
  color: White;
  font-weight: 600;
  font-size: 15px;
}
.home-services .services-item .item-content a:hover {
  background: #fa4216;
}

.corporate-pages {
  padding: 80px 0;
}
.corporate-pages .about-us-page h2 {
  color: #fa4216;
}
.corporate-pages .about-us-page .about-image {
  margin: 30px 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
}
.corporate-pages .about-us-page .ft-about-feature-list-item .ft-about-feature-text {
  max-width: 100%;
}
.corporate-pages .about-us-page .ft-about-feature-list-item {
  height: calc(100% - 60px);
  margin: 30px 0;
}
.corporate-pages .about-us-page .company-culture {
  position: relative;
  margin-top: 15px;
}
.corporate-pages .about-us-page .company-culture:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 89px;
  border-bottom: 3px dashed #031a3d;
  z-index: 1;
}
.corporate-pages .about-us-page .company-culture .culture-item {
  margin: 15px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.corporate-pages .about-us-page .company-culture .culture-item figure {
  display: inline-block;
}
.corporate-pages .about-us-page .company-culture .culture-item figure .icon {
  max-width: 148px;
  padding: 10px;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  background: white;
  border-radius: 2px;
}
.corporate-pages .about-us-page .company-culture .culture-item figure .icon img {
  padding: 20px;
  border: 1px solid rgba(250, 66, 22, 0.25);
  border-radius: 2px;
}
.corporate-pages .about-us-page .company-culture .culture-item figure figcaption {
  margin-top: 20px;
  font-weight: 600;
  color: #031a3d;
  margin-bottom: 0;
}
.corporate-pages .services-page .services-item {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 50px;
}
.corporate-pages .services-page .services-item:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(0, 0, 0, 0.2)), color-stop(#fa4216), color-stop(rgba(0, 0, 0, 0.2)), to(transparent));
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), #fa4216, rgba(0, 0, 0, 0.2), transparent);
  height: 2px;
  border-radius: 50px;
}
.corporate-pages .services-page .services-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.corporate-pages .services-page .services-item:last-of-type:after {
  display: none;
}
.corporate-pages .services-page .services-item .background-image {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  border-radius: 2px;
}
.corporate-pages .services-page .services-item .item-content h3 {
  color: #fa4216;
}
.corporate-pages .services-page .services-item .item-content p {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}

.contact-page {
  padding: 80px 0;
}
.contact-page .contact-form {
  margin: 15px 0 30px 0;
  -webkit-box-shadow: 0 0 28px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 28px rgba(0, 0, 0, 0.35);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  background: white;
}
.contact-page .contact-form .image {
  height: 100%;
}
.contact-page .contact-form .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-page .contact-form .form-area {
  padding: 40px 30px;
}
.contact-page .contact-form .form-area h2 {
  color: #fa4216;
}
.contact-page .contact-form .form-area p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  padding-bottom: 4px;
  border-bottom: 1px solid #031a3d;
}
.contact-page .contact-form .form-area .form-group {
  padding: 4px 0;
  margin: 8px 0;
}
.contact-page .contact-form .form-area .form-group label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.7);
}
.contact-page .contact-form .form-area .form-group input, .contact-page .contact-form .form-area .form-group textarea {
  width: 100%;
  border-radius: 2px;
  padding: 8px 6px;
  font-size: 13px;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.35);
}
.contact-page .contact-form .form-area .form-group input:focus, .contact-page .contact-form .form-area .form-group textarea:focus {
  outline-color: #fa4216;
}
.contact-page .contact-form .form-area .form-group button {
  background: #031a3d;
  color: White;
  border: 1px solid #031a3d;
  padding: 8px 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-page .contact-form .form-area .form-group button:hover {
  background: #fa4216;
  -webkit-box-shadow: 0 0 10px #031a3d;
          box-shadow: 0 0 10px #031a3d;
}
.contact-page .contact-infos {
  margin: 100px 0 15px;
}
.contact-page .contact-infos .info-item {
  background: #031a3d;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 40px 20px;
  position: relative;
  text-align: center;
}
.contact-page .contact-infos .info-item:after {
  content: "";
  position: absolute;
  right: 0;
  border-right: 1px solid white;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: calc(100% - 40px);
}
.contact-page .contact-infos .info-item.no-line:after {
  display: none;
}
.contact-page .contact-infos .info-item .icon {
  width: 64px;
  height: 64px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fa4216;
  -webkit-box-shadow: 0 0 10px #fa4216;
          box-shadow: 0 0 10px #fa4216;
  margin-bottom: 25px;
}
.contact-page .contact-infos .info-item .icon img {
  max-width: 48px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.contact-page .contact-infos .info-item a {
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.references-page .references-item {
  margin: 15px 0;
  height: calc(100% - 30px);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.references-page .references-item figure {
  text-align: center;
}
.references-page .references-item figure img {
  max-width: 256px;
  height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}
.references-page .references-item figure figcaption {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid #031a3d;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.references-page .references-item:hover {
  border-color: #fa4216;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.references-page .references-item:hover figure figcaption {
  color: #fa4216;
}

@media (max-width: 1439px) {
  .welcome-section .welcome-content h1 {
    font-size: 130px;
  }
}
@media (max-width: 1199px) {
  .welcome-section .welcome-content h1 {
    font-size: 120px;
  }

  .def-stats .stats-item .stats-value {
    font-size: 28px;
  }

  .def-stats .stats-item .icon img {
    max-width: 50px;
  }

  .def-stats .stats-item .icon {
    width: 64px;
    height: 64px;
  }

  .def-stats .stats-item .stats-name {
    font-size: 14px;
  }

  .def-stats .stats-item {
    margin: 15px 0;
  }

  .ft-section-title-2 h2 {
    font-size: 28px;
  }

  .breadcrumb .breadcrumb-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  header .main-menu .menu-button {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .main-menu nav {
    display: none;
  }

  header .header-top .header-contacts a:first-of-type {
    display: none;
  }

  .welcome-section .welcome-content h1 {
    font-size: 90px;
  }

  .welcome-section .welcome-content p {
    font-size: 16px;
  }

  .ft-about-section-2 {
    padding: 100px 0 60px;
  }

  .ft-about-img-2-wrapper {
    margin: 30px 0;
  }

  .ft-about-img-2-wrapper {
    padding: 0;
  }

  .ft-about-img-2-wrapper .ft-about-shape2 {
    display: none;
  }

  .ft-about-img-2-wrapper .ft-about-shape1 {
    right: 0;
    top: 0;
  }

  .ft-section-title-2 h2 {
    font-size: 24px;
  }

  .breadcrumb .breadcrumb-content h1 {
    font-size: 36px;
  }

  .corporate-pages .services-page .services-item .background-image {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .welcome-section .welcome-content h1 {
    font-size: 54px;
  }

  .welcome-section .welcome-content p {
    font-size: 14px;
    font-weight: 500;
  }

  .scroll-down span {
    font-size: 14px;
  }

  .welcome-section .video-background {
    height: 90vh;
  }

  .modal .modal-content .modal-body ul li a {
    font-size: 20px;
  }

  .ft-about-section-2 {
    padding: 80px 0 40px;
  }

  .home-services {
    padding: 80px 0;
  }

  .corporate-pages .about-us-page .company-culture:after {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-right: 3px dashed #031a3d;
    border-bottom: none;
  }

  .corporate-pages .about-us-page .company-culture .culture-item {
    background: white;
    margin: 30px 0;
  }

  .breadcrumb .breadcrumb-content h1 {
    font-size: 28px;
  }

  .breadcrumb .breadcrumb-content .page-path ul li a {
    font-size: 14px;
  }

  .breadcrumb .breadcrumb-content .page-path ul li {
    padding: 10px 5px;
  }

  .contact-page .contact-infos .info-item:after {
    right: 50%;
    border-right: none;
    border-bottom: 1px solid white;
    top: unset;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
    width: calc(100% - 40px);
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .welcome-section .welcome-content h1 {
    font-size: 10vw;
    margin-bottom: 0;
  }

  header .header-top {
    display: none;
  }
  header .logo a {
    max-width: 200px !important;
  }

  .welcome-section .video-background {
    height: 70vh;
  }

  .modal .modal-content .modal-body ul li a {
    font-size: 18px;
  }

  .ft-about-section-2 {
    padding: 60px 0 40px;
  }

  .home-services {
    padding: 60px 0;
  }

  .breadcrumb .breadcrumb-content h1 {
    font-size: 24px;
  }

  .scroll-down {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    margin-top: 0;
  }

  .welcome-section .welcome-content {
    padding-top: 110px;
  }
}