:root {
  --colorOne: #211b41;
  --colorTwo: #019ee5;
}

body {
  font-family: 'Montserrat', sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  transition: .4s ease-in-out;
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -ms-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
}

.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.lines-1 {
  -webkit-line-clamp: 1;
}
.lines-2 {
  -webkit-line-clamp: 2;
}
.lines-3 {
  -webkit-line-clamp: 3;
}
.lines-4 {
  -webkit-line-clamp: 4;
}
.lines-5 {
  -webkit-line-clamp: 5;
}
.lines-6 {
  -webkit-line-clamp: 6;
}
.lines-7 {
  -webkit-line-clamp: 7;
}
.lines-8 {
  -webkit-line-clamp: 8;
}
.lines-9 {
  -webkit-line-clamp: 9;
}
.lines-10 {
  -webkit-line-clamp: 10;
}
.lines-11 {
  -webkit-line-clamp: 11;
}
.lines-12 {
  -webkit-line-clamp: 12;
}
.lines-13 {
  -webkit-line-clamp: 13;
}
.lines-14 {
  -webkit-line-clamp: 14;
}
.lines-15 {
  -webkit-line-clamp: 15;
}

/* .loaders {
  position: fixed;
  z-index: 999999;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
  -moz-transition: all ease-in-out .5s;
  -ms-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
}
.loaders img {
  max-width: 200px;
  -webkit-animation: fadeAnimation 1s infinite;
  -moz-animation: fadeAnimation 1s infinite;
  -o-animation: fadeAnimation 1s infinite;
  animation: fadeAnimation 1s infinite;
}
@-webkit-keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
} */

