:root {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  color: #000;
  font-family: 'Roboto', sans-serif;

  font-weight: 400;
}

ul li {
  margin-bottom: 1rem;
}

.btn,
a {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  text-decoration: none;
  width: max-content;
}

.btn:hover,
a:hover {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  outline: none;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e80566;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e80566;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 2.5rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

a {
  text-decoration: none;
  color: #000;
}

/* slider */

#myCarousel .carousel-item .caption {
  position: absolute;
  top: 50%;
  left: 10rem;
  width: max-content;
  background-attachment: fixed;
  transform: translatey(-50%);
  z-index: 9999;
}

.caption h4 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 2px 2px 2px #000;
}

.caption h3 {
  font-size: 6rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 2px #00111a;
}

#myCarousel p {
  color: #fff;
  text-shadow: 2px 2px 2px #000;
}

#myCarousel a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#myCarousel .carousel-item p {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#myCarousel .carousel-item a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#myCarousel .carousel-item .mask img {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  display: block;
  height: auto;
  max-width: 100%;
}

#myCarousel h3,
#myCarousel h4,
#myCarousel p,
#myCarousel .carousel-item .mask img {
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#myCarousel .carousel-item {
  height: 100%;
  min-height: 100vh;
}

#myCarousel {
  position: relative;
  z-index: 1;
  background-size: cover;
}

#myCarousel .carousel-item h4 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

#myCarousel .carousel-item h3 {
  -webkit-animation-name: slideInBottom;
  animation-name: slideInRight;
}

.carousel-control-next,
.carousel-control-prev {
  height: 50px;
  width: 50px;
  padding: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 30px;
  height: 30px;
}

.carousel-control-prev {
  left: 3%;
}

.carousel-control-next {
  right: 3%;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: opacity;
  transition-property: opacity
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  opacity: 1
}

.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-right.active {
  opacity: 0
}

.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item-prev.active,
.carousel-fade .carousel-item.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0)
}

