* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

body {
  font-size: 17px;
  color: #827e7d;
  line-height: 27px;
  font-weight: 400;
  background: #ffffff;
  font-family: 'Manrope', sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.auto-container {
  position: static;
  max-width: 1430px;
  padding: 0px 15px;
  margin: 0 auto;
}

.boxed_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
  text-decoration: none;
  outline: none;
}

input,
button,
select,
textarea {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-family: 'Manrope', sans-serif;
  color: #333;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: 'Monda', sans-serif;
  font-weight: 400;
  color: #154982;
  margin: 0px;
  transition: all 500ms ease;
}

/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  background: #154982;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 80px;
  margin: 0 auto 45px auto;
  width: 80px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: 'Monda', sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  display: inline-block;
  position: relative;
  font-size: 40px;
  line-height: 70px;
  text-transform: uppercase;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.handle-preloader .loader-section {
  background-color: #000;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  color: #b03d1e;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #b03d1e;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #154982;
  border-top-color: rgba(255, 255, 255, 0.5);
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 4em;
    width: 4em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 20px;
    letter-spacing: 3px;
  }
}


.centred {
  text-align: center;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.special_fonts {
  font-family: 'DM Sans', sans-serif;
}


figure {
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/** button **/


.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Monda', sans-serif;
  text-align: center;
  padding: 10px 15px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn.btn-one {
  background: #fff;
  color: #262625;
}

.theme-btn.btn-one:hover {
  color: #fff;
}

.theme-btn span {
  position: relative;
  padding-right: 35px;
}

.theme-btn span:before {
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 10px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  top: -2px;
  right: 0px;
  transition: all 500ms ease;
}

.theme-btn.btn-one span:before {
  color: #fff;
  background: #154982;
}

.theme-btn.btn-one:hover span:before {
  background: #fff;
}

.theme-btn.btn-two {
  color: #fff;
}

.theme-btn.btn-two span:before {
  background: #fff;
}

.theme-btn.btn-two:hover {
  background: #154982;
}

.row {
  --bs-gutter-x: 30px;
}

.sec-pad {
  padding: 110px 0px 120px 0px;
}

.mr-0 {
  margin: 0px !important;
}

.scroll-top {
  width: 50px;
  height: 50px;
  /* line-height: 60px; */
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 15px;
  z-index: 99;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 1s ease;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10) !important;
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top i {
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}

.sec-title {
  position: relative;
  display: block;
  margin-bottom: 49px;
}

.sec-title .sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Monda', cursive;
  color: #154982;
  font-weight: 700;
  padding-bottom: 9px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.sec-title .sub-title:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  font-weight: 700;
  margin: 0px;
}

.sec-title.light h2 {
  color: #fff;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}


/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  border-top: 3px solid #b03d1e;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/** header-top **/

.header-top {
  position: relative;
  border-top: 2px solid #154982;
  border-bottom: 1px solid #e2e2e2;
  padding: 5px 0px;
}

.header-top .outer-container {
  position: relative;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
}

.header-top .social-links li:last-child {
  margin: 0px;
}

.header-top .social-links li h5 {
  display: block;
  font-size: 17px;
  line-height: 28px;
  color: #154982;
  font-weight: 700;
}

.header-top .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #b03d1e;
}


.header-top .social-links li:before {
  position: absolute;
  content: '';
  background: #154982;
  width: 4px;
  height: 4px;
  top: 12px;
  right: -14px;
  border-radius: 50%;
}

.header-top .social-links li:first-child:before,
.header-top .social-links li:last-child:before {
  display: none;
}

.header-top .text h5 {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 28px;
  color: #827e7d;
  font-weight: 700;
}

.header-top .links-list li {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 28px;
  margin-right: 25px;
  font-weight: 700;
}

.header-top .links-list li:last-child {
  margin-right: 0px;
}

.header-top .links-list li a {
  position: relative;
  display: inline-block;
  color: #827e7d;
}

.main-header .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}

.main-header .menu-left-content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 50px 15px 0px;
  margin-right: 30px;
}

.main-header .menu-left-content .logo-box {
  position: relative;
  margin-right: 100px;
}

/* .main-header .search-box-outer {
  position: relative;
}

.main-header .search-box-outer h5 {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 27px;
  color: #1c1c1c;
  font-weight: 700;
  padding-left: 38px;
  cursor: pointer;
  transition: all 500ms ease;
}


.main-header .search-box-outer h5 i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 24px;
} */



/** main-menu **/

.main-menu {
  float: left;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  margin: 0px;
}

