:root {
  --orange: #FF7513;
  --filterOrange: invert(53%) sepia(26%) saturate(3851%) hue-rotate(350deg) brightness(101%) contrast(103%);
  --blue: #4795C6;
  --green: #007C4C;
  --filterGreen: invert(31%) sepia(80%) saturate(848%) hue-rotate(119deg) brightness(94%) contrast(101%);
  --filterWhite: invert(100%) sepia(0%) saturate(7500%) hue-rotate(146deg) brightness(121%) contrast(121%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

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

*::selection {
  background-color: #FF7513;
  color: #fff;
}

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

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #FF7513;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #4795C6;
}

/***************************** Global Style *****************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.8rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

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

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  margin-bottom: 1.3rem;
}

form .form-control {
  border-radius: 10px;
  font-size: 13px;
  border: 2px solid #DFDFDF;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 2px solid #FF7513;
}

form input,
form select {
  height: 55px !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #d65b03, #FF7513);
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  display: none !important;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

.text-start {
  text-align: start !important;
}

.container {
  position: relative;
  z-index: 5;
}

/***************************** Animations *****************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(0, 124, 76, 0.8);
    color: #fff;
  }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #4795C6;
    color: #fff;
  }
}

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(0, 124, 76, 0.8);
    color: #fff;
  }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #4795C6;
    color: #fff;
  }
}

@-webkit-keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #4795C6;
    color: #fff;
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(0, 124, 76, 0.5);
    color: #fff;
  }
}

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #4795C6;
    color: #fff;
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(0, 124, 76, 0.5);
    color: #fff;
  }
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in-center {
  -webkit-animation: puff-in-center 1s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in-center 1s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

/* Loading Page */
@-webkit-keyframes drop {
  0% {
    -webkit-transform: scale3d(0.01, 0.01, 0.01) translateY(0);
            transform: scale3d(0.01, 0.01, 0.01) translateY(0);
  }
  10% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  44% {
    -webkit-transform: scale3d(1, 1, 1) translateY(200px);
            transform: scale3d(1, 1, 1) translateY(200px);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1) translateY(200px);
            transform: scale3d(1, 1, 1) translateY(200px);
  }
}
@keyframes drop {
  0% {
    -webkit-transform: scale3d(0.01, 0.01, 0.01) translateY(0);
            transform: scale3d(0.01, 0.01, 0.01) translateY(0);
  }
  10% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  44% {
    -webkit-transform: scale3d(1, 1, 1) translateY(200px);
            transform: scale3d(1, 1, 1) translateY(200px);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1) translateY(200px);
            transform: scale3d(1, 1, 1) translateY(200px);
  }
}

@-webkit-keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  42% {
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  42% {
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
            transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
  }
  42% {
    -webkit-transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
            transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
  }
  100% {
    -webkit-transform: rotateX(65deg) scale3d(0.9, 0.9, 0.9);
            transform: rotateX(65deg) scale3d(0.9, 0.9, 0.9);
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
            transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
  }
  42% {
    -webkit-transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
            transform: rotateX(65deg) scale3d(0.2, 0.2, 0.2);
  }
  100% {
    -webkit-transform: rotateX(65deg) scale3d(0.9, 0.9, 0.9);
            transform: rotateX(65deg) scale3d(0.9, 0.9, 0.9);
  }
}

@-webkit-keyframes border {
  0% {
    stroke-width: 6px;
  }
  42% {
    stroke-width: 6px;
  }
  100% {
    stroke-width: 2px;
  }
}

@keyframes border {
  0% {
    stroke-width: 6px;
  }
  42% {
    stroke-width: 6px;
  }
  100% {
    stroke-width: 2px;
  }
}

@-webkit-keyframes loaderSlideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    display: none;
  }
}

@keyframes loaderSlideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    display: none;
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container .navbar.navbar-fixed-top {
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.navs-container .navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  opacity: .97;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px #ddd;
          box-shadow: 0px 4px 15px 0px #ddd;
}

.navs-container .navbar.navbar-fixed-top.scrolled .nav-link {
  color: #888;
}

.navs-container .navbar.navbar-fixed-top.scrolled .nav-link.active, .navs-container .navbar.navbar-fixed-top.scrolled .nav-link:hover {
  color: #FF7513;
}

