/* START Global Style */

:root {
  --blueColor: #03a9f4;
  --orangeColor: #FF9800;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 25px;
  letter-spacing: 1.5px;
}

a,
a:hover {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.clearfix {
  clear: both;
}

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

/* Pulse Effect Animate Border */
/* .pulse-effect {
  display: block;
  width: 100px !important;
  height: 100px !important;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: var(--blueColor);
  background: #fff;
  animation: shadow-pulse 1s infinite;
  font-size: 2rem;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
  }
} */

.a-container {
  width: 100%;
  padding: 0 30px;
  margin: auto;
  display: block;
}

.overflow-h {
  overflow: hidden;
}

.bg-sections {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  width: 100%;
  height: 100%;
  position: relative;
}

.hide {
  display: none;
}

.wrapper > section {
  overflow: hidden;
}


/* START => Loaders */
.loaders {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
}
.content-loaders {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sk-chase {
  width: 40px;
  height: 40px;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; 
  animation: sk-chase-dot 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--blueColor);
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4); 
  } 100%, 0% {
    transform: scale(1.0); 
  } 
}
/* //END => Loaders */


/********************************************************

        ********* //END => Global Style **********

******************************************************* /


/* START Header */
header {
  position: absolute;
  z-index: 9;
  width: 100%;
  padding-top: 10px;
}
.logo img {
  width: 100px;
}
nav > ul > li > a {
  padding: 5px 10px;
  color: #fff;
  font: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
nav > ul > li > a:hover {
  color: var(--orangeColor);
}

.langs {
  color: var(--blueColor);
  background-color: #fff;
  padding: 7px 8px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.langs:hover {
  color: #fff;
  background-color: var(--orangeColor);
}

/* .toggle-dropdown {
  position: relative;
  padding-right: 5px;
}
.toggle-dropdown::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  position: relative;
  top: 3px;
} */
/* 
.dropdown-m {
  position: absolute;
  top: 50px;
  right: 0;
  width: 90%;
  margin: auto;
  margin-right: 10px;
  display: block;
  background-color: var(--blueColor);
  padding: 20px;
  z-index: 2;
  display: none;
}
.dropdown-m::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 400px;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid transparent;
  border-bottom: 15px solid var(--blueColor);
}
.dropdown-m ul {
  display: flex;
  flex-flow: wrap;
}
.dropdown-m ul li {
  width: calc(100% / 5);
  position: relative;
}
.dropdown-m ul li a {
  padding: 10px 5px;
  display: inline-block;
  text-transform: capitalize;
  color: #fff;
  font-weight: 100;
  letter-spacing: 1px;
  display: block;
}
.dropdown-m ul li a:hover {
  background-color: #fff;
  color: var(--blueColor);
}
.dropdown-m ul li a::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  position: relative;
  top: 0px;
  margin-right: 5px;
}
.dropdown-m ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 80%;
  border: 0.3px dashed #888;
}
.dropdown-m ul li a:hover::after {
  border-color: #fff;
} */

/* //END => Header */

/* START Home Sliders */
.main--slider {
  position: relative;
}

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

.item-slide img {
  width: 100%;
  height: 100vh;
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -moz-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -ms-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.item-slide .caption {
    position: absolute;
    top: 70%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background-color: #0000008f;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}
.item-slide .caption h3 {
  color: #fff;
}
.item-slide .caption p {
  color: #fff;
}

.item-slide.slick-slide {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -moz-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -ms-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);

  position: relative;
  height: 100%;
  z-index: 1;
}
.item-slide.slick-slide.slick-current.slick-active img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  animation: zoomImg 8s 1 ease-in-out;
  -webkit-animation: zoomImg 8s 1 ease-in-out;
}
@keyframes zoomImg {
  from {
    transform: scale(1) translate(0px);
    -webkit-transform: scale(1) translate(0px);
    -moz-transform: scale(1) translate(0px);
    -ms-transform: scale(1) translate(0px);
    -o-transform: scale(1) translate(0px);
  }
  to {
    transform: scale(1.3) translate(0px);
    -webkit-transform: scale(1.3) translate(0px);
    -moz-transform: scale(1.3) translate(0px);
    -ms-transform: scale(1.3) translate(0px);
    -o-transform: scale(1.3) translate(0px);
  }
}

.slick-arrow {
  font-size: initial;
  color: #fff;
  z-index: 1;
}
.slick-prev {
  left: 50px;
}
.slick-next {
  right: 50px;
}
.slick-arrow:hover,
.slick-arrow:focus {
  color: var(--orangeColor);
}

.slick-prev:before,
.slick-next:before {
  content: unset;
}
/* //END => Home Sliders */

/* START => About Us */
.sec--about {
  position: relative;
  z-index: 1;
}
.sec--about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.sec--about .img-about img {
  width: 100%;
  max-height: 320px;
}
.sec--about .txt__about h4 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #444;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.sec--about .txt__about h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--orangeColor);
  transition: 0.5s;
}
.sec--about .txt__about:hover h4::after {
  width: 100%;
}
.sec--about .txt__about p {
  color: #555;
  letter-spacing: 1px;
}
/* //END => About Us */

/* START => Services */
.sec--services {
  position: relative;
  z-index: 1;
}
.sec--services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.sec-dark {
  color: #333;
}
.sec-dark h2 {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sec-dark p {
  font-size: 16px;
  letter-spacing: 1px;
}
.item-service {
  margin-bottom: 20px;
}
.item-service .img-services {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-service .img-services img {
  -ms-hyphenate-limit-zone: 450px;
  width: 100px;
  height: 100px;
  display: block;
  margin: auto;
  object-fit: fill;
  transition: 0.5s;
}
.item-service:hover .img-services img {
  transform: scale(1.2) rotate(5deg);
}
.item-service .txt-services {
  background-color: #fff;
  position: relative;
  text-align: center;
}
a.title {
  font-weight: bold;
  font-size: 20px;
  color: #333;
  letter-spacing: 1px;
  line-height: 30px;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  min-height: 36px;
  max-height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.title:hover {
  color: var(--blueColor);
}
.item-news .txt-news a.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--orangeColor);
  transition: 0.5s;
}
.item-news:hover .txt-news:hover a.title::after,
.item-service .txt-services:hover a.title::after {
  width: 100%;
}
.item-service .txt-services p {
  font-weight: 300;
  color: #333;
  font-size: 14px;
  letter-spacing: 1px;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-service .txt-services a.read-more {
}
a.read-more {
  color: var(--blueColor);
  font-size: 14px;
  font-weight: 500;
}
a.read-more:hover i {
  margin-left: 1.5rem !important;
}
a.read-more:hover {
  color: var(--orangeColor);
}
a.more-plus {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--blueColor);
  color: #fff;
  padding: 20px;
  border-radius: 100px 10px 0;
  transition: 0.5s;
}
a.read-more i,
.item-news .txt-news a.more-plus i,
.item-service .txt-services a.more-plus i {
  transition: 0.5s;
}
.item-news .txt-news:hover a.more-plus i,
.item-service .txt-services:hover a.more-plus i {
  transform: scale(1.5) rotate(360deg);
}
/* //END => Services */

/* START => News */
.item-news {
}
.item-news .img-news img {
  width: 100%;
  height: 250px;
}
.item-news .txt-news {
  background-color: #fff;
}
.item-news .txt-news span.date {
  display: block;
  color: #666;
  margin-bottom: 5px;
}
/* //END => News */

/* START => Partner */
.sec--partner {
}
.sec--partner .item-partner {
  margin: auto 5px;
}
.sec--partner .item-partner img {
  display: block;
  width: 100%;
  height: 110px;
}
/* //END => Partner */

/* START => Footer */
footer {
  position: relative;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
footer .wedget-footer.logo img {
  margin: auto;
  display: block;
}
footer .wedget-footer h5 {
  color: #333;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
footer .wedget-footer ul li a {
  letter-spacing: 1px;
  color: #444;
}
.contact-footer a:hover,
footer .wedget-footer ul li a:hover {
  color: var(--orangeColor);
}
.contact-footer a {
  color: #444;
}
.contact-footer p {
  margin: auto;
  margin-bottom: 10px;
}
.contact-footer p i {
  width: 2em;
  text-align: center;
}

.copyrights {
  background-color: var(--blueColor);
  color: #fff;
  padding: 15px 0;
}
.copyrights a {
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}
/* //END => Footer */

/*

***************************************************************************************
***************************************************************************************

===================================  SRTAT Pages ======================================

***************************************************************************************
***************************************************************************************

*/

/* Start => Breadcrumb */
.breadcrump {
  padding: 151px 0 50px 0;

  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100%;

  border-bottom: 5px solid var(--blueColor);

  overflow: hidden;
  position: relative;
  z-index: 1;
}
.breadcrump::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 46, 68, 0.6);
  z-index: -1;
}
.breadcrump h2 {
  margin: auto;
  font-weight: bold;
  line-height: 2;
  color: #fefcff;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 10px #ddd;
}
/* //END => Breadcrumb */

/* START => Page => Products */
.page-products .item-news {
  position: relative;
  box-shadow: 0 5px 15px rgba(221, 221, 221, 0.53);
}

.paginations li {
  margin: auto 5px;
}

.paginations li a {
  background-color: var(--blueColor);
  color: #fff;
  padding: 5px 15px;
  display: block;
  border-radius: 4px;
}

.paginations li a.active,
.paginations li a:hover,
.paginations li a:focus {
  background-color: var(--orangeColor);
}

/* //END => Page => Products */

/* START => Page => Products Details */
.page-products__details .title {
  border-bottom: 2px solid var(--orangeColor);
  padding-bottom: 5px;
  color: var(--orangeColor);
  text-transform: capitalize;
}
.page-products__details .detail p {
  font-size: 1rem !important;
  font-weight: 300 !important;
}
.slides-products-details {
  padding: 10px 50px 0 0;
}
.slides-products-details .slides-for.slick-slider .slick-slide img {
  border: 1px solid #ddd;
  width: 100%;
  max-height: 100%;
}
.slides-products-details .slides-nav {
  margin-top: 10px;
}
.slides-products-details .slides-nav.slick-slider .slick-slide {
  border: 1px solid #ddd;
  margin: auto 5px;
}
.slides-products-details .slides-nav.slick-slider .slick-slide:hover,
.slides-products-details .slides-nav.slick-slider .slick-slide:focus,
.slides-products-details .slides-nav.slick-slider .slick-slide.slick-current.slick-active {
  outline: none;
  border: 1px solid var(--orangeColor);
}
.slides-products-details .slides-nav.slick-slider .slick-slide img {
  height: auto;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
}
.slides-products-details .slides-nav .slick-arrow {
  color: var(--blueColor);
  opacity: .5;
}
.slides-products-details .slides-nav .slick-arrow:hover {
  color: var(--orangeColor);
  opacity: 1;
}
.page-products__details .sidebar {
  height: 100%;
  background-color: #fbfbfb;
}
.page-products__details .sidebar .title__sidebar {
  background-color: var(--orangeColor);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.page-products__details .sidebar .sidebar__items {
  padding: 0 10px;
}
.page-products__details .sidebar .item {
  margin-bottom: 10px;
}
.page-products__details .sidebar .item .img__sidebar {
  border: 1px solid #ddd;
  margin-right: 5px;
}
.page-products__details .sidebar .item .img__sidebar img {
  min-height: 60px;
  max-height: 60px;
  min-width: 80px;
  max-width: 80px;
}
.page-products__details .sidebar .item a {
  font-size: .8rem;
  text-transform: capitalize;
  line-height: 1.5em;
  display: block;
  color: #666;
  font-weight: 400;
}
.page-products__details .sidebar .item a:hover {
  color: var(--orangeColor);
}
/* //END => Page => Products Details */

/* START => Page => Services Details */
.page-services-details .detail h3 {
  font-weight: bold;
  color: #666;
  text-transform: capitalize;
}
.page-services-details .detail p {
  font-size: 1rem !important;
  font-weight: 300 !important;
}
.img__service img {
  min-height: 300px;
}

/* //END => Page => Services Details */


/* START => Page => Contact Us */

.map_contact {

}
.map_contact iframe {
  width: 100% !important;
  height: 300px !important;
}
.contact-form.default-form {
  background: transparent;
}

.contact-section {
  position: relative;
  padding: 120px 0px 70px;
}

.contact-section .column {
  position: relative;
  margin-bottom: 30px;
}

.contact-section h2 {
  font-size: 30px;
  color: #666;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 30px;
}

.contact-section .contact-form .form-group {
  margin-bottom: 20px;
}

.contact-section .column .inner-box {
  position: relative;
  padding-left: 20px;
}

.contact-section .column .inner-box .text {
  font-size: 16px;
  line-height: 27px;
  color: #555;
  margin-bottom: 30px;
}

.contact-section .contact-info {
  position: relative;
  margin-bottom: 40px;
}

.contact-section .contact-info li {
  position: relative;
  padding-left: 90px;
  margin-bottom: 35px;
  line-height: 24px;
  color: #666;
  padding-top: 5px;
  font-size: 13px;
}

.contact-section .contact-info li h3 {
  color: #666;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}

.contact-section .contact-info li .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  line-height: 56px;
  font-size: 24px;
  color: var(--orangeColor);
  border: 1px solid #ccc;
}

.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form select,
.default-form textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 52px !important;
  font-size: 14px;
  line-height: 26px;
  border: 1px solid #e0e0e0;
  padding: 12px 25px !important;
  border-radius: 2px;
}

.contact-section .contact-form .form-group textarea {
  height: 200px !important;
  resize: none;
}

.default-form input:focus,
.default-form select:focus,
.default-form textarea:focus {
  border-color: var(--orangeColor);
  box-shadow: unset;
  outline: none;
}


.social-footer {
  margin-top: 40px;
}

.social-footer li {
  display: inline-block;
}

.social-footer li i {
  color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.fa-facebook-f {
  background-color: #3b5998
}

.fa-twitter {
  background-color: #55acee
}

.fa-google-plus-g {
  background-color: #dd4b39
}

.fa-instagram {
  background-color: #e95950
}

.fa-whatsapp {
  background-color: #4dc247
}

.fa-linkedin-in {
  background-color: #007bb5
}

.fa-youtube {
  background-color: #e95950
}



.btn-primary {
  background-color: var(--blueColor);
  border-color: var(--blueColor);
  transition: .5s;
}
.btn-primary:focus,
.btn-primary:hover {
  background-color: var(--orangeColor);
  border-color: var(--orangeColor);
  outline: none;
}
/* //END => Page => Contact Us */