/* START => Header */
header {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  z-index: 5;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .head-header {
  border-bottom: 0;
  padding: .5rem 0;
  background-color: var(--colorOne);
}
header .head-header .left-head a:first-child {
  margin-right: .6rem
}
header .head-header .left-head a i {
  width: 20px;
}
header .head-header .left-head a:hover {
  color: var(--colorOne);
}
header .head-header .right-head {}
header .head-header a {
  color: #fff;
  font-size: 14px;
}
.b_left {
  margin-left: 1rem;
  border-left: 1px solid #ddd;
  padding-left: 1rem;
}
.social-head {}
.social-head a {
  color: #fff;
  margin: auto .5rem;
}
.social-head a i {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.social-head a:hover {
  color: var(--colorOne);
}
/* a:hover i.fa-facebook-f {
  color: #3b5998
}
a:hover i.fa-twitter {
  color: #55acee
}
a:hover i.fa-instagram {
  color: #e95950
}
a:hover i.fa-whatsapp {
  color: #4dc247
}
a:hover i.fa-linkedin-in {
  color: #007bb5
}
a:hover i.fa-youtube {
  color: #e95950
}
a:hover i.fa-telegram-plane {
  color: #0088cc;
}
a:hover i.fa-pinterest-p {
  color: #cb2027;
} */
header .head-header .right-head a.langs {
  margin-left: 1rem;
  border-left: 1px solid #ddd;
  padding-left: 1rem;
}
header .head-header a:hover,
header .head-header .right-head a.langs:hover {
  color: var(--colorTwo);
}

.menu-header {
  position: relative;
}
header .logo {}
header .logo a {
  display: block;
  padding: 5px;
  position: absolute;
  top: -45px;
  left: 0;
}
header .logo a img {
	max-height: 100px;
	margin-top: 28px;
}
.logo-footer img {
  background: #fff;
}
header nav {}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {}
header nav ul li a {
  display: inline-block;
  padding: 1.5rem 1rem;
  color: #444;
  position: relative;
  font-weight: 600;
}
header nav ul li a.active,
header nav ul li a:hover {
  background-color: var(--colorOne);
  color: #fff;
}
header nav ul li a:hover,
header nav ul li a.active {
  /* background-color: var(--colorTwo); */
}

.actions-mobile,
.menu-mobile li.logo {
  display: none !important;
}
/* //END => Header */

/* START => Home Sliders */
.sec-slider {
  position: relative;
}
.home-slider,
.home-slider .owl-stage-outer,
.home-slider .owl-stage,
.home-slider .owl-item,
.home-slider .item {
  height: 620px;
}
.home-slider .item {
  /* background-position: 100% 100%; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: end;
  z-index: 1;
}
.home-slider .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}
.home-slider .item .item-txt {
  position: static;
  top: 50%;
  left: 0;
  /* transform: translateY(-50%); */
}
.home-slider .item .item-txt span {
  color: #fff;
  padding-left: .2rem;
  display: block;
  margin-bottom: 1rem;
}
.home-slider .item .item-txt h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.home-slider .item .item-txt p {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  padding-left: .2rem;
}
.btn-style1 {
  background-color: var(--colorTwo);
  color: #FFF;
  padding: 15px 30px;
  margin-top: 20px;
  /* width: 200px; */
  border-radius: 10px;
  transition: all .5s;
  display: inline-block;
}
.btn-style1:hover {
  color: #FFF;
  background-color: var(--colorOne);
}
/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1
}
/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0
}
/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
.animate-300ms {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
.animate-500ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.animate-200ms {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.animate-400ms {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}
.animate-600ms {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.animate-800ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}
.animate-100ms {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}
.home-slider.owl-theme .owl-dots {
  position: absolute;
  top: 50%;
  right: 50px;
  height: 100%;
  /* writing-mode: vertical-lr;
  text-orientation: mixed; */
  /* transform: rotate(90deg);*/
  transform-origin: right top 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateY(-50%);
  text-orientation: sideways;
  /* z-index: 999; */
  margin-top: 0 !important;
}
.home-slider.owl-theme .owl-dots>button {
  margin: 10px 0;
  font-size: 16px;
  cursor: pointer;
  transform: rotate(90deg);
  color: #FFF;
  outline: 0;
  transition: .5s;
}
.home-slider.owl-theme .owl-dots>button.active {
  color: var(--colorTwo);
  font-size: 20px;
}
.home-slider.owl-theme .owl-nav {
  position: absolute;
  right: 25px;
  bottom: 120px;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--colorTwo);
}
.home-slider.owl-theme .owl-nav>button {
  background-color: var(--colorTwo);
  color: #fff;
  padding: .5rem 1.3rem !important;
}
.home-slider.owl-theme .owl-nav>button:focus,
.home-slider.owl-theme .owl-nav>button:hover {
  border: 0;
  outline: 0;
  background-color:var(--colorOne);
  color: #fff;
}
/* //END => Home Sliders */

/* Services */
.sec-services {
  background-color: #f5f5f5;
  margin: 0;
  position: relative;
  z-index: 1;
}
.sec-services .section-title strong {
  color: #444;
}
.sec-services::before {
  /* content: ""; */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(34, 46, 101, 0.7);
}
.slides-items.owl-carousel .owl-stage-outer {
  padding: 0 10px;
}
.slides-items.owl-carousel .owl-stage {
  padding: 1rem 0;
}

.slides-items.owl-carousel .owl-nav {
  margin-top: 25px;
  font-size: 16px;
}
.slides-items.owl-carousel .owl-nav>button {
  background-color: transparent;
  border: 0;
  color: var(--colorTwo);
  padding: 0 !important;
  margin: auto 1rem;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.slides-items.owl-carousel .owl-nav>button:focus,
.slides-items.owl-carousel .owl-nav>button:hover {
  outline: 0;
  border: 0;
  background-color: transparent;
  color: var(--colorOne);
}
.item-service {
  display: block;
  position: relative;
  z-index: 1;
  height: 300px;
}
.item-service::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  background: #2f3e81;
  display: block;
  left: -10px;
  bottom: -10px;
  z-index: -1;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.item-service:hover::before {
  bottom: 0;
  left: 0;
}
.item-service::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--colorTwo);
  top: 0;
  left: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  opacity: .5;
}
.item-service:hover::after {
  opacity: .9;
}
.item-service .img-service {
  height: 100%;
}
.item-service .img-service img {
  object-fit: cover;
  height: 100%;
}
.item-service .title-service {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.item-service .title-service:hover {
  color: var(--colorOne);
}
.sec-services.page-box.bg_section_home::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.sec-services.page-box.bg_section_home .section-title strong {
  color: var(--colorTwo) !important;
}
/* //Services */

/* START => Our Partners */
.sec-partner {
  background-color: #fff;
}
.partner-items .slides-partner .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.partner-items .slides-partner .item img {
  max-height: 100%;
  max-width: initial;
  width: auto;
}
.slides-partner.owl-theme .owl-nav [class*=owl-] {
  all: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  opacity: .6;
  cursor: pointer;
}
.slides-partner.owl-theme .owl-nav [class*=owl-]:hover {
  opacity: 1;
  background-color: var(--colorOne);
}
.slides-partner.owl-theme .owl-nav button.owl-prev {
  left: 0;
}
.slides-partner.owl-theme .owl-nav button.owl-next {
  right: 0;
}
/* //END => Our Partners */

/* START => Footer */
footer {
  background: rgb(37,92,172);
  background: -moz-linear-gradient(315deg, rgba(37,92,172,1) 0%, rgba(19,46,86,1) 100%);
  background: -webkit-linear-gradient(315deg, rgba(37,92,172,1) 0%, rgba(19,46,86,1) 100%);
  background: linear-gradient(315deg, rgba(37,92,172,1) 0%, rgba(19,46,86,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#255cac",endColorstr="#132e56",GradientType=1);
  color: #fff;
}
.wedget-footer .title {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 500;
}
.wedget-footer ul {}
.wedget-footer ul li {}
.wedget-footer ul li a {
  color: #C5C5C5;
  display: block;
  padding: .5rem;
  font-size: 14px;
}
.wedget-footer ul li a:hover {
  color: #fff;
}
.social-footer a {
  color: #C5C5C5;
  padding: .5rem;
}
.social-footer a:hover {
  color: #fff;
}
.wedget-footer .contact-info-footer li {
  margin-bottom: .6rem;
}
.wedget-footer .contact-info-footer li.address {
  font-size: 14px;
}
.wedget-footer .contact-info-footer li a {
  padding: .4rem 0;
}
.wedget-footer .contact-info-footer li i {
  width: 30px;
}
.copyrights {
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  padding: 1rem;
}
.copyrights p {
  color: #444;
  font-size: 14px;
}
.copyrights a {
  font-weight: bold;
  color: #444;
}
.copyrights a:hover {
  color: orange;
}
/* //END => Footer */

/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/

.banner-pages {
  padding: 60px 0 30px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.banner-pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.banner-pages strong {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.banner-pages p {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.banner-pages ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
.banner-pages ul li {
  color: #fff;
  font-weight: 500;
}
.banner-pages ul li span {
  color: #fff;
  margin: auto 5px;
}
.banner-pages ul li a {
  color: #ccc;
}
.banner-pages ul li a:hover {
  color: var(--colorTwo);
}


/* */
.item-product {}
.item-product .item-img {
  display: block;
  height: 220px;
  overflow: hidden;
}
.item-product .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.item-product:hover .item-img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.item-product .item-details {
  padding: 1.5rem .5rem;
  padding-left: 2rem;
  position: relative;
}
.item-product .item-details::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  background-color: var(--colorTwo);
  width: 20px;
  height: 3px;
}
.item-product .item-details .item-title {
  color: var(--colorOne);
  font-weight: 700;
}
.item-product .item-details .item-title:hover {
  color: var(--colorTwo);
}
.item-product .item-details p {
  font-size: 12px;
  font-weight: 500;
}
/* */

/* Page Contact Us */
.page-contact {
  overflow: hidden;
}

.title-contact {
  color: #444;
  display: block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.info-contact p {
  color: #444;
}
.info-contact p i {
  width: 25px;
}
.page-contact .social-head {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-contact .social-head a {
  color: var(--colorOne);
}
.page-contact .social-head a:hover {
  color: var(--colorTwo);
}
.title-contact {}
.form-contact {}
.form-contact .form-control {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 1rem;
  background-color: var(--colorOne);
  color: #fff;
}
.form-contact .form-control:focus {
  box-shadow: unset;
  border-color: var(--colorTwo);
}
.form-contact textarea.form-control {
  min-height: 200px;
}
.btn-contact {
  margin: auto;
  display: block;
  background-color: var(--colorOne);
  color: #fff;
  border: 0;
  outline: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 1.2rem;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.btn-contact:hover {
  background-color: var(--colorTwo);
}

.map-google iframe {
  width: 100% !important;
  height: 300px !important;
}

/* //Page Contact Us */