/*-- 1. FONTS --*/
@font-face {
  font-family: 'Khebrat Musamim 2018';
  src: url("../fonts/KhebratMusamim2018.woff2") format("woff2"), url("../fonts/KhebratMusamim2018.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/*-- 2. VARIABLES --*/
/*-- 3. MIXIN --*/
@-webkit-keyframes ellipseRotate {
  0% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155;
  }
  100% {
    stroke-dashoffset: 4;
    stroke-dasharray: 3;
  }
}
@keyframes ellipseRotate {
  0% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155;
  }
  100% {
    stroke-dashoffset: 4;
    stroke-dasharray: 3;
  }
}

@-webkit-keyframes playBtn {
  50% {
    -webkit-box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
            box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
            box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
  }
}

@keyframes playBtn {
  50% {
    -webkit-box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
            box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
            box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
  }
}

/*-- 4. MEDIA QUERIES --*/
/*-- 5. RESET --*/
html {
  scroll-behavior: smooth;
}

body {
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 30px;
  color: #333333;
  scroll-behavior: smooth;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  background-color: #ffffff;
  width: 100%;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #0f2b72;
  outline: 1px solid #0f2b72;
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

h1 {
  font-size: 50px;
  line-height: 70px;
}

h2 {
  font-size: 42px;
  line-height: 60px;
}

h3 {
  font-size: 36px;
  line-height: 50px;
}

h4 {
  font-size: 30px;
  line-height: 45px;
}

h5 {
  font-size: 24px;
  line-height: 40px;
}

h6 {
  font-size: 18px;
  line-height: 35px;
}

p {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  margin-bottom: 15px;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  border-style: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

svg {
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.is-relative {
  position: relative !important;
}

.is-hide {
  overflow: hidden !important;
}

video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

video:-webkit-full-page-media {
  width: 100%;
}

.inherit {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin-bottom: 0;
  font-weight: inherit;
  display: inherit;
}

.blur-box {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pl-0,
.px-0 {
  padding-left: 0;
}

.pr-0,
.px-0 {
  padding-right: 0;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #696969;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #696969;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #696969;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #696969;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #696969;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #696969;
}

.select2-container {
  width: 100% !important;
}

.select2-container .select2-dropdown {
  border: 0;
  border-radius: 0;
  background-color: #333333;
}

.select2-container .select2-dropdown .select2-results .select2-results__option {
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.7);
}

.select2-container .select2-selection--single {
  height: 100%;
  padding: 15px 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(220, 221, 232, 0.3);
  background-color: transparent;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  color: rgba(255, 255, 255, 0.5);
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 0px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #000000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #0f2b72;
  color: #ffffff;
}

.height-50 {
  width: 100%;
  height: 50px;
  background-color: transparent;
  clear: both;
}

.height-100 {
  width: 100%;
  height: 100px;
  background-color: transparent;
  clear: both;
}

/* Animation */
/* Button */
.main-wrapper header {
  background-color: #ffffff;
  border-bottom: 1px solid #dcdde8;
  position: relative;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper header.follow {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 0 !important;
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}

.main-wrapper header .theme-button a {
  color: #000000;
  background-color: transparent;
  border: 2px solid #3fc5b6;
  text-transform: uppercase;
  width: 220px;
  height: 60px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main-wrapper header .theme-button a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #0f2b72;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper header .theme-button a.color-white {
  color: #ffffff;
  width: 240px;
}

.main-wrapper header .theme-button a span {
  background-color: #3fc5b6;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 0;
}

.main-wrapper header .theme-button a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #dcb429;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper header .theme-button a span svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  margin: 0px auto;
}

.main-wrapper header .theme-button:hover a {
  border-color: #0f2b72;
  color: #ffffff;
}

.main-wrapper header .theme-button:hover a::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper header .theme-button:hover a span::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper header .theme-button:hover a span svg {
  fill: #ffffff;
}

@media (min-width: 992px) {
  .main-wrapper header {
    position: absolute;
  }
}

.main-wrapper .main-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.main-wrapper .main-slider .home-slider {
  width: 100%;
  height: 100%;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(63, 76, 107, 0)), to(rgba(28, 33, 48, 0.6)));
  background: linear-gradient(to bottom, rgba(63, 76, 107, 0) 0%, rgba(28, 33, 48, 0.6) 100%);
  z-index: -1;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 250px;
  z-index: 9999;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta h5 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
  -webkit-animation: 1s .1s lightSpeedInRight both;
          animation: 1s .1s lightSpeedInRight both;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta h3 {
  font-size: 45px;
  line-height: 55px;
  color: #ffffff;
  font-family: "Khebrat Musamim 2018";
  margin-bottom: 15px;
  -webkit-animation: 1.5s .2s lightSpeedInRight both;
          animation: 1.5s .2s lightSpeedInRight both;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta p {
  color: #ffffff;
  max-width: 500px;
  -webkit-animation: 2s .3s lightSpeedInRight both;
          animation: 2s .3s lightSpeedInRight both;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button {
  display: inline-block;
  -webkit-animation: 2.5s .3s lightSpeedInRight both;
          animation: 2.5s .3s lightSpeedInRight both;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button a {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #3fc5b6;
  text-transform: uppercase;
  width: 290px;
  height: 60px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button a.color-black {
  color: #000000;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #0f2b72;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button a span {
  background-color: #3fc5b6;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 0;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #dcb429;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button a span svg {
  fill: #ffffff;
  width: 19px;
  height: 17px;
  margin: 0px auto;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button:hover a {
  border-color: #0f2b72;
  color: #ffffff;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button:hover a::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button:hover a span::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button:hover a span svg {
  fill: #ffffff;
}

.main-wrapper .main-slider .home-slider .owl-item.active .slider-item .container .meta h5 {
  -webkit-animation: 1s .1s lightSpeedInLeft both;
          animation: 1s .1s lightSpeedInLeft both;
}

.main-wrapper .main-slider .home-slider .owl-item.active .slider-item .container .meta h3 {
  -webkit-animation: 1.5s .2s lightSpeedInLeft both;
          animation: 1.5s .2s lightSpeedInLeft both;
}

.main-wrapper .main-slider .home-slider .owl-item.active .slider-item .container .meta p {
  -webkit-animation: 2s .3s lightSpeedInLeft both;
          animation: 2s .3s lightSpeedInLeft both;
}

.main-wrapper .main-slider .home-slider .owl-item.active .slider-item .container .meta .theme-button {
  -webkit-animation: 2.5s .4s lightSpeedInLeft both;
          animation: 2.5s .4s lightSpeedInLeft both;
}

.main-wrapper .main-slider .home-slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'] {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background: rgba(63, 197, 182, 0.5);
  position: absolute;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}

.main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'].owl-prev {
  left: 100px;
}

@media (max-width: 1650px) {
  .main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'].owl-prev {
    left: auto;
    right: 170px;
  }
}

.main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'].owl-next {
  right: 100px;
}

.main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'] img {
  width: 16px;
  opacity: .6;
}

.main-wrapper .main-slider .home-slider .owl-nav [class*='owl-']:hover {
  background: #3fc5b6;
  opacity: 1;
}

.main-wrapper .main-slider .home-slider .owl-nav [class*='owl-']:hover img {
  opacity: 1;
}

.main-wrapper .main-slider .control-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 99;
}

.main-wrapper .main-slider .control-dots .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-wrapper .main-slider .control-dots .owl-dots [class*='owl-'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.main-wrapper .main-slider .control-dots .owl-dots [class*='owl-'] button {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: rgba(238, 247, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  padding: 30px 0px 30px;
  margin-right: 30px;
  position: relative;
  text-align: left;
}

.main-wrapper .main-slider .control-dots .owl-dots [class*='owl-'] button::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .main-slider .control-dots .owl-dots [class*='owl-'].active button, .main-wrapper .main-slider .control-dots .owl-dots [class*='owl-']:hover button {
  color: #ffffff;
}

.main-wrapper .main-slider .control-dots .owl-dots [class*='owl-'].active button::before, .main-wrapper .main-slider .control-dots .owl-dots [class*='owl-']:hover button::before {
  width: 100%;
}

.main-wrapper .mainContent {
  padding: 120px 15px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1399px) {
  .main-wrapper .mainContent {
    padding: 80px 0;
  }
}

.main-wrapper .mainContent .main-title h6 {
  font-size: 18px;
  color: #3fc5b6;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: normal;
}

.main-wrapper .mainContent .main-title h4 {
  font-size: 35px;
  color: #0f2b72;
  line-height: 45px;
  font-family: "Khebrat Musamim 2018";
  padding-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
}

.main-wrapper .mainContent .main-title h4::before, .main-wrapper .mainContent .main-title h4::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
}

.main-wrapper .mainContent .main-title h4::before {
  width: 300px;
  height: 2px;
  background-color: #dcdde8;
  bottom: 0;
}

.main-wrapper .mainContent .main-title h4::after {
  width: 50px;
  height: 5px;
  background-color: #3fc5b6;
  bottom: -1px;
}

.main-wrapper .mainContent .main-title p {
  font-size: 15px;
  line-height: 30px;
  max-width: 620px;
  margin: 0 auto;
}

.main-wrapper .mainContent.home-business {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-wrapper .mainContent.home-business .background-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-stage-outer {
  padding-bottom: 80px;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .image-box {
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .image-box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(63, 76, 107, 0)), to(rgba(28, 33, 48, 0.8)));
  background: linear-gradient(to bottom, rgba(63, 76, 107, 0) 0%, rgba(28, 33, 48, 0.8) 100%);
  z-index: 1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .image-box .title-block {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 30px;
  text-align: center;
  z-index: 9;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .image-box .title-block h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: inherit;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .image-box .hover-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 43, 114, 0.9);
  z-index: 9;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .image-box .hover-box p {
  color: #ffffff;
  text-align: center;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .title-box {
  background-color: #ffffff;
  padding: 30px;
  padding-top: 50px;
  text-align: center;
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  z-index: 999;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .title-box h4 {
  color: #0f2b72;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: inherit;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .title-box .more-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  width: 75px;
  height: 60px;
  background-color: #3fc5b6;
  border: 5px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  margin: auto;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .title-box .more-btn span {
  margin: auto;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .title-box .more-btn span svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item:hover .image-box .title-block {
  opacity: 0;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item:hover .image-box .hover-box {
  opacity: 1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item:hover .title-box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item.center .slider-item .image-box .title-block {
  opacity: 0;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item.center .slider-item .image-box .hover-box {
  opacity: 1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-item.center .slider-item .title-box {
  -webkit-box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.05);
          box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%);
}

.main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-'] {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background: rgba(63, 197, 182, 0.8);
  position: absolute;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}

.main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-'].owl-prev {
  left: -100px;
}

.main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-'].owl-next {
  right: -100px;
}

.main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-'] img {
  width: 16px;
  opacity: .8;
}

.main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-']:hover {
  background: #3fc5b6;
  opacity: 1;
}

.main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-']:hover img {
  opacity: 1;
}

.main-wrapper .mainContent.home-business .theme-button {
  display: inline-block;
}

.main-wrapper .mainContent.home-business .theme-button a {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #3fc5b6;
  text-transform: uppercase;
  width: 290px;
  height: 60px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main-wrapper .mainContent.home-business .theme-button a.color-black {
  color: #000000;
}

.main-wrapper .mainContent.home-business .theme-button a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #0f2b72;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.home-business .theme-button a span {
  background-color: #3fc5b6;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 0;
}

.main-wrapper .mainContent.home-business .theme-button a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #dcb429;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.home-business .theme-button a span svg {
  fill: #ffffff;
  width: 19px;
  height: 17px;
  margin: 0px auto;
}

.main-wrapper .mainContent.home-business .theme-button:hover a {
  border-color: #0f2b72;
  color: #ffffff;
}

.main-wrapper .mainContent.home-business .theme-button:hover a::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.home-business .theme-button:hover a span::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.home-business .theme-button:hover a span svg {
  fill: #ffffff;
}

.main-wrapper .mainContent.home-about {
  padding: 0;
  padding-bottom: 130px;
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.home-about .background-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  z-index: -1;
}

.main-wrapper .mainContent.home-about .left-side {
  overflow: visible;
  padding-left: 65px;
  position: relative;
}

.main-wrapper .mainContent.home-about .left-side .img-full {
  max-width: none;
  width: auto !important;
  float: right;
}

.main-wrapper .mainContent.home-about .left-side .download-box {
  position: absolute;
  right: -120px;
  bottom: -75px;
  background-color: #3fc5b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: auto;
}

.main-wrapper .mainContent.home-about .left-side .download-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-wrapper .mainContent.home-about .left-side .download-box .icon-box {
  background-color: #0f2b72;
  width: 157px;
  height: 157px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-wrapper .mainContent.home-about .left-side .download-box .icon-box img {
  margin: auto;
  max-width: 57px;
}

.main-wrapper .mainContent.home-about .left-side .download-box .text-block {
  width: 280px;
  height: 157px;
  background-color: #3fc5b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px;
}

.main-wrapper .mainContent.home-about .left-side .download-box .text-block h5 {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

.main-wrapper .mainContent.home-about .right-side .inner {
  padding: 80px;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title h4 {
  max-width: 450px;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title h4::before, .main-wrapper .mainContent.home-about .right-side .inner .main-title h4::after {
  margin: 0;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title p {
  width: 100%;
  margin: 0;
  margin-bottom: 15px;
  font-size: 14px;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button {
  display: inline-block;
  margin-top: 15px;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button a {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #3fc5b6;
  text-transform: uppercase;
  width: 290px;
  height: 60px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button a.color-black {
  color: #000000;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #0f2b72;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button a span {
  background-color: #3fc5b6;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 0;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #dcb429;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button a span svg {
  fill: #ffffff;
  width: 19px;
  height: 17px;
  margin: 0px auto;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button:hover a {
  border-color: #0f2b72;
  color: #ffffff;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button:hover a::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button:hover a span::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.home-about .right-side .inner .main-title .theme-button:hover a span svg {
  fill: #ffffff;
}

.main-wrapper .mainContent.home-about .counter-box {
  margin-top: 150px;
  background-color: #eef7ff;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-wrapper .mainContent.home-about .counter-box .count-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

.main-wrapper .mainContent.home-about .counter-box .count-item.border-line {
  border-right: 1px solid #dcdde8;
}

.main-wrapper .mainContent.home-about .counter-box .count-item .icon-box {
  margin-bottom: 15px;
}

.main-wrapper .mainContent.home-about .counter-box .count-item .icon-box img {
  width: 60px;
  height: 60px;
}

.main-wrapper .mainContent.home-about .counter-box .count-item .text-block h4 {
  color: #0f2b72;
  font-weight: 700;
  font-size: 35px;
  position: relative;
  display: inline-block;
}

.main-wrapper .mainContent.home-about .counter-box .count-item .text-block h4::before {
  position: absolute;
  content: '+';
  right: -25px;
  top: -10px;
  font-size: 25px;
  color: #3fc5b6;
  font-weight: 400;
}

.main-wrapper .mainContent.home-about .counter-box .count-item .text-block h4 sup {
  color: #3fc5b6;
  margin-left: 5px;
}

.main-wrapper .mainContent.home-about .counter-box .count-item .text-block p {
  font-weight: 600;
  color: #0f2b72;
  margin-bottom: 0;
}

.main-wrapper .mainContent.home-keypoints {
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .main-title h4 {
  max-width: 450px;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .main-title h4::before, .main-wrapper .mainContent.home-keypoints .left-side .inner .main-title h4::after {
  margin: 0;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .main-title p {
  width: 100%;
  margin: 0;
  margin-bottom: 15px;
  font-size: 14px;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item {
  border-radius: 0;
  border: none;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-header .accordion-button {
  padding: 30px 0;
  color: #0f2b72;
  font-weight: 600;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-bottom: 1px solid #dcdde8;
  line-height: normal;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-header .accordion-button::before {
  position: absolute;
  content: "+";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  color: #3fc5b6;
  font-size: 30px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 30px 0;
  border-bottom: 1px solid #dcdde8;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-collapse .accordion-body p:last-child {
  margin-bottom: 0;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-collapse .accordion-body ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-collapse .accordion-body ul li {
  position: relative;
  padding-bottom: 15px;
}

.main-wrapper .mainContent.home-keypoints .left-side .inner .accordion .accordion-item .accordion-collapse .accordion-body ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #0f2b72;
}

.main-wrapper .mainContent.home-keypoints .right-side .img-box {
  overflow: visible;
  padding-left: 60px;
}

.main-wrapper .mainContent.home-keypoints .right-side .img-box .img-full {
  max-width: none;
  width: auto !important;
}

.main-wrapper .mainContent.home-request {
  margin-top: 100px;
  padding: 0;
  position: relative;
  z-index: 9;
}

.main-wrapper .mainContent.home-request::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background-color: #eef7ff;
}

.main-wrapper .mainContent.home-request .inner-box {
  background-image: url(../images/request.jpg);
  background-repeat: no-repeat;
  padding: 120px 100px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.main-wrapper .mainContent.home-request .inner-box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 71, 154, 0.8);
  z-index: -1;
}

.main-wrapper .mainContent.home-request .inner-box h4 {
  font-size: 35px;
  color: #ffffff;
  font-family: "Khebrat Musamim 2018";
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.main-wrapper .mainContent.home-request .inner-box h4 span {
  display: block;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button {
  display: inline-block;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button a {
  color: #000000;
  background-color: transparent;
  border: 2px solid #3fc5b6;
  text-transform: uppercase;
  width: 220px;
  height: 60px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #0f2b72;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button a.color-white {
  color: #ffffff;
  width: 240px;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button a span {
  background-color: #3fc5b6;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 0;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #dcb429;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button a span svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  margin: 0px auto;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button:hover a {
  border-color: #0f2b72;
  color: #ffffff;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button:hover a::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button:hover a span::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.home-request .inner-box .theme-button:hover a span svg {
  fill: #ffffff;
}

.main-wrapper .mainContent.footer {
  padding-bottom: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-wrapper .mainContent.footer .background-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.main-wrapper .mainContent.footer .left-side .footer-logo img {
  max-width: 230px;
}

.main-wrapper .mainContent.footer .right-side ul {
  display: block;
  text-align: right;
}

.main-wrapper .mainContent.footer .right-side ul li {
  display: inline-block;
  padding: 0px 15px;
}

.main-wrapper .mainContent.footer .right-side ul li:last-child {
  padding-right: 0;
}

.main-wrapper .mainContent.footer .right-side ul li a {
  text-transform: uppercase;
  font-weight: 600;
}

.main-wrapper .mainContent.footer .right-side ul li.active a, .main-wrapper .mainContent.footer .right-side ul li:hover a {
  color: #3fc5b6;
}

.main-wrapper .mainContent.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #dcdde8;
  border-bottom: 1px solid #dcdde8;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .pad-100 {
  padding-right: 80px;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .pad-100-l {
  padding-left: 80px;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: normal;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner .quick-links {
  -webkit-column-count: 3;
          column-count: 3;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.inline-list {
  float: left;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.inline-list li a {
  color: #333333;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.inline-list li:hover a {
  color: #3fc5b6;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.contact-list li {
  position: relative;
  padding-left: 30px;
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.contact-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #3fc5b6;
  font-family: 'FontAwesome';
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.contact-list li:nth-child(1)::before {
  content: '\f095';
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.contact-list li:nth-child(2)::before {
  content: '@';
}

.main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.contact-list li:nth-child(3)::before {
  content: '\f041';
}

.main-wrapper .mainContent.footer .footer-bottom {
  padding: 50px 0;
}

.main-wrapper .mainContent.footer .footer-bottom p {
  margin: 0;
}

.main-wrapper .mainContent.footer .footer-bottom ul {
  display: block;
  text-align: right;
}

.main-wrapper .mainContent.footer .footer-bottom ul li {
  display: inline-block;
  padding: 0 30px;
}

.main-wrapper .mainContent.footer .footer-bottom ul li:last-child {
  padding-right: 0;
  border-left: 1px solid #dcdde8;
}

.main-wrapper .mainContent.breadcrumb-area {
  position: relative;
  z-index: 1;
  padding-top: 300px;
  padding-bottom: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-wrapper .mainContent.breadcrumb-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.main-wrapper .mainContent.breadcrumb-area .page-title {
  text-align: center;
}

.main-wrapper .mainContent.breadcrumb-area .page-title h2 {
  color: #ffffff;
  font-family: "Khebrat Musamim 2018";
}

.main-wrapper .mainContent.breadcrumb-area .page-title .breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

.main-wrapper .mainContent.breadcrumb-area .page-title .breadcrumb li {
  color: #3fc5b6;
}

.main-wrapper .mainContent.breadcrumb-area .page-title .breadcrumb li a {
  color: #ffffff;
}

.main-wrapper .mainContent.about-page .row {
  scroll-margin-top: 230px;
}

.main-wrapper .mainContent.about-page .inner-image {
  padding-right: 50px;
}

.main-wrapper .mainContent.about-page .inner-image img {
  border-radius: 20px;
}

.main-wrapper .mainContent.about-page .about-section-one {
  padding-top: 50px;
}

.main-wrapper .mainContent.about-page .about-section-one .main-title h4 {
  max-width: 450px;
}

.main-wrapper .mainContent.about-page .about-section-one .main-title h4::before, .main-wrapper .mainContent.about-page .about-section-one .main-title h4::after {
  margin: 0;
}

.main-wrapper .mainContent.about-page .about-section-one p.first-p {
  font-weight: 600;
  color: #000000;
  position: relative;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.about-page .about-section-two {
  background-color: #eef7ff;
  padding: 50px;
}

.main-wrapper .mainContent.about-page .about-section-two p.first-p {
  font-weight: 600;
  color: #000000;
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.about-page .about-section-two p.first-p::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0px;
  width: 2px;
  background-color: #000000;
}

.main-wrapper .mainContent.about-page .about-section-two ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.about-page .about-section-two ul li {
  position: relative;
  padding-bottom: 15px;
}

.main-wrapper .mainContent.about-page .about-section-two ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #0f2b72;
}

.main-wrapper .mainContent.about-page .about-section-three {
  padding: 50px;
  background-color: #0f2b72;
}

.main-wrapper .mainContent.about-page .about-section-three .heading-one h3 {
  color: #ffffff;
}

.main-wrapper .mainContent.about-page .about-section-three .heading-one h3 span {
  color: #ffffff;
}

.main-wrapper .mainContent.about-page .about-section-three .heading-one p {
  color: #ffffff;
}

.main-wrapper .mainContent.about-page-two {
  background-color: #eef7ff;
  padding: 100px 0;
  position: relative;
}

.main-wrapper .mainContent.about-page-two .vision-side .inner-content {
  background-color: #ffffff;
  padding: 50px;
}

.main-wrapper .mainContent.about-page-two .vision-side .inner-content h4 {
  font-size: 20px;
  color: #0f2b72;
  margin-bottom: 15px;
  font-weight: 600;
}

.main-wrapper .mainContent.about-page-two .vision-side .inner-content ul {
  padding-left: 30px;
}

.main-wrapper .mainContent.about-page-two .vision-side .inner-content ul li {
  position: relative;
  padding-bottom: 15px;
}

.main-wrapper .mainContent.about-page-two .vision-side .inner-content ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #0f2b72;
}

.main-wrapper .mainContent.about-page-two .mission-side .inner-content {
  background-color: #0f2b72;
  padding: 50px;
}

.main-wrapper .mainContent.about-page-two .mission-side .inner-content h4 {
  font-size: 20px;
  color: #3fc5b6;
  margin-bottom: 15px;
  font-weight: 600;
}

.main-wrapper .mainContent.about-page-two .mission-side .inner-content p {
  color: #ffffff;
}

.main-wrapper .mainContent.business-inner {
  padding-bottom: 80px;
  position: relative;
}

.main-wrapper .mainContent.business-inner .main-title h4 {
  max-width: 450px;
}

.main-wrapper .mainContent.business-inner .main-title h4::before, .main-wrapper .mainContent.business-inner .main-title h4::after {
  margin: 0;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .image-box {
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .image-box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(63, 76, 107, 0)), to(rgba(28, 33, 48, 0.8)));
  background: linear-gradient(to bottom, rgba(63, 76, 107, 0) 0%, rgba(28, 33, 48, 0.8) 100%);
  z-index: 1;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .image-box .title-block {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 30px;
  text-align: center;
  z-index: 9;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .image-box .title-block h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: inherit;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .image-box .hover-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 43, 114, 0.9);
  z-index: 9;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .image-box .hover-box p {
  color: #ffffff;
  text-align: center;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .title-box {
  padding: 30px;
  text-align: center;
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  z-index: 999;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .title-box h4 {
  color: #0f2b72;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: inherit;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .title-box .more-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  width: 75px;
  height: 60px;
  background-color: #3fc5b6;
  border: 5px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  margin: auto;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .title-box .more-btn span {
  margin: auto;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item .title-box .more-btn span svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item:hover .image-box .title-block {
  opacity: 0;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item:hover .image-box .hover-box {
  opacity: 1;
}

.main-wrapper .mainContent.business-inner .box-items .slider-item:hover .title-box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.main-wrapper .mainContent.business-inner .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.main-wrapper .mainContent.business-inner .row .inner-content.pad-right {
  padding-left: 50px;
}

.main-wrapper .mainContent.business-inner .row .inner-content h5 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.business-inner .row .inner-content h3 {
  font-size: 45px;
  color: #000000;
  font-family: "Khebrat Musamim 2018";
  line-height: 55px;
  margin-bottom: 15px;
  width: 100%;
}

.main-wrapper .mainContent.business-inner .row .inner-content p {
  color: #000000;
  margin-bottom: 15px;
}

.main-wrapper .mainContent.business-inner .row .inner-content .image-box {
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block {
  margin-top: 30px;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block h4 {
  font-size: 35px;
  color: #0f2b72;
  line-height: 45px;
  font-family: "Khebrat Musamim 2018";
  padding-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block h4::before, .main-wrapper .mainContent.business-inner .row .inner-content .text-block h4::after {
  position: absolute;
  content: "";
  left: 0;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block h4::before {
  width: 200px;
  height: 2px;
  background-color: #dcdde8;
  bottom: 0;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block h4::after {
  width: 50px;
  height: 5px;
  background-color: #3fc5b6;
  bottom: -1px;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .first-dc {
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block ul {
  padding-left: 30px;
  -webkit-column-count: 2;
          column-count: 2;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block ul li {
  position: relative;
  padding-bottom: 15px;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block ul li::before {
  font-family: 'FontAwesome';
  content: '\f2da';
  left: 0;
  margin: 0 15px 0 -30px;
  color: #0f2b72;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item {
  border-radius: 0;
  border: none;
  background-color: transparent;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-header .accordion-button {
  padding: 20px 0;
  color: #0f2b72;
  font-weight: 500;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-bottom: 1px solid #dcdde8;
  background-color: transparent;
  line-height: normal;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-header .accordion-button::before {
  position: absolute;
  content: "+";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  color: #3fc5b6;
  font-size: 30px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 30px 0;
  border-bottom: 1px solid #dcdde8;
}

.main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-collapse .accordion-body p:last-child {
  margin-bottom: 0;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget {
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
  background-color: #eef7ff;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget h4 {
  padding-top: 20px;
  line-height: 57px;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 15px;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul {
  display: block;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul li {
  display: block;
  position: relative;
  margin-bottom: 16px;
  width: 100%;
  height: 50px;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside {
  display: block;
  padding: 6px 27px 6px 23px;
  background: 0 0;
  border: 1px solid #e3e3e3;
  border-radius: 0px;
  margin-bottom: 30px;
  position: relative;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside::before {
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  visibility: hidden;
  position: absolute;
  background: #3fc5b6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside a {
  color: #000000;
  font-size: 16px;
  line-height: 38px;
  font-weight: 500;
  position: relative;
  width: 100%;
  display: block;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside a::after {
  content: '\f0da';
  top: 50%;
  line-height: normal;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  font-size: 16px;
  position: absolute;
  font-family: fontawesome;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside:hover::before, .main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside.active::before {
  opacity: 1;
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -ms-filter: "alpha(opacity=1)";
  visibility: visible;
  width: 100%;
}

.main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside:hover a, .main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside.active a {
  color: #ffffff;
}

.main-wrapper .mainContent.contact-inner .left-side {
  padding-right: 50px;
}

.main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title h4 {
  max-width: 450px;
}

.main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title h4::before, .main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title h4::after {
  margin: 0;
}

.main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title ul.contact-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}

.main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title ul.contact-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #3fc5b6;
  font-family: 'FontAwesome';
}

.main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title ul.contact-list li:nth-child(1)::before {
  content: '\f095';
}

.main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title ul.contact-list li:nth-child(2)::before {
  content: '@';
}

.main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title ul.contact-list li:nth-child(3)::before {
  content: '\f041';
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .contact-title {
  font-size: 20px;
  color: #3fc5b6;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .two-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .two-input .field-gr {
  width: calc(50% - 14px);
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .two-input input {
  background: 0 0;
  border: 0;
  border: 1px solid #dcdde8;
  outline: none !important;
  color: #333333;
  padding: 10px 15px;
  font-size: 17px;
  width: 100%;
  height: 50px;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .two-input input:focus {
  border-color: #3fc5b6;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-textarea {
  margin-bottom: 50px;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-textarea textarea {
  font-size: 17px;
  width: 100%;
  height: 125px;
  color: #333333;
  border: 0;
  border: 1px solid #dcdde8;
  outline: none !important;
  background: 0 0;
  padding: 10px 15px;
  display: block;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-textarea textarea:focus {
  border-color: #3fc5b6;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button a {
  color: #000000;
  background-color: transparent;
  border: 2px solid #3fc5b6;
  text-transform: uppercase;
  width: 220px;
  height: 60px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #0f2b72;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button a.color-white {
  color: #ffffff;
  width: 240px;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button a span {
  background-color: #3fc5b6;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 0;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #dcb429;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button a span svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  margin: 0px auto;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button:hover a {
  border-color: #0f2b72;
  color: #ffffff;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button:hover a::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button:hover a span::before {
  width: 100%;
  opacity: 1;
}

.main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button:hover a span svg {
  fill: #ffffff;
}

.main-wrapper .mainContent.contact-inner .google-map iframe {
  width: 100%;
  height: 550px;
  border: 10px solid #f9f9f9;
}

.form-popup {
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: .5s;
  transition: .5s;
}

.form-popup .form-wrapper {
  top: 2em;
  max-width: 700px;
  background: #ffffff;
  padding: 50px;
  padding-top: 50px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.form-popup .form-wrapper .form-title {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Khebrat Musamim 2018";
  font-size: 35px;
  color: #000000;
  text-align: left;
  line-height: inherit;
}

.form-popup .form-wrapper .close-form {
  border-radius: 0px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  cursor: pointer;
  padding: 10px 15px;
  background-color: #0f2b72;
  border: 2px solid #0f2b72;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

.form-popup .form-wrapper .form-group {
  margin-bottom: 15px;
}

.form-popup .form-wrapper .form-group input {
  height: 50px;
}

.form-popup .form-wrapper .form-group textarea {
  height: 120px;
}

.form-popup .form-wrapper .form-group .form-control {
  border-radius: 0;
  border: 1px solid #dcdde8;
}

.form-popup .form-wrapper .theme-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.form-popup .form-wrapper .theme-button a {
  color: #000000;
  background-color: transparent;
  border: 2px solid #3fc5b6;
  text-transform: uppercase;
  width: 220px;
  height: 60px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.form-popup .form-wrapper .theme-button a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #0f2b72;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.form-popup .form-wrapper .theme-button a.color-white {
  color: #ffffff;
  width: 240px;
}

.form-popup .form-wrapper .theme-button a span {
  background-color: #3fc5b6;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 0;
}

.form-popup .form-wrapper .theme-button a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  opacity: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #dcb429;
  z-index: -1;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.form-popup .form-wrapper .theme-button a span svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  margin: 0px auto;
}

.form-popup .form-wrapper .theme-button:hover a {
  border-color: #0f2b72;
  color: #ffffff;
}

.form-popup .form-wrapper .theme-button:hover a::before {
  width: 100%;
  opacity: 1;
}

.form-popup .form-wrapper .theme-button:hover a span::before {
  width: 100%;
  opacity: 1;
}

.form-popup .form-wrapper .theme-button:hover a span svg {
  fill: #ffffff;
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #0f2b72;
  -webkit-box-shadow: 0px 0px 0px 5px #0f2b72;
          box-shadow: 0px 0px 0px 5px #0f2b72;
}

.progress-wrap::after {
  position: absolute;
  content: '';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #ffffff;
  left: 0;
  top: 0px;
  background-image: url("../images/back-to-top.svg");
  background-repeat: no-repeat;
  background-position: center center;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--grey);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.theme-button button{
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    border: none;
    padding: 0;
}
.theme-button:hover button, .theme-button:focus button, .theme-button:active button{
    color: #ffffff;
}
.contact-form input.error, .contact-form textarea.error, #my-formpopup input.error, #my-formpopup textarea.error{
    border-bottom: 2px solid red !important;
}
.contact-form label.error, #my-formpopup label.error{
    display: none !important;
}

/*------ Responsive --------*/
@media (max-width: 1399px) {
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container {
    bottom: 300px;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta h5 {
    font-size: 15px;
    line-height: 22px;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
    width: 80%;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta .theme-button a {
    font-size: 13px;
    width: 260px;
    padding-left: 15px;
    height: 50px;
  }
  .main-wrapper .main-slider .home-slider .owl-nav {
    top: 45%;
  }
  .main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'].owl-prev {
    left: auto;
    right: 100px;
    top: 60px;
  }
  .main-wrapper .main-slider .control-dots {
    bottom: 30px;
  }
  .main-wrapper .main-slider .control-dots .owl-dots [class*='owl-'] button {
    padding: 15px 0 15px;
    font-size: 13px;
    line-height: 26px;
    margin-right: 10px;
  }
  .main-wrapper .mainContent .main-title h6 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .main-wrapper .mainContent .main-title h4 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 1279px) {
  .main-wrapper .mainContent.business-inner .row .sidebar .widget ul li .block-inside a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1199px) {
  .main-wrapper header .enquire-button {
    border: none;
    padding: 14px 15px !important;
    background-color: transparent;
    color: #dcb429;
    display: block;
  }
}

@media (max-width: 1024px) {
  .main-wrapper .main-slider {
    height: 75vh;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item {
    height: 75vh;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container {
    bottom: 45%;
  }
  .main-wrapper .main-slider .home-slider .owl-item.active .slider-item .container .meta {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
  .main-wrapper .main-slider .home-slider .owl-item.active .slider-item .container .meta h3 {
    width: 100%;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta p {
    max-width: 80%;
    margin: auto;
    margin-bottom: 15px;
  }
  .main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'].owl-prev {
    left: 30px;
    right: auto;
    top: auto;
  }
  .main-wrapper .main-slider .home-slider .owl-nav [class*='owl-'].owl-next {
    right: 30px;
  }
  .main-wrapper .main-slider .control-dots .owl-dots [class*='owl-'] {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    margin-right: 15px;
    opacity: .9;
  }
  .main-wrapper .main-slider .control-dots .owl-dots button.owl-dot.active {
    opacity: 1;
  }
  .main-wrapper .mainContent.home-about {
    padding-bottom: 80px;
  }
  .main-wrapper .mainContent.home-about .background-bg {
    display: none;
  }
  .main-wrapper .mainContent.home-about .left-side {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main-wrapper .mainContent.home-about .left-side .img-full {
    width: 100%;
    max-width: 100%;
    float: inherit;
  }
  .main-wrapper .mainContent.home-about .left-side .download-box {
    right: 15px;
    bottom: 0;
  }
  .main-wrapper .mainContent.home-about .right-side .inner {
    padding: 50px 0;
  }
  .main-wrapper .mainContent.home-about .counter-box {
    margin-top: 0;
    padding: 30px 15px;
  }
  .main-wrapper .mainContent.home-about .counter-box .count-item .text-block p {
    font-size: 13px;
  }
  .main-wrapper .mainContent.home-keypoints .right-side .img-box {
    padding-left: 0;
    padding-right: 0;
    margin-top: 50px;
  }
  .main-wrapper .mainContent.home-keypoints .right-side .img-box .img-full {
    width: 100%;
    max-width: 100%;
    float: inherit;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .pad-100 {
    padding-right: 10px;
  }
  li.theme-button {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .main-wrapper .mainContent.business-inner .row .inner-content.pad-right {
    padding-left: 0;
    margin-bottom: 50px;
  }
  .main-wrapper .mainContent.footer .left-side .footer-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  .main-wrapper .mainContent.footer .right-side ul {
    text-align: center;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-about {
    text-align: center;
    margin-bottom: 50px;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .pad-100 {
    padding-right: 30px;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner .quick-links {
    -webkit-column-count: 2;
            column-count: 2;
  }
  .main-wrapper .main-slider .home-slider .owl-item.active .slider-item .container .meta {
    width: 100%;
  }
  .main-wrapper .mainContent.about-page .inner-image {
    padding-right: 0px;
  }
}

@media (max-width: 766px) {
  .siteMenu-header .logo {
    padding: 15px 15px;
    text-align: left;
  }
  .main-wrapper .main-slider {
    height: 100vh;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item {
    height: 100vh;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container {
    bottom: 40%;
  }
  .main-wrapper .mainContent.home-about .left-side .download-box .icon-box {
    width: 100px;
    height: 100px;
  }
  .main-wrapper .mainContent.home-about .left-side .download-box .icon-box img {
    max-width: 30px;
  }
  .main-wrapper .mainContent.home-about .left-side .download-box .text-block {
    height: 100px;
    width: 230px;
    padding: 0 30px;
  }
  .main-wrapper .mainContent.home-about .counter-box {
    display: block;
  }
  .main-wrapper .mainContent.home-about .counter-box .count-item.border-line {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #dcdde8;
  }
  .main-wrapper .mainContent.home-request .inner-box {
    padding: 50px;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-about {
    margin-bottom: 30px;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .pad-100-l {
    padding-left: 0px;
    margin-top: 30px;
  }
  .main-wrapper .mainContent.about-page .inner-image {
    padding-right: 0;
  }
  .main-wrapper .mainContent {
    padding: 50px 0;
  }
  .main-wrapper .mainContent.about-page-two {
    padding: 50px 0;
  }
  .main-wrapper .mainContent.home-request {
    margin-top: 50px;
  }
  .main-wrapper .mainContent .main-title p {
    text-align: justify;
    text-align-last: center;
  }
  .main-wrapper .mainContent.home-about .right-side .inner {
    text-align: center;
  }
  .main-wrapper .mainContent.home-about .right-side .inner .main-title h4::before,
  .main-wrapper .mainContent.home-about .right-side .inner .main-title h4::after {
    margin: 0 auto;
  }
  .main-wrapper .mainContent.home-about .right-side .inner {
    padding-bottom: 0;
  }
  .main-wrapper .mainContent .main-title {
    text-align: center;
  }
  .main-wrapper .mainContent.home-keypoints .left-side .inner .main-title h4::before,
  .main-wrapper .mainContent.home-keypoints .left-side .inner .main-title h4::after {
    margin: 0 auto;
  }
  .main-wrapper .mainContent.home-about {
    padding-bottom: 50px;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner .quick-links {
    background: #e0f1ff;
    padding: 30px;
  }
  .main-wrapper .mainContent.business-inner .main-title h4 {
    max-width: 100%;
  }
  .main-wrapper .mainContent.business-inner .main-title h4::before, .main-wrapper .mainContent.business-inner .main-title h4::after {
    margin: 0 auto;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content p {
    text-align: center;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block h4, .main-wrapper .mainContent.business-inner .row .sidebar .widget h4 {
    text-align: center;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block h4::before,
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block h4::after {
    right: 0;
    margin: 0 auto;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block h4::after {
    margin: 0 auto;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block ul {
    -webkit-column-count: 1;
            column-count: 1;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block ul li {
    text-align: center;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-collapse .accordion-body p,
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-collapse .accordion-body ul li {
    text-align: left;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-header .accordion-button {
    padding: 20px 20px 20px 0;
  }
  .main-wrapper .mainContent.contact-inner .left-side {
    padding-right: 15px;
  }
  .main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title h4 {
    max-width: 100%;
  }
  .main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title h4::before, .main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title h4::after {
    margin: 0 auto;
  }
  .main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title ul.contact-list li {
    padding-left: 0;
  }
  .main-wrapper .mainContent.contact-inner .left-side .inner-details .main-title ul.contact-list li::before {
    position: static;
    margin-right: 10px;
  }
  .main-wrapper .mainContent.contact-inner .right-side .inner-form .two-input {
    margin-bottom: 15px;
  }
  .main-wrapper .mainContent.contact-inner .right-side .inner-form .two-input .field-gr {
    width: calc(52% - 14px);
  }
  .main-wrapper .mainContent.contact-inner .right-side .inner-form .form-textarea {
    margin-bottom: 15px;
  }
  .main-wrapper .mainContent.contact-inner .right-side .inner-form .form-submit .theme-button a,
  .main-wrapper .mainContent.about-page .about-section-one .main-title h4::before,
  .main-wrapper .mainContent.about-page .about-section-one .main-title h4::after {
    margin: 0 auto;
  }
  .main-wrapper .mainContent.about-page .about-section-one .main-title h4 {
    max-width: 100%;
  }
  .main-wrapper .mainContent.about-page .about-section-one p {
    text-align: center;
  }
}

@media (max-width: 1500px) {
  .main-wrapper .mainContent.home-business .business-slider .owl-nav {
    left: 0;
    right: 0;
    top: auto;
    bottom: 150px;
  }
  .main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-'].owl-prev {
    left: auto;
    right: 70px;
  }
  .main-wrapper .mainContent.home-business .business-slider .owl-nav [class*='owl-'].owl-next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .main-wrapper .mainContent.home-business .business-slider .owl-nav {
    display: none;
  }
  .main-wrapper .mainContent.breadcrumb-area {
    padding-top: 150px;
  }
  .main-wrapper .mainContent.contact-inner .left-side {
    padding-right: 0;
    width: 100%;
    margin-bottom: 30px;
  }
  .main-wrapper .mainContent.contact-inner .right-side {
    width: 100%;
  }
  .main-wrapper .mainContent.contact-inner .google-map iframe {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .main-wrapper .mainContent.home-business .business-slider .owl-item .slider-item .image-box .hover-box {
    padding: 50px 15px;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner {
    text-align: center;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner .quick-links {
    -webkit-column-count: 1;
            column-count: 1;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.inline-list {
    float: left;
    width: 100%;
    padding: 0;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.contact-list li {
    padding-left: 0;
  }
  .main-wrapper .mainContent.footer .footer-content .ftr-in .footer-inner ul.contact-list li::before {
    position: static;
    margin-right: 10px;
  }
  .progress-wrap {
    right: 20px;
    bottom: 100px;
  }
  .main-wrapper .mainContent.breadcrumb-area {
    padding-top: 160px;
  }
  .main-wrapper .mainContent.business-inner .row .inner-content .text-block .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
  }
  .main-wrapper .mainContent.about-page-two .vision-side .inner-content,
  .main-wrapper .mainContent.about-page-two .mission-side .inner-content {
    text-align: center;
  }
  .main-wrapper .mainContent.about-page-two .vision-side .inner-content ul li::before {
    display: none;
  }
  .main-wrapper .mainContent.about-page-two .vision-side .inner-content ul {
    padding-left: 0;
  }
}

@media (max-width: 400px) {
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container {
    bottom: 30%;
  }
  .main-wrapper .main-slider .home-slider .owl-item .slider-item .container .meta p {
    max-width: 100%;
  }
}
/*# sourceMappingURL=theme-style.css.map */