.navs-container .navbar .navbar-brand img {
  width: 250px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  margin: 0 7px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #888;
  position: relative;
  background-color: transparent;
  border: 0;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 11px;
  height: 5px;
  background: url(../images/icons/nav-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 0;
  opacity: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-container .navbar .nav-link.active, .navs-container .navbar .nav-link:hover {
  color: #FF7513 !important;
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.navs-container .navbar .nav-btn {
  width: 170px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  background-color: #FF7513;
  color: #fff;
  border-radius: 10px;
  position: relative;
}

.navs-container .navbar .nav-btn::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #4795C6;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-container .navbar .nav-btn span {
  position: relative;
  z-index: 1;
}

.navs-container .navbar .nav-btn:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.navs-container .navbar .has-dropdown {
  position: relative;
}

.navs-container .navbar .has-dropdown .nav-link::before {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 3px;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  position: absolute;
  right: -10px;
}

.navs-container .navbar .has-dropdown .drop-down {
  padding: 15px 0;
  width: 220px;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px #ddd;
          box-shadow: 0 5px 15px #ddd;
  border-top: 3px solid #FF7513;
  margin-bottom: 0;
  display: block;
  z-index: 1000;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  border-radius: 5px;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
}

.navs-container .navbar .has-dropdown .drop-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 7px solid #495057;
  border-color: transparent transparent #FF7513 #FF7513;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .has-dropdown .drop-down .dropdown-link {
  display: block;
  padding: 10px 20px;
  clear: both;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #84888c;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  text-transform: uppercase;
}

.navs-container .navbar .has-dropdown .drop-down .dropdown-link:hover {
  background-color: #f7f7f7;
  color: #FF7513;
}

.navs-container .navbar .has-dropdown:hover .drop-down {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  opacity: 1;
  visibility: visible;
}

.navs-container .navbar .has-dropdown:hover .nav-link::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navs-container .navbar .button_su {
  -webkit-margin-start: 25px;
          margin-inline-start: 25px;
}

.navs-container .navbar .button_su .button_su_inner {
  width: 45px !important;
  height: 40px !important;
  line-height: 40px !important;
  font-weight: bold;
  font-size: 12px;
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #FF7513;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #FF7513;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  background-color: #1B2534;
  padding: 130px 0 0 0;
}

footer .content {
  margin-bottom: 25px;
}

footer .content .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .content .p {
  color: #B4B4B4;
  font-size: 12px;
  line-height: 1.5rem;
}

footer .content .title {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 1.1rem;
}

footer .content .links a {
  display: block;
  color: #B4B4B4;
  font-size: 15px;
  margin: 15px 0;
}

footer .content .links a:hover {
  color: #FF7513;
}

footer .copyright {
  padding: 25px 0;
  text-align: center;
  margin-top: 25px;
  border-top: 1px solid #8480AE;
}

footer .copyright .p {
  margin-bottom: 0;
  color: #B4B4B4;
  font-weight: 500;
}

.footer-social-links .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 2px;
  background-color: #2e3f58;
  text-align: center;
}

.footer-social-links .icon.fb {
  color: #3585E1;
}

.footer-social-links .icon.twitter {
  color: #34BDE0;
}

.footer-social-links .icon.linkedIn {
  color: #1E8AAC;
}

.footer-social-links .icon.youtube {
  color: #DF2A2A;
}

.footer-social-links .icon:hover {
  background-color: #FF7513;
  color: #fff;
}

/***************************** Public classes *****************************/
/* Main button */
.button_su {
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 10px;
}

.button_su .su_button_circle {
  background-color: red;
  border-radius: 1000px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  /*animation-timing-function: ease-in-out; */
}

.button_su .button_su_inner {
  display: inline-block;
  background: #FF7513;
  color: #fff;
  width: 170px;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: 400ms;
  transition: 400ms;
  z-index: 1;
}

.button_su .button_text_container {
  position: relative;
  z-index: 2;
}

.button_su .explode-circle {
  -webkit-animation: explode 0.5s forwards;
          animation: explode 0.5s forwards;
}

.button_su .desplode-circle {
  -webkit-animation: desplode 0.5s forwards;
          animation: desplode 0.5s forwards;
}

/* Colors */
.color-orange {
  color: #FF7513;
}

.color-blue {
  color: #4795C6;
}

.color-green {
  color: #007C4C;
}

.color-white {
  color: #fff !important;
}

/* Center vr */
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Sec-title */
.sec-title {
  color: #001433;
  font-weight: 800;
  position: relative;
  text-transform: capitalize;
  font-size: 2.2rem;
}