.main-menu .navigation>li {
  position: inherit;
  float: left;
  border-right: 1px dashed #154982;
  z-index: 2;
  margin: 0px 15px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
  margin-left: 0px !important;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  /* padding: 30px 8px; */
  padding-right: 25px;
  font-weight: 700;
  font-family: 'Monda', sans-serif;
  opacity: 1;
  color: #154982;
  z-index: 1;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation>li>a:before,
.main-menu .navigation>li>a:after {
  position: absolute;
  opacity: 0;
  transition: all 500ms ease;
}

.main-menu .navigation>li>a:before {
  content: '[';
  left: -10px;
  top: 0px;
}

.border-right-none {
  border-right: none !important;
}

.main-menu .navigation>li>a:after {
  content: ']';
  right: 15px;
  top: 0px;
}

.main-menu .navigation>li.current>a:before,
.main-menu .navigation>li.current>a:after,
.main-menu .navigation>li>a:hover:before,
.main-menu .navigation>li>a:hover:after {
  opacity: 1;
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 240px;
  margin-top: 20px;
  z-index: 100;
  background: #fff;
  display: none;
  opacity: 0;
  padding: 10px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  visibility: hidden;
  border-radius: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul:before,
.main-menu .navigation>li>.megamenu:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  left: 0px;
  top: -10px;
  background: #15498294;
}

.main-menu .navigation>li>.megamenu {
  background: #212226;
}

.main-menu .navigation>li>.megamenu a {
  display: inline-block !important;
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
  padding: 0px 25px;
  padding-right: 25px;
}

.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>.megamenu li>a {
  position: relative;
  display: block;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: #1d1d1b;
  text-align: left;
  padding: 12px 0px;
  text-transform: capitalize;
  transition: all 500ms ease;
  border-bottom: 1px solid #e2e2e2;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li:last-child a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>a:hover:before {
  opacity: 1;
}

.main-menu .navigation>li>.megamenu li>a {
  padding-left: 0px;
  padding-right: 0px;
}

.main-menu .navigation>li>.megamenu h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}


.main-menu .navigation>li>ul>li:last-child>a,
.main-menu .navigation>li>.megamenu li:last-child>a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 6 Free';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  color: #b9b7b6;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  z-index: 5;
  transition: all 500ms ease;
}


.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  margin-top: 15px;
  margin-left: 10px;
  width: 240px;
  z-index: 100;
  display: none;
  border-radius: 0px;
  padding: 10px 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul:before {
  position: absolute;
  content: '';
  left: -10px;
  top: 0px;
  width: 10px;
  height: 100%;
}

.main-menu .navigation>li>ul>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  padding: 0px 30px;
  padding-right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  line-height: 24px;
  font-weight: 400;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
  color: #1d1d1b;
  text-align: left;
  padding: 12px 0px;
  border-bottom: 1px solid #e2e2e2;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
  border-bottom: none;
}


.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul,
.main-menu .navigation>li.dropdown:hover>.megamenu {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 26px;
  display: block;
  margin-bottom: 5px;
  background-color: #154982;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
  margin-bottom: 0px;
}

.header-top .social-links {
  margin-right: 18px;
}


/** megamenu-style **/

.main-menu .navigation>li.dropdown>.megamenu {
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 50px 25px;
  text-align: left;
  padding-bottom: 100px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #0a0807;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 20px;
  padding: 9px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
  display: none;
}

.mobile-menu .social-links {
  position: relative;
  padding: 0px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 90px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
  color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0px;
}

.main-header .outer-box {
  position: relative;
}

.nice-select {
  position: relative;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px;
  color: #d4c0cd;
  padding-right: 21px;
  height: auto;
  line-height: 28px;
}


/** banner-section **/

.banner-section {
  position: relative;
}

.banner-carousel .slide-item {
  position: relative;
  padding: 150px 0px 150px 0px;
}

.banner-carousel .slide-item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  top: 0px;
  right: 0px;
  opacity: 0.3;
  z-index: 1;
}

.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}