@supports (transform-style:preserve-3d) {

  .carousel-fade .carousel-item-left.active,
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item-prev.active,
  .carousel-fade .carousel-item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item-prev.active,
.carousel-fade .carousel-item.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.bg1 {
  background: url(../images/slider01.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg4 {
  background: url(../images/slide4.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg2 {
  background: url(../images/slide2.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg3 {
  background: url(../images/slide3.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: auto;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
  background: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* #header.fixed-top {
  height: 76px;
} */

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 0 10px;
  margin-bottom: 0;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  transition: 0.3s;
  position: relative;
  width: max-content;
}

/* .navbar a i, .navbar a:focus i {
  font-size: 40px;
} */

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #e80566;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover>a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: #e80566;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #000;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover>a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

footer {
  background: #101f60;
  padding: 7rem 0;
  color: #fff;
  margin-top: 8rem;
}

footer ul li,
footer p {
  font-size: 1.4rem;
  color: #939dca;
}

.reach-footer ul li {
  display: flex;
}

.reach-footer ul li i {
  margin-right: 10px;
  font-size: 20px;
}

.reach-footer ul li a {
  color: #939dca;
}

.reach-footer ul li a:hover {
  color: #e80566;
}

footer ul li a {
  color: #939dca;
  transition: all 0.5s;
}

footer ul li {
  margin-bottom: 10px;

}

footer ul li i {
  color: #8290cb;
  font-size: 7px;
  vertical-align: middle;
  margin-right: 8px;
}

footer ul li a:hover {
  color: #e80566;
  padding-left: 6px;
  transition: all 0.5s;
}

footer h4 {
  font-weight: 600;
  font-size: 2.2rem;
}

.copyright {
  border-top: 1px solid #35406d;
  margin-top: 3rem;
}

.copyright a {
  font-weight: 600;
  color: #fff;
}

.copyright a:hover {
  color: #17a7ac;
}

.logo h4 {
  color: #000;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
}

.logo h1 {
  color: #e80566;
  font-size: 2.2rem;
  font-weight: 700;
}

.socialtop {
  border-left: 1px solid #ccc;
  margin-left: 1rem;
}

.socialtop ul li {
  margin-bottom: 0;
}

.socialtop ul li a {
  padding-left: 0.8rem;
}

.socialtop ul li a i {
  font-size: 2.3rem;
}

.space {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.about img {
  border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
  border: 2px solid #e80566;
}

.about h2 {
  font-size: 2.8rem;
  font-weight: 600;
}

.about h2 b {
  color: #1A2C79;
}

.btn-primary {
  font-size: 1.5rem;
  color: #ffffff;
  background-color: #e80566;
  border-color: #e80566;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(24, 28, 50, 0.07);
  box-shadow: 0 0.125rem 0.25rem rgba(24, 28, 50, 0.07);
  border-radius: 0.3rem;
  padding: 1rem 2rem;
}

.btn-primary:hover {
  background-color: #1A2C79;
  border-color: #1A2C79;
}

.h-about {
  padding-left: 6rem;
}

.industries-served {
  background: #f5f5f5;
  padding: 9rem 0;
}

.heading h3 {
  font-size: 3.5rem;
  font-weight: 700;
}

.heading h3 span {
  color: #e80566;
}

.box {
  background: #fff;
  border: 1px solid #ccc;
}

.box h4 {
  font-size: 1.7rem;
  font-weight: 600;
}

.services {
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.h-about h3 {
  color: #e80566;
  font-size: 2rem;
}

.h-about h3::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: #e80566;
  display: inline-block;
  margin-right: 1.8rem;
}

.services p {
  font-size: 1.4rem;
}

.services a {
  color: #e80566;
  font-weight: 500;
  font-size: 1.4rem;
}

.services a:hover {
  color: #1A2C79;
  margin-left: 0.7rem;
}

.topspace {
  margin-top: 4.5rem;
}

.ban-head {
  position: absolute;
  top: 50%;
  left: 5rem;
  color: #fff;
  z-index: 99;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.ban-head h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.ban-head ul li a {
  color: #fff;
}

.ban-head ul li {
  display: inline-block;
}

.ban-head ul li i {
  vertical-align: middle;
  font-size: 1.4rem;
}

.ban-head ul li a:hover {
  color: #e80566;
}

.servicesall a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.6);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.servicesall .icon2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e80566;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  color: #fff;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.servicesall a:hover::before {
  opacity: 1;
}

.servicesall a:hover .icon2 {
  opacity: 1;
}

address p {
  display: flex;
}

.contact h4 {
  font-weight: 600;
  font-size: 2rem;
  color: #e80566;
}

.contact i {
  font-size: 2.5rem;
  color: #333;
}

label {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  height: 4.5rem;
  font-size: 1.6rem;
}

textarea {
  height: auto !important;
}

.btn-success {
  font-size: 2rem;
  background: #e80566;
  border: 0;
}

.inquiry {
  border: 1px solid #ccc;
  border-radius: 1.5rem;
  padding: 3rem;
}

.title1 {
  font-size: 3rem;
  font-weight: 600;
  color: #0085ad;
  margin-top: 8rem;
}

.title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
  margin-top: 6rem;
}

.title2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
}

.regaddress {
  background: #3aa4b4;
  color: #fff;
  padding: 3rem;
  border-radius: 1rem;
}

.block {
  border: 1px solid #ccc;
  border-radius: 0;
  height: 100%;
}

.block h4 {
  font-size: 2rem;
  color: #000;
  font-weight: 600;
}

.fa-caret-right {
  color: #e80566;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.caption h3 span {
  display: block;
}

/* Responsive */
@media screen and (max-width:768px) {
  #myCarousel .carousel-item .caption {
    left: 3rem;
  }

  .socialmob li i {
    font-size: 2.2rem;
  }

  .navbar-mobile a {
    font-size: 16px;
  }

  .socialmob {
    margin-top: 2rem;
  }

  .caption h3 {
    font-size: 5rem;
  }

  .about h2 {
    font-size: 2.3rem;
  }

  .h-about h3 {
    font-size: 1.8rem;
  }

  .heading h3 {
    font-size: 2.8rem;
  }

  #myCarousel .carousel-item .caption {
    left: 2rem;
  }

  .ban-head h1 {
    font-size: 2.5rem;
  }

  .ban-head ul li a {
    font-size: 1.4rem;
  }

  .ban-head {
    display: none;
  }

  .space {
    margin-top: 6rem;
  }

  .topspace {
    margin-top: 1.5rem;
  }

  .title {
    margin-top: 3rem;
  }

  .inquiry {
    margin-top: 5rem;
  }
}

@media screen and (max-width:600px) {
  .caption h3 {
    font-size: 4rem;
  }

  .caption h4 {
    font-size: 2.3rem;
  }

  .h-about {
    padding-left: 1.5rem;

  }

  .about img {
    margin-bottom: 5rem;
  }

  .industries-served {
    padding: 6rem 0;
  }

  footer {
    padding: 5rem 0;
  }

  .services {
    margin-bottom: 5rem;
  }

  .btn-primary {
    font-size: 1.4rem;
  }

  .caption h3 span {
    display: inline-block;
  }

  .title {
    font-size: 1.8rem;
  }

  .title2 {
    font-size: 2rem;
  }
}

@media screen and (max-width:480px) {
  .logo h1 {
    font-size: 2rem;
  }

  .caption h3 {
    font-size: 3.5rem;
  }

  .caption h4 {
    font-size: 2.1rem;
  }

  .container {
    width: 95%;
  }

  footer h4 {
    font-size: 2rem;
  }

  .back-to-top {
    right: 5px;
    bottom: 5px;
    width: 35px;
    height: 35px;
  }

  .caption h3 span {
    display: block;
  }


}

@media screen and (max-width:320px) {
  .caption h3 span {
    display: block;
  }

  .caption h3 {
    font-size: 3rem;
  }

  .container {
    width: 95%;
  }
}