.sec-title b {
  color: #FF7513;
  font-weight: 800;
}

.sec-title::after, .sec-title::before {
  content: '';
  width: 30px;
  height: 2px;
  display: inline-block;
  background-color: #FF7513;
  margin: 0 15px;
  position: relative;
  bottom: 9px;
}

.heading-p {
  font-size: 13px;
  color: #001433;
  font-weight: 500;
}

/* Loading Page */
.loader {
  width: 100%;
  height: 100vh;
  background-color: #1B2534;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
}

.loader.hidden {
  -webkit-animation: loaderSlideDown 1s;
          animation: loaderSlideDown 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.loader .wrap {
  position: absolute;
  width: 100px;
  height: 200px;
  left: 50%;
  margin-left: -50px;
  top: 50%;
  margin-top: -100px;
}

.loader .drop {
  width: 40px;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  -webkit-animation: drop 2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s infinite;
          animation: drop 2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s infinite;
}

.loader .drop circle {
  fill: #4795C6;
}

.loader .drop-outer {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* border: 1px solid #333; */
  width: 100px;
  height: 200px;
  overflow: hidden;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  background-clip: padding-box;
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.loader .ripple {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 240px;
  height: 240px;
  top: 68px;
  left: -70px;
  -webkit-perspective: 100;
          perspective: 100;
  -webkit-transform: rotateX(65deg);
          transform: rotateX(65deg);
}

.loader .ripple .ripple-svg {
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: 0;
}

.loader .ripple .ripple-svg circle {
  fill: none;
  stroke: #2a96ed;
  stroke-width: 10px;
  stroke-alignment: inner;
}

.loader .ripple-1 {
  -webkit-animation: ripple 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite;
          animation: ripple 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite;
}

.loader .ripple-1 .ripple-svg {
  -webkit-animation: fade-in-out 2s linear 0s infinite;
          animation: fade-in-out 2s linear 0s infinite;
}

.loader .ripple-1 .ripple-svg circle {
  -webkit-animation: border 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite;
          animation: border 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite;
}

.loader .ripple-2 {
  -webkit-animation: ripple 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s infinite;
          animation: ripple 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s infinite;
}

.loader .ripple-2 .ripple-svg {
  -webkit-animation: fade-in-out 2s linear 0.2s infinite;
          animation: fade-in-out 2s linear 0.2s infinite;
}

.loader .ripple-2 .ripple-svg circle {
  -webkit-animation: border 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s infinite;
          animation: border 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s infinite;
}

.loader .ripple-3 {
  -webkit-animation: ripple 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s infinite;
          animation: ripple 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s infinite;
}

.loader .ripple-3 .ripple-svg {
  -webkit-animation: fade-in-out 2s linear 0.35s infinite;
          animation: fade-in-out 2s linear 0.35s infinite;
}

.loader .ripple-3 .ripple-svg circle {
  -webkit-animation: border 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s infinite;
          animation: border 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s infinite;
}

/* Swiper */
.swiper-pagination .swiper-pagination-bullet {
  width: 45px;
  height: 5px;
  border-radius: 25px;
  background-color: #fff;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #FF7513;
}

.fs-13 {
  font-size: 13px !important;
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.ms-auto {
  -webkit-margin-start: auto !important;
          margin-inline-start: auto !important;
}

/***************************** Start Edit Home Page *****************************/
header {
  padding: 50px 0 100px 0;
}

header .text-box {
  padding: 0 10vw;
  position: relative;
  opacity: 0;
}

header .text-box .title {
  font-weight: 800;
  font-size: calc(32px + 1vw);
  line-height: 4rem;
  margin-bottom: 15px;
}

header .text-box .title sup {
  color: #555;
  font-size: 60%;
  font-weight: bold;
}

header .text-box .title .thin {
  font-weight: 400;
}

header .text-box .p {
  font-size: 15px;
  line-height: 1.8rem;
}

header .text-box .pattern3 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -25%;
  z-index: -1;
  width: 50%;
}

header .text-box .button_su {
  border-radius: 0px;
}

header .text-box .button_su .button_su_inner {
  width: 150px;
  font-weight: bold;
  border-radius: 0;
}

header .img-box {
  width: 100%;
  height: 550px;
  position: relative;
  opacity: 0;
  -webkit-filter: blur(25px);
          filter: blur(25px);
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

header .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 0 25%;
  position: relative;
  z-index: 1;
}

header .img-box .play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

header .img-box .play-btn:before, header .img-box .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF7513;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .img-box .play-btn:hover:before {
  background-color: #4795C6;
}

header .img-box .play-btn:before {
  z-index: 1;
}

header .img-box .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

header .img-box .play-btn i {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header .img-box .pattern1 {
  position: absolute;
  right: 0;
  bottom: -95px;
  z-index: -1;
}

header .img-box .pattern2 {
  position: absolute;
  left: -50px;
  top: -95px;
  z-index: -1;
}

header .swiper-slide-active .img-box {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

header .swiper-slide-active .text-box {
  -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  opacity: 1;
}

header .swiper-pagination .swiper-pagination-bullet {
  background-color: #999;
  opacity: .9;
}

header .swiper-pagination .swiper-pagination-bullet-active {
  background: #FF7513;
}

.header {
  position: relative;
  padding: 0;
}

.header .header-content {
  padding: 100px 0;
  position: relative;
  height: 85vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .header-content::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.header .header-content .text-box {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 10px 10px 40px 5px rgba(0, 0, 0, 0.5);
          box-shadow: inset 10px 10px 40px 5px rgba(0, 0, 0, 0.5);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px;
}

.header .header-content .text-box .title {
  font-weight: 800;
  font-size: calc(32px + 1.5vw);
  line-height: 4rem;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Poppins';
  letter-spacing: 2px;
}

.header .header-content .text-box .title .thin {
  font-weight: 400;
  font-size: 80%;
}

.header .header-content .text-box .color-blue,
.header .header-content .text-box .color-orange {
  -webkit-text-stroke-width: 3px;
  color: transparent;
  font-family: 'Poppins';
}

.header .header-content .text-box .color-blue {
  -webkit-text-stroke-color: var(--blue);
}

.header .header-content .text-box .color-orange {
  -webkit-text-stroke-color: var(--orange);
}

.header .swiper-pagination {
  bottom: 20px;
}

.header .swiper-slide-active .text-box {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.about-sec {
  padding: 100px 0 70px 0;
}

.about-sec .img-box {
  overflow: hidden;
  height: 500px;
}

.about-sec .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 25% 0;
}

.about-sec .text-box .sec-title::before {
  display: none;
}

.about-sec .text-box .title {
  color: #001433;
  font-weight: 600;
}

.about-sec .text-box .button_su {
  border-radius: 0px;
}

.about-sec .text-box .button_su .button_su_inner {
  width: 150px;
  font-weight: bold;
  border-radius: 0;
}

.drives-sec {
  padding: 70px 0;
  position: relative;
}

.drives-sec .drives_card {
  position: relative;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.drives-sec .drives_card .card_header {
  padding: 45px 0;
  position: relative;
}

.drives-sec .drives_card .card_header .icon {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.drives-sec .drives_card .card-body {
  padding: 1.7rem;
}

.drives-sec .drives_card .card-body .det {
  font-size: 17px;
  color: #8480AE;
  line-height: 2rem;
}

.drives-sec .drives_card.card1 {
  border: 2px solid var(--orange);
}

.drives-sec .drives_card.card1 .in-flex {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.drives-sec .drives_card.card2 {
  border: 2px solid var(--blue);
}

.drives-sec .drives_card.card2 .in-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  top: 30px;
  padding: 0 6vw 0 2vw;
}

.drives-sec .drives_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 3px 6px  15px 0 #ddd;
          box-shadow: 3px 6px  15px 0 #ddd;
}

.drives-sec .drives_card:hover .icon {
  -webkit-animation: pulse 2s both infinite;
          animation: pulse 2s both infinite;
}

.join-sec {
  position: relative;
  padding: 50px 0;
}

.join-sec .inner {
  padding: 0 70px;
  background-color: #2B2B2B;
  overflow: hidden;
}

.join-sec .inner .text-box {
  padding: 30px 0;
}

.join-sec .inner .text-box .logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.join-sec .inner .text-box .det {
  font-size: 14px;
  color: #ddd;
}

.join-sec .inner .main-img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.explore-sec {
  position: relative;
  padding: 70px 0;
}

.explore-sec .explore_card {
  position: relative;
  height: 440px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.explore-sec .explore_card .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.explore-sec .explore_card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 70px 0;
}

.explore-sec .explore_card .content .text {
  color: #fff;
  font-size: 25px;
  position: absolute;
  z-index: 2;
}

.explore-sec .explore_card .content .text.left {
  left: 20px;
  bottom: 15px;
}

.explore-sec .explore_card .content .text.right {
  right: 20px;
  top: 45px;
}

.explore-sec .explore_card .content .bg {
  z-index: unset;
}

.explore-sec .explore_card.card1 .content .bg {
  -webkit-filter: var(--filterOrange);
          filter: var(--filterOrange);
}

.explore-sec .explore_card.card3 .content .bg {
  -webkit-filter: var(--filterGreen);
          filter: var(--filterGreen);
}

.explore-sec .explore_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 3px 6px  15px 0 #ddd;
          box-shadow: 3px 6px  15px 0 #ddd;
}

.impact-sec {
  position: relative;
  padding: 110px 0;
}

.impact-sec .impact_card {
  position: relative;
  margin-bottom: 25px;
}

.impact-sec .impact_card .icon-container {
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: block;
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0 40px 80px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 40px 80px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-bottom: 25px;
}

.impact-sec .impact_card .icon-container .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(41%) sepia(7%) saturate(16%) hue-rotate(355deg) brightness(95%) contrast(92%);
          filter: invert(41%) sepia(7%) saturate(16%) hue-rotate(355deg) brightness(95%) contrast(92%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.impact-sec .impact_card .content .title {
  font-size: 1.1rem;
}

.impact-sec .impact_card .content .det {
  font-size: 13px;
}

.impact-sec .impact_card .content .more-link {
  color: #666;
  font-weight: bold;
}

.impact-sec .impact_card .content .more-link:hover {
  color: #FF7513;
}

.impact-sec .impact_card:hover .icon {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
  -webkit-filter: invert(66%) sepia(71%) saturate(4316%) hue-rotate(348deg) brightness(98%) contrast(106%);
          filter: invert(66%) sepia(71%) saturate(4316%) hue-rotate(348deg) brightness(98%) contrast(106%);
}

.impact-sec .shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 600px;
  opacity: .051;
  -webkit-filter: invert(66%) sepia(71%) saturate(4316%) hue-rotate(348deg) brightness(98%) contrast(106%);
          filter: invert(66%) sepia(71%) saturate(4316%) hue-rotate(348deg) brightness(98%) contrast(106%);
}

.projects-sec {
  padding: 70px 0;
  overflow: hidden;
}

.projects-sec .proj_card {
  -webkit-box-shadow: 0 0 35px 0 #eee;
          box-shadow: 0 0 35px 0 #eee;
  margin-bottom: 35px;
  height: calc(100% - 35px);
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.projects-sec .proj_card .main-img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects-sec .proj_card .card-body .title {
  color: #1B2534;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

.projects-sec .proj_card .card-body .size {
  color: #1B2534;
  font-weight: 500;
  margin-bottom: 0;
}

.projects-sec .proj_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.projects-sec .proj_card:hover .title {
  color: #FF7513;
}

.statics-sec {
  padding: 70px 0 100px 0;
  overflow: hidden;
}

.statics-sec .static_card {
  text-align: center;
  margin-bottom: 25px;
}

.statics-sec .static_card .counter {
  font-size: calc(32px + 2vw);
  color: #001433;
  font-weight: bold;
}

.statics-sec .static_card .title {
  font-weight: 400;
  color: #001433;
}

.anniversay-sec {
  padding: 150px 0 40px 0;
}

.anniversay-sec .inner {
  background-color: #F2F2F2;
  padding: 70px 50px;
  position: relative;
}

.anniversay-sec .inner .content {
  position: relative;
  z-index: 5;
}

.anniversay-sec .inner .logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.anniversay-sec .inner .vision-img {
  width: 220px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: 50%;
}

.anniversay-sec .inner .flag {
  width: 30%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 0;
  top: -100px;
}

.anniversay-sec .title {
  font-size: calc(1.3vw + 35px);
  font-weight: bold;
}

.joining-sec {
  margin-top: 50px;
  padding-bottom: 50px;
  border-radius: 20px;
  background-color: #4795C6;
  position: relative;
}

.joining-sec .main-img {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -50px;
}

.joining-sec .text-box {
  padding: 25px 0;
}

.joining-sec .text-box .title {
  color: #fff;
  font-weight: bold;
  font-size: calc(32px + 1vw);
}

.joining-sec .text-box .button_su .button_su_inner {
  font-weight: bold;
  height: 55px;
  line-height: 55px;
  font-size: 16px;
}

.joining-sec .pattern {
  position: absolute;
  left: 9%;
  bottom: 0;
  width: 40%;
  opacity: .1;
  -webkit-filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(319deg) brightness(134%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(319deg) brightness(134%) contrast(101%);
}

.contact-sec {
  padding: 100px 0 70px 0;
  position: relative;
  overflow: hidden;
}

.contact-sec .button_su {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.contact-sec .button_su .button_su_inner {
  font-weight: bold;
  width: 160px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}

.contact-sec .pattern {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.partners-sec {
  padding: 70px 0;
  overflow: hidden;
}

.partners-sec .partner-logo {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: .5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partners-sec .partner-logo:hover {
  opacity: 1;
  margin-top: -10px;
}

.newsletter-sec {
  padding: 70px 0 0 0;
  display: none;
}

.newsletter-sec .inner {
  padding: 90px 0;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 #eee;
          box-shadow: 0 0 10px 0 #eee;
  position: relative;
  margin-bottom: -50px;
}

.newsletter-sec .inner .title {
  color: #001433;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.newsletter-sec .inner .form-group {
  position: relative;
  z-index: 1;
}

.newsletter-sec .inner .form-group .form-control {
  background-color: #F6F6F6;
  border: 2px solid #F6F6F6;
  border-radius: 25px;
}

.newsletter-sec .inner .form-group .submit-btn {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 45px;
  height: 45px;
  background-color: #FF7513;
  border: 1px solid #FF7513;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.newsletter-sec .inner .form-group .submit-btn:hover {
  background-color: #007C4C;
  border: 1px solid #007C4C;
}

.newsletter-sec .inner .pattern {
  position: absolute;
  top: 25px;
  left: 0px;
}

/***************************** Start Edit About Page *****************************/
/* page-heading */
.page-heading {
  position: relative;
  padding: 140px 0 100px 0;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.page-heading::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}

.page-heading .text-box {
  position: relative;
  z-index: 1;
}

.page-heading .text-box .sec-title {
  color: #fff;
}

.about-pg {
  position: relative;
}

.about-pg .inner-sec .main-text {
  text-align: center;
}

.about-pg .inner-sec .main-text .subtitle {
  color: #FF7513;
}

.about-pg .inner-sec .main-text .title {
  color: #001433;
}

.about-pg .inner-sec .main-text .p {
  font-size: 12px;
}

.about-pg .inner-sec .img-box {
  height: 450px;
  border-radius: 0 0 25% 0;
  position: relative;
}

.about-pg .inner-sec .img-box .main-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 0 0 25% 0;
}

.about-pg .inner-sec .img-box::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 60px;
  border-radius: 0 0 25% 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: rgba(19, 90, 255, 0.1);
}

.about-pg .inner-sec .img-box2 {
  height: 450px;
  border-radius: 0 0 0 25%;
  position: relative;
}

.about-pg .inner-sec .img-box2 .main-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 0 0 0 25%;
}

.about-pg .inner-sec .img-box2::before {
  position: absolute;
  content: "";
  left: -20px;
  top: 60px;
  border-radius: 0 0 0 25%;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: rgba(255, 106, 19, 0.1);
}

.about-pg .inner-sec .vision_logo {
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.inner-sec {
  background-color: #fff;
  margin-top: 70px;
  margin-bottom: 50px;
  padding: 50px 35px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  -webkit-box-shadow: 3px 6px 25px 0 #eee;
          box-shadow: 3px 6px 25px 0 #eee;
  border: 1px solid #eee;
}

.no_overflow {
  overflow: hidden;
}

.about-cards {
  padding: 0 0 70px 0;
  position: relative;
}

.about-cards .card {
  border: 1px solid #dddd;
  border-radius: 10px;
  padding: 35px;
  height: calc(100% - 25px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

.about-cards .card .icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
}

.about-cards .card .card-body .title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.about-cards .card .card-body .p {
  line-height: 2rem;
  font-size: 12px;
  margin-bottom: 0;
}

.about-cards .card:hover {
  border: 1px solid #FF7513;
}

.about-cards .card:hover .icon {
  -webkit-animation: pulse 2s both infinite;
          animation: pulse 2s both infinite;
}

.custom-list .li {
  padding: 0 25px;
  font-size: 12px;
  margin: 10px 0;
  line-height: 1.6rem;
  position: relative;
}

.custom-list .li::before {
  content: '';
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 7px;
  top: 10px;
  background-color: #FF7513;
}

.ceo-sec {
  position: relative;
  border-radius: 0 0 20px 20px;
}

.ceo-sec .img-box {
  height: 450px;
  border-radius: 0 0 25% 0;
  position: relative;
}

.ceo-sec .img-box .main-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 0 0 25% 0;
}

.ceo-sec .img-box::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 60px;
  border-radius: 0 0 25% 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: rgba(19, 90, 255, 0.1);
}

.ceo-sec .inner-sec {
  padding: 0 30px;
}

.ceo-sec .text-box {
  position: relative;
  z-index: 1;
  padding: 5vw 1.5vw;
}

.ceo-sec .text-box .title {
  color: #1B2534;
}

.ceo-sec .text-box .p {
  line-height: 2rem;
  font-size: 16px;
  color: #888;
}

.ceo-sec .pattern {
  width: 30%;
  position: absolute;
  top: 0;
  left: 0;
}

/***************************** Start Edit clients Page *****************************/
.clients-pg .client_card {
  border: 1px solid #eee;
  height: 250px;
  margin-bottom: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.clients-pg .client_card .logo {
  width: 70%;
  height: 150px;
  display: block;
  margin: auto;
}

.clients-pg .client_card:hover {
  margin-top: -10px;
  -webkit-box-shadow: 0 5px 25px 0 #dddd;
          box-shadow: 0 5px 25px 0 #dddd;
  border: 1px solid #FF7513;
}

/***************************** Start Edit contact Page *****************************/
.contact-pg {
  padding: 0 0 70px 0;
  position: relative;
}

.contact-pg .inner-sec {
  padding: 50px 3vw;
}

.contact-pg .contact-head {
  border-bottom: 1px solid #ccc;
  padding-bottom: 25px;
}

.contact-pg .contact-head .contact-card {
  text-align: center;
}

.contact-pg .contact-head .contact-card .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #FF7513;
  color: #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px auto;
}

.contact-pg .contact-head .contact-card .data {
  margin-bottom: 0;
  font-weight: bold;
  color: #666;
  font-weight: 500;
  font-size: 13px;
}

.contact-pg .contact-head .contact-card .data span {
  font-size: 11px;
}

.contact-pg .button_su .button_su_inner {
  border: 1px solid #ff7513;
}

.contact-pg .butn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

/***************************** Start Edit projects Page *****************************/
.projects-pg {
  padding: 0 0 70px 0;
  position: relative;
}

.projects-pg .filtering {
  -webkit-box-shadow: 0 5px 25px 0 #f3f3f3;
          box-shadow: 0 5px 25px 0 #f3f3f3;
  padding: 25px 20px;
  border-radius: 15px;
}

.projects-pg .filtering .filter-title {
  margin-bottom: 0;
  line-height: 55px;
  font-weight: 600;
  color: #777;
}

.projects-pg .filtering .form-group {
  position: relative;
}

.projects-pg .filtering .form-group .search-icon {
  position: absolute;
  right: 5px;
  top: 15px;
  color: #999;
  background-color: transparent;
  border: transparent;
}

.projects-pg .item .main-img {
  width: 100%;
  height: 710px;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects-pg .item .text-box {
  padding: 2vw 1vw;
}

.projects-pg .item .text-box .title {
  text-transform: uppercase;
  color: #1B2534;
  font-weight: 600;
}

.projects-pg .item .text-box .categ {
  color: #666;
}

.projects-pg .item .text-box .data-item {
  padding: 13px 0;
  border-bottom: 1px solid #ddd;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

.projects-pg .item .text-box .data-item.last-child {
  border-bottom: 1px solid transparent;
  padding: 20px 0 0 0;
}

.projects-pg .item .text-box .data-item .icon {
  margin: 0 5px;
  font-size: 35px;
  color: #FF7513;
}

.projects-pg .item .text-box .data-item .text-content {
  margin: 2px 15px 0 15px;
}

.projects-pg .item .text-box .data-item .text-content .label {
  font-weight: 500;
  color: #FF7513;
  font-size: 13px;
  margin-bottom: 0rem;
}

.projects-pg .item .text-box .data-item .text-content .data {
  font-weight: bold;
  color: #2A231F;
  margin-bottom: 0;
  font-size: 13px;
}

.projects-pg .item .text-box .data-item .text-content .custom-list .li {
  font-size: 13px;
  margin: 5px 0;
  font-weight: bold;
  color: #2A231F;
}

/***************************** Start Edit keypersonnel Page *****************************/
.keypersonnel-pg {
  position: relative;
  padding: 0 0 70px 0;
}

.keypersonnel-pg .img-box {
  height: 600px;
  border-radius: 0 0 25% 0;
  position: relative;
}

.keypersonnel-pg .img-box .member_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 0 0 25% 0;
}

.keypersonnel-pg .img-box::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 60px;
  border-radius: 0 0 25% 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: rgba(255, 117, 19, 0.1);
}

.keypersonnel-pg .text-box {
  padding: .5vw 0;
}

.keypersonnel-pg .text-box .title {
  text-transform: capitalize;
  color: #1B2534;
  font-weight: 600;
}

.keypersonnel-pg .text-box .dept {
  color: #FF7513;
}

.keypersonnel-pg .sm-item {
  margin-bottom: 45px;
}

.keypersonnel-pg .sm-item .img-box {
  height: 230px;
}

.keypersonnel-pg .sm-item .img-box::before {
  right: -15px;
  top: 45px;
}

/***************************** Start Edit certificates Page *****************************/
.certificates-pg {
  position: relative;
  padding: 0 0 70px 0;
}

.certificates-pg .certificate_card {
  border: 1px solid #eee;
  border-radius: 15px;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.certificates-pg .certificate_card .img-box {
  height: 200px;
}

.certificates-pg .certificate_card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 15px 15px 0 0;
}

.certificates-pg .certificate_card .card-body .title {
  text-align: center;
  margin-bottom: 0;
  color: #001433;
  font-weight: bold;
  text-transform: capitalize;
}

.certificates-pg .certificate_card:hover {
  margin-top: -10px;
}

.certificates-pg .certificate_card:hover .title {
  color: #FF7513;
}

/***************************** Start Edit news Page *****************************/
.news-pg {
  padding: 0 0 70px 0;
  position: relative;
}

.news-pg .news_card {
  background-color: #fff;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
  margin-bottom: 35px;
}

.news-pg .news_card .img-box {
  height: 250px;
}

.news-pg .news_card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-pg .news_card .text-box .news-data {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #ccc;
}

.news-pg .news_card .text-box .news-data .date {
  color: #FF7513;
  margin: 0 7px;
  font-weight: 500;
  font-size: 12px;
}

.news-pg .news_card .text-box .news-data .name {
  color: #9299A1;
  margin: 0 7px;
  font-weight: 500;
  font-size: 12px;
}

.news-pg .news_card .text-box .content {
  margin-top: 15px;
}

.news-pg .news_card .text-box .content .title {
  margin-bottom: 15px;
  color: #001433;
}

.news-pg .news_card .text-box .content .p {
  line-height: 1.8rem;
  font-size: 13px;
  margin-bottom: 0;
}

.news-pg .news_card.hr-card {
  margin-bottom: 15px;
}

.news-pg .news_card.hr-card .img-box {
  height: 220px;
}

.news-pg .news_card.hr-card .card-body {
  padding: 1.25rem 0;
}

.news-pg .news_card:hover {
  -webkit-box-shadow: 0 5px 15px 0 #ddd;
          box-shadow: 0 5px 15px 0 #ddd;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.news-pg .news_card:hover .text-box .content .title {
  color: #FF7513;
}

.news_det_pg .inner-sec {
  padding: 0 0 50px 0;
}

.news_det_pg .inner-sec .news-det-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.news_det_pg .inner-sec .card-body {
  padding: 2vw;
}

.news_det_pg .inner-sec .text-box .news-data {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #ccc;
}

.news_det_pg .inner-sec .text-box .news-data .date {
  color: #FF7513;
  margin: 0 7px;
  font-weight: 500;
  font-size: 12px;
}

.news_det_pg .inner-sec .text-box .news-data .name {
  color: #9299A1;
  margin: 0 7px;
  font-weight: 500;
  font-size: 12px;
}

.news_det_pg .inner-sec .text-box .content {
  margin-top: 15px;
}

.news_det_pg .inner-sec .text-box .content .title {
  margin-bottom: 15px;
  color: #001433;
}

.news_det_pg .inner-sec .text-box .content .p {
  font-size: 15px;
  margin-bottom: 1rem;
  line-height: 2rem;
}
/*# sourceMappingURL=style.css.map */