.banner-carousel .active .slide-item .image-layer {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.banner-carousel .content-box {
  position: relative;
  width: 100%;
  z-index: 5;
  padding: 96px 0;
}

.banner-section-inner .banner-carousel .content-box {
  text-align: center;
}

.banner-section-inner .owl-nav {
  display: none;
}

.banner-section-inner .banner-carousel .slide-item {
  padding: 70px 0px 70px 0px;
}

.about-section-inner:before {
  display: none;
}

.banner-carousel .content-box h2 {
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 110px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box h2 {
  opacity: 1;
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box h2 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.banner-carousel .content-box h2 span:before {
  position: absolute;
  content: '';
  width: 100%;
  left: 0px;
  bottom: 2px;
  z-index: -1;
}

.banner-carousel .content-box p {
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 29px;
  font-weight: 700;
  color: #d6d6d6;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box p {
  opacity: 1;
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box .btn-box {
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box {
  opacity: 1;
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box .theme-btn span:before {
  background: #818387;
}

.banner-carousel .content-box .theme-btn:hover span:before {
  background: #fff;
}

.owl-carousel .owl-nav span {
  font-family: 'flaticon';
}

.banner-carousel .owl-nav {
  position: absolute;
  left: 0px;
  right: 0px;
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  bottom: 50px;
  text-align: right;
}

.banner-carousel .owl-nav button {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
}

.banner-carousel .owl-nav button.owl-prev {
  margin-right: 20px;
}

.banner-carousel .owl-dots {
  display: none;
}

.banner-section .line-box .line-1,
.banner-section .line-box .line-2 {
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: 0.15;
  z-index: 2;
}

/** about-section **/

.about-section {
  position: relative;
  border-bottom: 1px solid #e2e2e2;
  padding: 50px 0px 30px 0px;
}

.about-section:before {
  position: absolute;
  content: '';
  background: #f3f1f1;
  width: 38%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-right: 1px solid #e2e2e2;
}

.who-section .image-box {
  position: relative;
  display: block;
  margin-right: 0px !important;
}

.who-section .image-box .image img {
  width: 100%;
  height: 500px !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.who-section:before {
  content: none;
}

.about-section .image-box {
  position: relative;
  display: block;
  margin-right: 30px;
}

.about-section .icon-img {
  position: absolute;
  right: 0;
  z-index: 9;
}

.about-section .image-box .image {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.about-section .image-box .image img {
  width: 100%;
  height: 550px;
}

.about-section .image-box .text {
  position: relative;
  display: block;
  text-align: right;
}

.about-section .image-box .text h5 {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-right: 21px;
}

.about-section .image-box .text h5:before {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  top: 11px;
  right: 0px;
  border-radius: 50%;
}

.about-section .content-box {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: 0;
}

.about-section .content-box .sec-title {
  margin-bottom: 31px;
}

.about-section .content-box .text {
  position: relative;
  display: block;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e2e2e2;
}

.about-section .text p {
  font-size: 17px;
  line-height: 33px;
  text-align: justify;
  margin-bottom: 10px;
}

.color-theme {
  color: #b03d1e;
}

.about-section .content-box .inner-box {
  position: relative;
  display: block;
  padding: 0px 0px 0px 135px;
}

.about-section .content-box .inner-box .curve-text {
  position: absolute;
  left: 58px;
  top: -10px;
}

.about-section .content-box .inner-box .curve-text:before {
  position: absolute;
  content: '.';
  left: -8px;
  top: -8px;
  font-size: 24px;
  font-family: 'Inter Tight', sans-serif;
  color: #1c1c1c;
}

.about-section .content-box .inner-box .curve-text .curved-circle {
  font-size: 13px;
  line-height: 23px;
  font-family: 'Inter Tight', sans-serif;
  color: #1c1c1c;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(175deg);
}

.about-section .content-box .inner-box .curve-text .icon-box {
  position: absolute;
  left: -23px;
  top: 35px;
  font-size: 45px;
}

.about-section .content-box .inner-box h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-section .content-box .inner-box p {
  margin-bottom: 8px;
}

.about-section .content-box .inner-box button {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Monda', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
  transition: all 500ms ease;
}

.about-section .content-box .inner-box button i {
  position: absolute;
  left: 0px;
  top: -1px;
  font-size: 24px;
}

.bg-color-1 {
  background: #f3f1f1;
}


/** service-section **/

.service-section {
  position: relative;
  border-top: 1px solid #dad9d7;
  border-bottom: 1px solid #dad9d7;
  padding-top: 50px;
  padding-bottom: 50px;
}

.service-section .sec-title {
  margin-bottom: 65px;
}

.service-block-one .inner-box {
  position: relative;
  display: block;
  padding: 0px 30px;
}

.service-block-one .inner-box .image-box {
  position: relative;
  display: block;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.service-block-one .inner-box .image-box:before {
  position: absolute;
  content: '';
  width: 310px;
  height: 310px;
  /* border: 1px solid #d6d6d6; */
  border: 1px solid #154982;
  border-radius: 50%;
  left: -16px;
  top: -15px;
}

.service-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.service-block-one .inner-box .image-box .image img {
  width: 100%;
  border-radius: 50%;
}

.service-block-one .inner-box .image-box .shape {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 220px;
  height: 220px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box .shape {
  transform: scale(0, 0);
}

.service-block-one .inner-box .lower-content {
  position: relative;
  display: block;
}

.service-block-one .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.service-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: #1c1c1c;
}

.service-block-one .inner-box .lower-content p {
  position: relative;
  display: block;
  margin-bottom: 25px;
  text-align: center;
  font-size: 17px;
}

.service-block-one .inner-box .lower-content .btn-box a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Monda', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1c1c;
}


.service-block-one .inner-box .lower-content .btn-box a span {
  position: relative;
  padding-left: 55px;
}

.service-block-one .inner-box .lower-content .btn-box a span:before {
  position: absolute;
  content: "\f105";
  font-family: 'flaticon';
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: -8px;
  font-weight: 400;
  transition: all 500ms ease;
}

.service-block-one .inner-box .lower-content .btn-box a:hover span:before {
  color: #fff;
}

.service-block-one .inner-box .lower-content .big-text {
  position: absolute;
  right: 0px;
  bottom: 10px;
  font-size: 180px;
  line-height: 120px;
  font-family: 'Monda', sans-serif;
  color: #eaeaea;
  font-weight: 700;
  text-transform: uppercase;
}

.service-section .line-box {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  max-width: 1430px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.service-section .line-box .line {
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #d6d6d6;
}

.service-section .line-box .line-1 {
  left: 0px;
}

.service-section .line-box .line-2 {
  left: 33.3334%;
}

.service-section .line-box .line-3 {
  left: 66.666%;
}

.service-section .line-box .line-4 {
  right: 0px;
}

.border-top {
  border-top: 1px solid #e2e2e2 !important;
}

.border-bottom {
  border-bottom: 1px solid #e2e2e2 !important;
}

/** video-section **/

.video-section {
  position: relative;
  padding: 90px 0px 70px 0px;
}

.video-section .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.video-section .bg-layer:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;
}

.video-section .sec-title .sub-title {
  color: #fff;
}


.video-section .sec-title {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 30px;
}

.video-section .lower-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section .lower-box p {
  text-align: center;
  color: #d6d6d6;
}


/** case-section **/

.case-section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.case-section .outer-container {
  padding: 0px 55px;
}

.case-block-one .inner-box {
  position: relative;
  padding: 45px 0px;
}

.case-block-one .inner-box .upper-content {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.case-block-one .inner-box .upper-content h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-left: 22px;
}

.case-block-one .inner-box .upper-content h5:before {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  left: 0px;
  top: 9px;
  border-radius: 50%;
}

.case-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.case-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
}

.case-block-one .inner-box .image-box .image img {
  width: 100%;
  transition: all 500ms ease;
}

.case-block-one .inner-box:hover .image-box .image img {
  transform: scale(1.05);
  /* filter: blur(4px);
  -webkit-filter: blur(4px); */
}

.case-block-one .inner-box .view-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.case-block-one .inner-box .view-btn a {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 110px;
  background: #fff;
  text-align: center;
  font-size: 32px;
  color: #292729;
  border-radius: 50%;
  transform: scale(0, 0);
}

.case-block-one .inner-box:hover .view-btn a {
  transform: scale(1, 1);
}

.case-block-one .inner-box .view-btn a:hover {
  color: #fff;
}

.case-block-one .inner-box .lower-content {
  padding-top: 22px;
}

.case-block-one .inner-box .lower-content h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

.case-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: #154982;
}

.case-block-one .inner-box:before {
  position: absolute;
  content: '';
  background: #e2e2e2;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -55px;
}

.case-section .owl-nav span {
  display: none;
}

.case-section .owl-nav {
  display: none !important;
  position: absolute;
  left: -10px;
  top: -93px;
  right: 0px;
  max-width: 1200px;
  width: 100%;
  text-align: right;
  margin: 0 auto;
}

.case-section .owl-nav button {
  position: relative;
  display: none;
  display: inline-block;
  margin: 0px 10px;
  width: 38px;
  height: 24px;
}

.case-section .owl-nav button.owl-prev:before {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.case-section .owl-nav button.owl-next:before {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-2.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.case-section .owl-nav button.owl-prev:hover:before,
.case-section .owl-nav button.owl-next:hover:before {
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}

.case-section .owl-dots {
  display: none;
  position: absolute;
  max-width: 1200px;
  width: 100%;
  left: -365px;
  top: -137px;
  right: 0px;
  text-align: right;
  counter-reset: slides-num;
  margin: 0 auto;
}

.case-section .owl-dots::after {
  position: absolute;
  right: 0px;
  top: 53px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 24px;
  color: #a9a6a5;
  font-weight: 700;
  font-family: 'Monda', sans-serif;
}

.case-section .owl-dots:before {
  position: absolute;
  content: '';
  right: 44px;
  top: 58px;
  width: 1px;
  height: 18px;
  background: #e2e2e2;
}

.case-section .owl-dots button span {
  display: none !important;
}

.case-section .owl-dots button {
  position: absolute;
  top: 0px;
  right: 110px;
  counter-increment: slides-num;
  font-size: 90px;
  line-height: 80px;
  font-family: 'Monda', sans-serif;
  color: #1c1c1c;
}

.case-section .owl-dots button.active:before {
  position: absolute;
  content: counter(slides-num);
}

.case-section .owl-dots button.active:after {
  position: absolute;
  content: '0';
  top: 0px;
  right: 0px;
}


/** testimonial-section **/

.testimonial-section {
  position: relative;
  padding: 50px 0px;
}

.testimonial-section .sec-title .theme-btn {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.testimonial-section .testimonial-content {
  position: relative;
  display: block;
  padding-left: 345px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.testimonial-section .testimonial-content .quote-box {
  position: absolute;
  left: 0px;
  top: -20px;
  width: 270px;
  height: 270px;
  border: 1px solid #d9d8d8;
  line-height: 300px;
  text-align: center;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .quote {
  position: relative;
  display: inline-block;
  font-size: 140px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #d8d7d7;
}

.testimonial-section .testimonial-content .thumb-box {
  position: absolute;
  left: 215px;
  top: 65px;
  width: 100px;
  height: 100px;
  background: #f3f1f1;
  border: 1px solid #d8d7d7;
  border-radius: 50%;
  padding: 9px;
}

.testimonial-section .testimonial-content .thumb-box img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .inner-box {
  position: relative;
  display: block;
  padding-left: 55px;
}

.testimonial-section .testimonial-content .inner-box:before {
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: 1px;
  height: calc(100% + 31px);
  left: 0px;
  top: -20px;
}

.testimonial-section .testimonial-content .inner-box .rating li {
  position: relative;
  display: inline-block;
  font-size: 20px;
  float: left;
  margin-right: 8px;
}

.testimonial-section .testimonial-content .inner-box .rating li:last-child {
  margin: 0px;
}

.testimonial-section .testimonial-content .inner-box .rating {
  margin-bottom: 13px;
}

.testimonial-section .testimonial-content .inner-box p {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 35px;
  color: #1c1c1c;
  margin-bottom: 32px;
  padding-bottom: 30px;
}

.testimonial-section .testimonial-content .inner-box p:before {
  position: absolute;
  content: '';
  background: #d6d6d6;
  width: calc(100% + 55px);
  height: 1px;
  right: 0px;
  bottom: 0px;
}

.testimonial-section .testimonial-content .inner-box h3 {
  display: block;
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-section .testimonial-content .inner-box .designation {
  position: relative;
  display: block;
}

.testimonial-section .owl-nav span {
  display: none;
}

.testimonial-section .owl-nav {
  position: absolute;
  right: -10px;
  bottom: 38px;
}

.testimonial-section .owl-nav button {
  position: relative;
  display: inline-block;
  margin: 0px 10px;
  width: 38px;
  height: 24px;
}

.testimonial-section .owl-nav button.owl-prev:before {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.testimonial-section .owl-nav button.owl-next:before {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-2.png);
  width: 38px;
  height: 24px;
  left: 0px;
  top: 0px;
  opacity: 0.6;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.testimonial-section .owl-nav button.owl-prev:hover:before,
.testimonial-section .owl-nav button.owl-next:hover:before {
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}


/** main-footer **/

.main-footer {
  position: relative;
  /* background: #1c1c1c; */
  background: url('../images/background/footer-bg.jpg');
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  opacity: 0.6;
}

.main-footer .widget-section {
  position: relative;
  padding: 35px 0px 35px 0px;
}

.footer-logo {
  display: none;
  margin-bottom: 20px;
}

.info-box h3 {
  font-size: 18px !important;
}

.widget-title h3::before {
  content: '';
  background-color: #b03d1e;
  height: 2px;
  width: 40px;
  position: absolute;
  top: 45px;
  left: 3px;
  bottom: 0;
  right: 0;
}

.main-footer .footer-widget h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
}

.main-footer .contact-widget .info-box .single-item {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.main-footer .contact-widget .info-box .single-item:last-child {
  margin-bottom: 0px;
}

.main-footer .contact-widget .info-box .single-item h3 {
  margin-bottom: 0px;
}

.main-footer .contact-widget {
  position: relative;
  display: block;
  padding-right: 70px;
  margin-top: 5px;
}

.main-footer .contact-widget:before {
  position: absolute;
  content: '';
  background: #373737;
  width: 1px;
  height: calc(100% + 0px);
  top: 0;
  right: 60px;
}

.links-list {
  padding-left: 20px;
}

.links-list li a::before {
  content: '>';
  /* background-color: #b03d1e; */
  color: #b03d1e;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: -15px;
  bottom: 0;
  right: 0;
}

.main-footer p,
.main-footer a {
  color: #fff;
}

.main-footer a:hover {
  color: #fff;
}

.main-footer .widget-title {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.main-footer .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.main-footer .links-widget .links-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .post-widget .post {
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 23px;
}

.main-footer .post-widget .post:last-child {
  margin-bottom: 0px;
}

.main-footer .post-widget .post .post-thumb {
  position: absolute;
  left: 0px;
  top: 6px;
  width: 80px;
  height: 80px;
}

.main-footer .post-widget .post .post-thumb img {
  width: 100%;
  transition: all 500ms ease;
}

.main-footer .post-widget .post:hover .post-thumb img {
  opacity: 0.2;
}

.main-footer .post-widget .post h6 {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.main-footer .post-widget .post h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}

.copyright p {
  font-size: 15px;
}

.main-footer .post-widget .post h4 a {
  display: inline-block;
  color: #fff;
}

.main-footer .post-widget .post .post-date {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-family: 'Monda', sans-serif;
  font-weight: 700;
  color: #a9a6a5;
  padding-left: 22px;
}

.main-footer .post-widget .post .post-date i {
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 15px;
}

.footer-bottom {
  position: relative;
  width: 100%;
  background: #b03d1e;
  padding: 10px 0px;
}

.footer-bottom .bottom-inner {
  position: relative;
  text-align: center;
}

.bg-color-2 {
  background-color: #f3f3f4;
}

.sec-title p {
  margin-top: 22px;
}

.case-section .case-block {
  padding: 0px 55px;
  border-bottom: 1px solid #e2e2e2;
}

.case-section .more-btn {
  padding-top: 60px;
}

/** clients-section **/

.clients-section {
  position: relative;
  padding: 50px 0px 60px;
}

.clients-section .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clients-section .clients-logo {
  position: relative;
  display: block;
}

.clients-logo a {
  cursor: default;
}

.clients-section .clients-logo img {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  cursor: pointer;
  margin: 0 auto;
  border: 10px solid #e2e2e2;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.clients-logo:hover img {
  transform: rotateY(-15deg) rotateX(8deg) scale(1.05);
  box-shadow: 20px 25px 40px rgba(0, 0, 0, 0.3);
}

.abt-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}

.products-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 260px;
  background-image: url('../images/background/prodcuts-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.about-content h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b2b52;
  margin-bottom: 25px;
}

.about-content h2 span {
  color: #d35400;
}

.about-content p {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.feature-item i {
  color: #d35400;
  margin-right: 12px;
  font-size: 18px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.experience-box {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: #fff;
  padding: 22px 28px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.experience-box h3 {
  margin: 0;
  color: #d35400;
  font-size: 28px;
  font-weight: 700;
}

.experience-box span {
  color: #555;
  font-size: 15px;
}

.theme-btn {
  padding: 10px 20px;
  border-radius: 40px;
}

@media(max-width:991px) {

  .about-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .experience-box {
    left: 20px;
    bottom: 20px;
  }

}

.case-section .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: .5s;
}

.case-section .image-box .image img {
  width: 100%;
  transition: .6s ease;
}

.case-section .image-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.case-section .image-box:hover .image img {
  transform: scale(1.08);
}

.image-box:hover .view-btn {
  opacity: 1;
}

.about-section-inner .image-column {
  float: left;
  margin-right: 10px;
}

.about-section-inner .content-box .text {
  border-bottom: none;
}

.about-section-inner .image-box .image img {
  width: 100%;
  height: auto;
}

.case-section-inner .case-block-one .inner-box {
  padding: 0;
  border: none;
  border-bottom: 2px solid #b03d1e;
}

.lower-content h5 a {
  color: #154982;
  font-size: 22px;
  font-weight: 700;
}

.case-section-inner .case-block-one .inner-box:before {
  display: none;
}

.quote-form {
  padding: 35px;
  border-radius: 12px;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  position: absolute;
  /* margin-left: -150px;
  background: #fff; */
}

.quote-section-inner .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.quote-section-inner .form-row input,
.quote-section-inner .form-row select,
.quote-section-inner .quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: .3s;
  background: #fff;
}

.quote-section-inner .form-row input:focus,
.quote-section-inner .form-row select:focus,
.quote-section-inner .quote-form textarea:focus {
  border-color: #0b63b6;
  box-shadow: 0 0 0 3px rgba(11, 99, 182, .12);
}

.quote-form textarea {
  width: 100%;
  resize: vertical;
  margin-bottom: 20px;
}

@media(max-width:768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .quote-form {
    padding: 25px;
  }
}

.quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-img img {
  width: 600px;
  position: relative;
  z-index: -1;
  border-radius: 15px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  border-top: 2px solid #b03d1e;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: .3s;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #173b73;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.card-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-card h4 {
  color: #000;
  font-size: 20px;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.map-section {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

@media(max-width:991px) {

  .contact-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 34px;
  }

}

.product-details .pdt-img {
  float: left;
  margin-right: 30px;
  margin-bottom: 10px;
}

.product-details .pdt-content p {
  font-size: 17px;
  line-height: 33px;
  text-align: justify;
}

.product-details .pdt-content ul {
  margin-top: 20px;
}

.product-details .pdt-content ul li {
  font-size: 17px;
  line-height: 34px;
  text-align: justify;
  color: #333;
}

.product-details .pdt-content ul li i {
  color: #d35400;
  margin-right: 8px;
  font-size: 18px;
}

.pdt-content ul h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sec-title-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sec-title-flex h2 {
  flex: 1;
  text-align: center;
  margin: 0;
}

.sec-title-flex .theme-btn span:before {
  position: absolute;
  content: "←";
  font-family: "flaticon";
  font-size: 15px;
  width: 26px;
  height: 26px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  top: -2px;
  right: 0px;
  transition: all 500ms ease;
  font-weight: 700;
}

.sec-title-flex .theme-btn {
  padding: 8px 20px;
}

.pdt-head {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #b03d1e;
}

.pdt-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

.lower-content h5 a:hover {
  color: #b03d1e;
}

.pad-bot {
  padding-bottom: 100px;
}

.who-img-inner img {
  width: 400px;
}

.pdt-img img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.serv-img img {
  border-radius: 50%;
}

.clients-logo img {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  cursor: pointer;
  margin: 0 auto;
  border: 10px solid #e2e2e2;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vision-mission {
  margin-bottom: 30px;
}

.vm-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vm-card {
  padding: 25px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: #154982;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.vm-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #b03d1e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.vm-card h3 {
  font-size: 28px;
  color: #154982;
  margin-bottom: 18px;
  font-weight: 600;
}

.vm-card p {
  font-size: 17px;
  line-height: 33px;
  text-align: justify;
  margin-bottom: 10px;
  color: #333;
}

/* Responsive */

@media(max-width:768px) {

  .section-title h2 {
    font-size: 30px;
  }

  .vm-card {
    width: 100%;
  }

}

.vm-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 130px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  /* z-index: 9999; */
  z-index: 2;
  transition: 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 22px 45px rgba(37, 211, 102, 0.6);
}

/* Floating animation */
.floating {
  animation: floatY 3s ease-in-out infinite;
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulseRing 2s infinite;
  z-index: -1;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


.social-fixed {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* z-index: 999; */
  z-index: 2;
}

.facebook {
  background: #1877f2;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.youtube {
  background: #ff0000;
}

.header-lower {
  border-top: 3px solid #b03d1e;
}

.certificate-img {
  position: relative;
  text-align: center;
}

.certificate-img img {
  width: 300px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (min-width: 300px) and (max-width: 800px) {
  .header-top {
    display: none;
  }

  .case-block-one {
    margin: 0 20px;
  }

  .sec-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .btn-box {
    margin-top: 20px !important;
  }

  .video-section .sec-title h2 {
    font-size: 30px !important;
    line-height: 35px !important;
  }

  .video-section .lower-box {
    margin: 0 20px;
  }

  .video-section .lower-box p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 16px;
    line-height: 25px;
  }

  .inner-box {
    margin: 0 20px;
  }

  .about-content {
    margin: 0 20px;
  }

  .about-content p {
    font-size: 16px;
    text-align: justify;
    line-height: 1.8;
  }

  .who-btn {
    text-align: center;
  }

  .who-section .about-image {
    display: none;
  }

  .testimonial-section .testimonial-content .inner-box p {
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
  }

  .testimonial-section {
    padding: 30px 0px !important;
  }

  .main-footer .footer-widget h3 {
    font-size: 20px;
  }

  .main-footer a {
    font-size: 16px;
  }

  .main-footer p {
    font-size: 15px;
  }

  .main-footer .widget-section {
    padding-bottom: 10px !important;
  }

  .links-widget .widget-content .links-list {
    margin-bottom: 10px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .social-fixed {
    right: 0;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }

  .vm-wrapper {
    display: block;
    margin: 0 20px;
  }

  .vm-card p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 5px;
  }

  .about-section-inner {
    padding-bottom: 0;
  }

  .vm-card h3 {
    font-size: 25px;
  }

  .vm-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .vm-head {
    gap: 10px;
  }

  .case-section-inner .case-block-one {
    margin-top: 40px;
  }

  .sec-title-flex {
    display: block;
  }

  .back-btn {
    display: none;
  }

  .case-block-one .inner-box .lower-content {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .lower-content h5 a {
    font-size: 18px;
  }

  .case-section-inner {
    padding-top: 30px !important;
    padding-bottom: 10px !important;
  }

  .product-details {
    margin: 0 20px;
    padding-bottom: 30px;
  }

  .product-details .pdt-img {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .pdt-img {
    text-align: center;
  }

  .product-details .pdt-content p {
    font-size: 15px;
    line-height: 28px;
  }

  .pdt-content ul h4 {
    font-size: 18px;
    text-align: center;
    line-height: 28px;
  }

  .product-details .pdt-content ul li {
    font-size: 15px;
    line-height: 28px;
  }

  .product-details .pdt-content ul li i {
    font-size: 16px;
  }

  .other-sub .case-block-one {
    margin: 20px 0 0;
  }

  .contact-wrapper {
    margin: 0 20px 40px;
  }

  .contact-card .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .contact-card .card-head {
    gap: 10px;
    margin-bottom: 10px;
  }

  .contact-card p {
    line-height: 28px;
    font-size: 15px;
  }

  .map-section {
    margin: 0 20px;
  }

  .quote-section-inner {
    padding-bottom: 20px;
    padding-top: 40px !important;
  }

  .contact-section-inner {
    padding-top: 40px !important;
  }

  .quote-container {
    margin: 0 20px;
  }

  .quote-form {
    position: relative;
    margin-top: 20px;
  }

  .quote-container {
    display: block;
  }

  .quote-section-inner .form-row input,
  .quote-section-inner .form-row select,
  .quote-section-inner .quote-form textarea {
    padding: 10px 15px;
  }

  .quote-section-inner .form-row input,
  .quote-section-inner .form-row select,
  .quote-section-inner .quote-form textarea {
    font-size: 14px;
  }

  .single-item h3 {
    font-size: 17px !important;
  }
}

@media (max-width: 1366px) {
  .auto-container {
    max-width: 1200px;
  }

  .logo-box img {
    width: 240px;
  }

  .main-menu .navigation>li>a {
    font-size: 16px;
    padding-right: 20px;
  }

  .main-header .menu-left-content {
    padding: 10px 50px 5px 0px;
  }

  .banner-carousel .content-box h2 {
    font-size: 50px;
    line-height: 100px;
  }

  .banner-carousel .slide-item {
    padding: 10px 0px 10px 0px;
  }

  .banner-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .banner-carousel .content-box p {
    font-size: 16px;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
  }

  .sec-title h2 {
    font-size: 33px;
  }

  .about-section .text p {
    font-size: 15px;
    line-height: 26px;
  }

  .about-section .content-box .text {
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .about-section .image-box .image img {
    height: 460px;
  }

  .theme-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .theme-btn span:before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 23px;
  }

  .case-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sec-title {
    margin-bottom: 29px;
  }

  .case-block-one .inner-box .lower-content h3 {
    font-size: 20px;
  }

  .btn-box {
    margin-top: 20px !important;
  }

  .video-section .lower-box p {
    font-size: 16px;
  }

  .service-block-one .inner-box .image-box {
    width: 260px;
    height: 260px;
  }

  .service-block-one .inner-box .image-box:before {
    width: 290px;
    height: 290px;
    left: -15px;
  }

  .service-block-one .inner-box .image-box .shape {
    left: 20px;
    top: 20px;
  }

  .service-block-one .inner-box .lower-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .service-block-one .inner-box .lower-content p {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .service-block-one .inner-box .lower-content .btn-box a span:before {
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    left: 0px;
    top: 0px;
  }

  .service-block-one .inner-box .lower-content .btn-box a span {
    padding-left: 40px;
  }
}