html, body {
  height: 100%;
}
body {
  background: #fff none repeat scroll 0 0;
  color: #000;  
  text-align: left;
  overflow-x: hidden;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight:350;
  font-style: normal;
  font-size:16px;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

a:focus {
  outline: 0px solid;
}

img {
  max-width: 100%;
  height: auto;
}

.fix {
  overflow: hidden;
}


a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

a:hover {
  color: #3EC1D5;
  text-decoration: none;
}

a:active, a:hover {
  outline: 0 none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 120px;
  bottom: 15px;
  z-index: 996;
  background: #2e98e1;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
  right: 35px;
  bottom: 100px;
  border-radius: 50%;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #60ccdc;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.clear {
  clear: both;
}

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

input, select, textarea, input[type="text"], input[type="date"], input[type="url"], input[type="email"], input[type="password"], input[type="tel"], button, button[type="submit"] {
  -moz-appearance: none;
  box-shadow: none !important;
}

div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.gif") no-repeat center center;
}

::-moz-selection {
  background: #3EC1D5;
  text-shadow: none;
}

::selection {
  background: #3EC1D5;
  text-shadow: none;
}

.area-padding {
  padding: 70px 0px 80px;
}

.area-padding-2 {
  padding: 70px 0px 50px;
}

.padding-2 {
  padding-bottom: 90px;
}

.section-headline h2 {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 70px;
  position: relative;
  text-transform: capitalize;
}

.section-headline h2::after {
  border: 1px solid #333;
  bottom: -20px;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 40%;
}

.sec-head {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0 0 10px;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/



#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: bold;
}

#header .logo h1 span {
  color: #3ec1d5;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}



@media (max-width: 768px) {
  #header {
    height: 100px;
    
  }
  #header .logo h1 {
    font-size: 28px;
  }
}

.header-bg {
  background: url(../img/background/page-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 120px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1025px) {
  .header-bg {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  text-align:right;
  margin-right:50px;
}

.navbar li {
  position: relative;
}


.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}



.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 250px;
}
 
.navbar .dropdown ul a i {
  font-size: 12px;
}


.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 2, 2, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #0d2529;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #3ec1d5;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #3ec1d5;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}

#hero p {
  width: 80%;
  font-size: 38px;
  line-height: 1.2;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero p {
    font-size: 28px;
    line-height: 1.2;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #3ec1d5;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #3ec1d5;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-area {
  background-color: #f9f9f9;
}

.single-well > a {
  display: block;
}

.single-well ul li {
  color: #444;
  display: block;
  padding: 5px 0;
}

.single-well ul li i {
  color: #3EC1D5;
  margin-right: 5px;
  font-size: 18px;
}

.single-well p {
  color: #444;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-icon {
  color: #444;
  display: inline-block;
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 20px;
}

.section-headline.services-head > h2 {
  margin-bottom: 25px;
}

.services-details {
  padding-top: 40px;
  transition: all 0.5s ease 0s;
}

.services-details:hover h4, .services-details:hover .services-icon {
  color: #3EC1D5;
}

.row.second-row {
  margin-top: 40px;
}

.section-head > h2 {
  color: #333;
}

.single-services > h4 {
  color: #444;
  font-size: 24px;
  font-weight: 500;
}

.single-services > p {
  color: #333;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-member {
  background: rgba(0, 0, 0, 0.65) none repeat scroll 0 0;
  display: block;
  margin-right: -15px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  background: rgba(0, 0, 0, 0) url("../img/team/team01.jpg") repeat scroll 0 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin-right: -15px;
  padding: 10px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  transition: 5s;
  transform: scale(1);
}

.team-member:hover.team-member::before {
  transform: scale(1.2);
}

.single-team-member {
  border: 1px solid #ddd;
}

.team-left-text h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-left-text p {
  color: #fff;
  font-size: 17px;
  line-height: 26px;
}

.email-news {
  display: block;
  margin: 30px 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.email-news .email_button input {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #fff;
  color: #fff;
  float: left;
  font-size: 13px;
  padding: 8px;
  width: 81%;
}

.email-news .email_button > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #fff;
  color: #fff;
  float: left;
  font-size: 16px;
  padding: 8px 12px;
  text-align: center;
}

.email-news .email_button > button:hover {
  background: #3EC1D5;
  border: 1px solid #fff;
  color: #fff;
}

.team-left-icon ul li {
  display: inline-block;
}

.team-left-icon ul li a:hover {
  color: #3EC1D5;
  background: #fff;
  border: 2px solid #fff;
}

.team-left-icon ul li a {
  border: 2px solid #fff;
  color: #fff;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 37px;
  margin: 0 3px;
  width: 40px;
}

.team-member-carousel .single-team-member {
  overflow: hidden;
  width: 100%;
}

.single-team-member:hover .team-img a:after {
  opacity: 1;
}

.single-team-member:hover .team-social-icon {
  top: 45%;
  opacity: 1;
}

.team-img {
  position: relative;
}

.team-img > a {
  display: block;
}

.team-img > a::after {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transition: all 0.5s ease 0s;
  width: 100%;
  opacity: 0;
}

.team-social-icon {
  left: 50%;
  margin-left: -61px;
  opacity: 0;
  position: absolute;
  top: 30%;
  transition: 1.3s;
}

.team-social-icon ul li {
  display: inline-block;
}

.team-social-icon ul li a {
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 34px;
  width: 34px;
  margin: 0 3px;
}

.team-social-icon ul li a i {
  line-height: 0;
}

.team-social-icon ul li a:hover {
  color: #fff;
  border: 1px solid #3EC1D5;
  background: #3EC1D5;
}

 

.head-team h4 {
  display: inline-block;
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 10px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Review
--------------------------------------------------------------*/
.reviews-area {
  background: url(../img/background/reviews-bg.jpg);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  width: 100%;
  height: auto;
  position: relative;
}

.work-left-text {
  background: #3EC1D5 none repeat scroll 0 0;
}

.work-right-text {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
}

.work-right-text h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
}

.work-right-text h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}

.work-right-text .sus-btn {
  margin-left: 0;
  margin-top: 20px;
}

.single-awesome-4 {
  display: block;
  float: left;
  overflow: hidden;
  width: 33.33%;
}

.single-awesome-4 .add-actions {
  padding: 10px 20px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.pst-content {
  padding-left: 10px;
}

#portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 8px 24px;
  font-size: 12px;
  line-height: 20px;
  color: #555;
  border-radius: 50px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #444;
}

#portfolio-flters li:hover, #portfolio-flters li.filter-active {
  border-color: #3EC1D5;
  background: #3EC1D5;
  color: #fff;
}

#portfolio-flters li:last-child {
  margin-right: 0;
}

.single-awesome-portfolio {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 25%;
  position: relative;
}

.single-awesome-project {
  overflow: hidden;
  margin-bottom: 30px;
}

 

.awesome-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.awesome-img > a {
  display: block;
  position: relative;
}

.single-awesome-project:hover .awesome-img > a::after {
  opacity: 1;
}

.single-awesome-project:hover .add-actions {
  opacity: 1;
  bottom: 0;
}

.awesome-img > a::after {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: 0.4s;
}

.add-actions {
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  bottom: 30px;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 10px 15px;
  position: absolute;
  transition: all 0.4s ease 0s;
  width: 100%;
}

.project-dec {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec a {
  display: block;
  height: 100%;
  width: 100%;
}

.project-dec h4 {
  margin-bottom: 5px;
}

.project-dec h4:hover {
  color: #fff;
}

.project-dec h4 {
  color: #ddd;
  font-size: 24px;
  margin-top: -45px;
  padding-top: 50%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}

.project-dec span {
  color: #ddd;
  font-size: 13px;
}

.project-action-btn {
  display: block;
  height: 100%;
  text-align: center;
  transition: all 1s ease 0s;
  width: 100%;
}

.project-action-btn li {
  display: block;
  height: 100%;
  width: 100%;
}

.project-action-btn li a {
  display: block;
  height: 100%;
  width: 100%;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing-area {
  background: rgba(0, 0, 0, 0.02) none repeat scroll 0 0;
}

.pri_table_list {
  border: 1px solid #ccc;
  text-align: center;
  transition: all 0.4s ease 0s;
  background: #fff;
}

.pri_table_list h3 span {
  font-size: 16px;
}

.pri_table_list ol li {
  border-bottom: 1px solid #ccc;
  color: #666;
  padding: 12px 15px;
  position: relative;
  display: flex;
  align-items: center;
}

.pri_table_list li.check {
  font-weight: 600;
}

.pri_table_list li.check i {
  color: #3EC1D5;
  line-height: 0;
  font-size: 24px;
  margin-right: 5px;
}

.pri_table_list li.cross {
  text-decoration: line-through;
  color: #999;
}

.pri_table_list li.cross i {
  color: #999;
  line-height: 0;
  font-size: 24px;
  margin-right: 5px;
}

.pri_table_list button {
  background: #444 none repeat scroll 0 0;
  border: 1px solid #444;
  color: #fff;
  margin-bottom: 25px;
  padding: 10px 35px;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  border-radius: 30px;
}

.pri_table_list > h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
  padding: 30px 0 20px;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

.pri_table_list ol {
  list-style: outside none none;
  margin: 0;
  padding: 0 0 25px;
}

.pri_table_list.active {
  transition: all 0.4s ease 0s;
  position: relative;
  overflow: hidden;
}

.saleon {
  background: #3EC1D5 none repeat scroll 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  left: -26px;
  padding: 2px 25px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

.pri_table_list > button:hover {
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
}

.active > h3 {
  background: #f5f5f5 none repeat scroll 0 0;
  color: #333;
  transition: all 0.4s ease 0s;
}

.active > button {
  background: #3EC1D5 none repeat scroll 0 0;
  border: 1px solid #3EC1D5;
  color: #fff;
  transition: 0.4s;
}

.active > button:hover {
  background: #333 none repeat scroll 0 0;
  border: 1px solid #333;
  color: #fff;
  transition: 0.4s;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
 padding-top: 20px;
 padding-bottom: 20px;
  /*
  background: url("../img/background/slider-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  */
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
}

 .testimonial-item {
  text-align: center;
  color: #000;
  padding-left:10px;
  padding-right:10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item .cust-name {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
  font-style:italic;
   text-align: center;
}

.testimonials .testimonial-item .cust-shop {
  font-size: 14px;
  color: #00;
  margin: 0 0 1px 0;
  font-style:italic;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p { 
  margin: 0 auto 1px auto;
  color: #000; 
  text-align: center;
  font-size:14px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3ec1d5;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 90%;
  }
}

/*--------------------------------------------------------------
# Quote
--------------------------------------------------------------*/
.suscribe-area {
  background: #3EC1D5 none repeat scroll 0 0;
  padding: 30px 0;
}

.suscribe-text {
  display: block;
  padding: 10px 0;
}

.suscribe-text h3 {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sus-btn {
  background: #fff none repeat scroll 0 0;
  border: 2px solid #fff;
  color: #3EC1D5;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-left: 100px;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 30px;
}

.sus-btn:hover {
  background: #3EC1D5 none repeat scroll 0 0;
  border: 2px solid #fff;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-area {
  height: auto;
  width: 100%;
}

.contact-content {
  padding: 100px;
  background: #000 none repeat scroll 0 0;
}

.contact-content-right {
  padding: 100px;
}

.single-icon i {
  font-size: 32px;
  width: 50px;
  height: 50px;
  line-height: 56px;
  border-radius: 50%;
  margin-bottom: 30px;
  color: #3ec1d5;
}

.single-icon p {
  font-size: 16px;
  line-height: 30px;
}

.contact-icon {
  margin-bottom: 40px;
}

#google-map {
  height: 370px;
  margin-bottom: 20px;
}

.php-email-form .validate {
  display: none;
  color: red;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.php-email-form input, .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.php-email-form input:focus, .php-email-form textarea:focus {
  border-color: #3ec1d5;
}

.php-email-form input {
  padding: 10px 15px;
}

.php-email-form textarea {
  padding: 12px 15px;
}

.php-email-form button[type="submit"] {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #ccc;
  color: #444;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  border-radius: 30px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-area {
  height: auto;
  width: 100%;
}

.blog-text h4 a {
  color: #444;
  text-decoration: none;
}

.blog-text h4 {
  color: #444;
  margin-bottom: 15px;
}

.blog-btn {
  border-bottom: 1px dotted #444;
  color: #444;
  text-decoration: none;
}

.blog-btn {
  border-bottom: 1px dotted #444;
  color: #444;
  display: inline-block;
  padding: 0 1px 5px 0;
  position: relative;
  text-decoration: none;
}

.blog-btn {
  position: relative;
}

.blog-btn::after {
  content: "\f178";
  font-family: fontawesome;
  position: absolute;
  right: -20px;
  top: 1px;
  transition: all 0.3s ease 0s;
}

.blog-btn:hover::after {
  right: -30px;
}

.blog-btn:hover {
  color: #333;
  text-decoration: none;
}

.blog_meta span.date_type i {
  margin-left: 5px;
}

.blog-meta span.comments-type {
  margin-left: 5px;
}

.blog-meta span i {
  padding-right: 10px;
}

.blog-content .blog-meta {
  border-bottom: 1px dotted #333;
}

.blog-meta {
  border-bottom: 1px dotted #fff;
  padding: 10px 0;
}

.comments-type > a, .date-type, .blog-meta span.comments-type {
  color: #333;
  letter-spacing: 1px;
  margin-right: 5px;
}

.blog-meta .comments-type i {
  padding-right: 0 !important;
}

.blog-content-right .comments-type > a, .blog-content-right .date-type, .blog-content-right .blog-meta span.comments-type, .blog-content-right .blog-text p {
  color: #fff;
  letter-spacing: 1px;
}

.single-blog .ready-btn {
  border: 1px solid #444;
  border-radius: 30px;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

.single-blog .ready-btn:hover {
  border: 1px solid #3EC1D5;
  color: #fff;
}

/*--------------------------------------------------------------
# Blog page
--------------------------------------------------------------*/
.page-area {
  position: relative;
}

.blog-page .banner-box {
  margin-bottom: 40px;
}

.search-option input {
  border: medium none;
  padding: 6px 15px;
  width: 80%;
}

.search-option {
  border: 1px solid #ccc;
  height: 42px;
  margin-bottom: 30px;
}

.search-option button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  font-size: 20px;
  padding: 8px 23px;
}

.search-option button:hover {
  color: #3ec1d5;
}

.left-blog h4 {
  border-bottom: 1px solid #ddd;
  color: #444;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 15px 10px;
  text-transform: uppercase;
}

.left-blog {
  background: #f9f9f9 none repeat scroll 0 0;
  margin-bottom: 30px;
  overflow: hidden;
  padding-bottom: 20px;
}

.left-blog li {
  border-bottom: 1px solid #ddd;
  display: block;
}

.left-blog ul li a {
  color: #444;
  display: block;
  font-size: 14px;
  padding: 10px;
  text-transform: capitalize;
}

.recent-single-post {
  border-bottom: 1px solid #ddd;
  display: block;
  overflow: hidden;
  padding: 15px 10px;
}

.ready-btn {
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  padding: 12px 40px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  z-index: 222;
}

.ready-btn:hover {
  color: #fff;
  background: #3EC1D5;
  border: 1px solid #3EC1D5;
  text-decoration: none;
}

.post-img {
  display: inline-block;
  float: left;
  padding: 0 5px;
  width: 35%;
}

.pst-content {
  display: inline-block;
  float: left;
  width: 65%;
}

.pst-content p a:hover, .left-blog ul li a:hover {
  color: #3EC1D5;
}

.blog-page .single-blog {
  margin-bottom: 40px;
}

.pst-content p a {
  color: #444;
  font-size: 15px;
}

.header-bottom h1, .header-bottom h2 {
  color: #fff;
}

.blog-tags {
  padding: 1px 0;
}

.left-blog li:last-child {
  border-bottom: 0;
}

.popular-tag.left-blog ul li a:hover {
  color: #fff;
}

.popular-tag.left-side-tags.left-blog ul {
  padding: 0 10px;
}

.blog-1 .banner-box {
  margin-bottom: 30px;
}

.left-tags .left-side-tags ul li {
  border-bottom: 0;
}

.left-tags .left-side-tags ul li a {
  padding: 3px 10px;
  width: auto;
}

.left-side-tags h4 {
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.post-information h2 {
  color: #363636;
  font-size: 22px;
  text-transform: uppercase;
}

.post-information {
  padding: 20px 0;
}

.post-information .entry-meta span a {
  color: #444;
  display: inline-block;
  padding: 10px 0;
}

.entry-meta span a:hover {
  color: #3EC1D5;
}

.post-information .entry-meta {
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

.post-information .entry-meta span i {
  padding: 0 10px;
}

.entry-content > p {
  color: #444;
}

.entry-meta > span {
  color: #444;
}

.entry-content blockquote {
  background: #fff none repeat scroll 0 0;
  border-left: 5px solid #3EC1D5;
  font-size: 17.5px;
  font-style: italic;
  margin: 0 0 20px 40px;
  padding: 22px 20px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: #3EC1D5;
  border-color: #3EC1D5;
  color: #fff;
  cursor: default;
  z-index: 3;
}

.social-sharing {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #ccc;
  display: block;
  margin: 30px 0;
}

.social-sharing > h3 {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 20px 10px;
}

.sharing-icon {
  display: inline-block;
  float: right;
  padding: 13px 10px;
}

.sharing-icon a {
  border: 1px solid #444;
  color: #444;
  display: block;
  float: left;
  font-size: 18px;
  height: 34px;
  line-height: 30px;
  margin-left: 10px;
  text-align: center;
  width: 34px;
}

.sharing-icon a:hover {
  color: #3EC1D5;
  border: 1px solid #3EC1D5;
}

.single-blog .author-avatar {
  float: left;
  margin-right: 10px;
}

.single-blog .author-description h2 {
  font-size: 18px;
  margin: 0;
  padding: 0 0 5px;
}

.author-info {
  background: #fff none repeat scroll 0 0;
  float: left;
  margin: 30px 0;
  padding: 15px;
  width: 100%;
}

.single-post-comments {
  margin-bottom: 60px;
  max-width: 650px;
}

.comments-heading h3, h3.comment-reply-title {
  border-bottom: 1px solid #e8e8e9;
  color: #444;
  font-size: 18px;
  margin: 0 0 20px;
  padding: 0 0 5px;
  text-transform: uppercase;
}

.comments-list ul li {
  margin-bottom: 25px;
}

.comments-list-img {
  float: left;
  margin-right: 15px;
}

.comments-content-wrap {
  color: #42414f;
  font-size: 12px;
  line-height: 1;
  margin: 0 0 15px 80px;
  padding: 10px;
  position: relative;
}

.author-avatar {
  display: inline-block;
  float: left;
  width: 10%;
}

.author-description h2 {
  color: #777;
  font-size: 20px;
  text-transform: uppercase;
}

.author-description h2 a {
  color: #000;
}

.comments-content-wrap span b {
  margin-right: 5px;
}

span.post-time {
  margin-right: 5px;
}

.comments-content-wrap p {
  color: #909295;
  line-height: 18px;
  margin-bottom: 5px;
  margin-top: 15px;
}

li.threaded-comments {
  margin-left: 50px;
}

.comment-respond {
  margin-top: 60px;
}

span.email-notes {
  color: #42414f;
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}

.comment-respond p {
  color: #444;
  margin-bottom: 5px;
}

.comment-respond input[type=text], .comment-respond input[type=email] {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  height: 32px;
  margin-bottom: 15px;
  padding: 0 0 0 10px;
  width: 100%;
}

.comment-respond textarea#message-box {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  max-width: 100%;
  padding: 10px;
  height: 130px;
  width: 100%;
}

.comment-respond input[type="submit"] {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #3ec1d5;
  border-radius: 20px;
  box-shadow: none;
  color: #444;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 14px;
  margin-top: 20px;
  padding: 10px 15px;
  text-shadow: none;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

.comments-content-wrap span a {
  color: #000;
}

.comments-content-wrap span a:hover {
  color: #3EC1D5;
}

.comment-respond input[type=submit]:hover {
  border: 1px solid #3EC1D5;
  color: #fff;
  background: #3EC1D5;
}

.single-blog .blog-pagination {
  border-top: 1px solid #e5e5e5;
  margin: 0;
  padding-top: 30px;
}


.popular-tag ul li {
  display: inline-block;
}

.footer-content {
  display: block;
  overflow: hidden;
}



.popular-tag ul li a {
  border: 1px solid #444;
  border-radius: 30px;
  color: #444;
  font-size: 13px;
  display: block;
  font-weight: 600;
  margin: 5px 3px;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.4s ease 0s;
  width: 70px;
}

.footer-area-bottom {
  background: #f1f1f1 none repeat scroll 0 0;
  padding: 15px 0;
}

.copyright-text a:hover {
  text-decoration: underline;
  color: #3EC1D5;
}

.copyright-text a {
  color: #444;
}

.copyright > p {
  margin-bottom: 0;
  color: #444;
}

.copyright a, .credits a {
  color: #3EC1D5;
}

.credits {
  padding-top: 5px;
  text-align: center;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 1920px) {
  .work-right-text {
    padding: 150px 150px;
  }
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1169px) {
  .slider-content {
    padding: 146px 0;
  }
  .work-right-text {
    padding: 40px 0;
  }
  .work-right-text h2 {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
  .layer-1-1 h2 {
    font-size: 24px;
  }
  .layer-1-2 h1 {
    font-size: 31px;
    line-height: 38px;
    padding: 0px 30px;
  }
  .tab-menu ul.nav li a {
    padding: 10px 16px;
  }
  .suscribe-input input {
    width: 60%;
  }
  .suscribe-input button {
    width: 40%;
  }
  .team-content.text-center > h4 {
    font-size: 20px;
  }
  .sus-btn {
    margin-left: 0;
  }
  .suscribe-text h3 {
    font-size: 16px;
    padding-right: 20px;
  }
  .work-right-text h5 {
    font-size: 14px;
    line-height: 22px;
  }
  .work-right-text {
    padding: 36px 0;
  }
  .work-right-text h2 {
    font-size: 14px;
    line-height: 22px;
  }
  .work-right-text .ready-btn {
    font-size: 13px;
    padding: 7px 20px;
    margin-top: 5px;
  }
  .single-awesome-portfolio {
    width: 33.33%;
  }
  .widget-product a img {
    display: block;
    float: none;
    width: 100%;
  }
  .widget-product .product-info {
    display: block;
    float: none;
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .map-column {
    margin-left: 0;
    padding-right: 40px;
  }
  .post-information .entry-meta {
    font-size: 13px;
    padding: 5px 0;
  }
  .post-information .entry-meta span a {
    padding: 4px 0;
  }
  .service-pic {
    margin-bottom: 30px;
    text-align: center;
  }
  .single-add-itms {
    width: 50%;
  }
  .left-sidebar-title > h4 {
    font-size: 18px;
  }
  .contact-form {
    margin-top: 0px;
  }
  .search-option input {
    width: 67%;
  }
}

/* small mobile :320px. */
@media (max-width: 767px) {
  .slider-area {
    margin-top: 60px;
  }
  .slider-content {
    padding: 80px 0;
  }
  .slider-content h2 {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .slider-content h1 {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  .layer-1-3 a.ready-btn {
    padding: 8px 15px;
  }
  .section-headline h2 {
    font-size: 30px;
  }
  .well-middle .single-well {
    margin-top: 30px;
  }
  .single-skill {
    margin-bottom: 40px;
  }
  .tab-menu {
    margin-top: 30px;
  }
  .tab-menu ul.nav li a {
    padding: 8px 6px;
  }
  .wellcome-text {
    margin: 0px;
    padding: 70px 0px;
  }
  .subs-feilds {
    width: 100%;
  }
  .suscribe-input input {
    width: 60%;
  }
  .suscribe-input button {
    font-size: 15px;
    padding: 14px 10px;
    width: 40%;
  }
  .section-headline h3 {
    font-size: 25px;
  }
  .well-text > h2 {
    font-size: 18px;
  }
  .well-text p {
    display: none;
  }
  .single-team-member {
    margin-bottom: 30px;
  }
  .service-right {
    width: 100%;
  }
  .service-images:hover .overly-text {
    display: none;
  }
  .portfolio-area {
    padding-top: 0px;
  }
  .project-menu li a {
    padding: 8px 12px;
    margin: 10px 4px;
  }
  .pri_table_list {
    margin-bottom: 30px;
  }
  .single-awesome-project, .portfolio-2 .single-awesome-project {
    width: 100%;
    float: none;
  }
  .single-blog {
    margin-bottom: 30px;
  }
  .sus-btn {
    margin-left: 0;
    margin-top: 30px;
  }
  .contact-form {
    margin-top: 30px;
  }
  .head-team h5 {
    font-size: 22px;
  }
  .footer-content {
    margin-bottom: 30px;
  }
  .header-bottom h1 {
    font-size: 30px;
    margin-bottom: 0;
  }
  .page-area .slider-content {
    padding: 500px 0;
  }
  .search-option input {
    width: 74%;
  }
  .header-bottom h2 {
    font-size: 20px;
    margin-bottom: 0;
  }
  li.threaded-comments {
    margin-left: 0;
  }
}
 
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {  
  .submitbtn {
    float: none;
    width: 99.8%;
  }
  .icons-bottom ul li a {
    height: 40px;
    line-height: 37px;
    width: 40px;
  }
  .blog-post-dlc ul li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .awesome-portfolio-content .portfolio-2 {
    width: 50%;
  }
  .gallary-details .single-awesome-portfolio {
    width: 50%;
  }
  .tab-menu ul.nav li a {
    padding: 8px 20px;
  } 
	 
}

@media (max-width: 575px) {
  .slider-content {
    padding: 0;
  }
}

/*custom */
.header-main__top {
  width: 100%;
  clear: both;
  float: left;
  padding: 20px 0 5px;
  height:30px;
}
.header .search {
  float: right;
  position: relative;
  width: 320px;
}
.navigation {
  float: right;
  margin-left: 20px;
}

.header .search-input {
  width: 100%;
  height: 34px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0 39px 0 10px;
  box-sizing: border-box;
  color: #666;
}
.header .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 34px;
  width: 34px;
  background: transparent;
  padding: 5px 10px 5px 5px;
  border: none;
}
.header .search-btn i {
  color: #e5e5e5;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.header .navigation-list li:nth-child(2) a i {
  background: #ff0000;
}

.header .search-input {
  width: 100%;
  height: 34px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0 39px 0 10px;
  box-sizing: border-box;
  color: #666;
}

.footer-area a
{
  color: #fff;
}
.footer-area
{
  line-height: 25px;
}

 


/* intro */

#box-intro{
  background: #f2f2f2;
}


.title-web h3, h4
{
	font-size:14px;
	font-weight:bold;
	margin-bottom:5px;
}
 

.read-more{
  float: right;
}
.read-more a{
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
}

.read-more i{
  font-size: 16px;
  position: relative;
  top: 0px;
  padding-left: 5px;
}
 
.btn-primary1 {
  font-size: 15px;
  line-height: 24px;
  background: transparent;
  color: #4c4c4c;
  padding: 5px 0;
  display: inline-block;
  border-radius: 9999px;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-primary1 i {
  margin-left: 5px;
}
 
/* media */
.box-intro__content-media {
  width: 50%;
  float: left;
  padding-left: 30px;
  box-sizing: border-box;
}
.box-intro__slide {
  width: 100%;
  clear: both;
  float: left;
  position: relative;
}
.box-intro__slide .item-image {
  border: 1px solid #1293cb;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  height: 140px;
  box-sizing: border-box;
  margin:0 auto;
  position:relative;
}
.box-intro__slide img{
    max-width: 90%;
    max-height: 90%;
    margin:auto;
    position:absolute;
    top:0; left:0; right:0; bottom:0;
}
.box-intro__slide .fa{
    position: absolute;
    font-size: 25px;
    top: 60px;
    z-index: 10;
    cursor: pointer;
}
.box-intro__slide .fa-chevron-right{
    right: -25px;
}
.box-intro__slide .fa-chevron-left{
    left: -25px;
}
.media-ytb {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    display: block;
}
.media-ytb img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.media-play i {
    font-size: 18px;
    color: #ffffff;
    background: #ff0000;
    padding: 10px 20px;
    border-radius: 10px;
}
/* end intro */



 

.title-section {
  padding-top: 10px;
  padding-bottom: 10px;
}
  
#box-achievement
{
  background: url('images/counter-bg.jpg');
  background-repeat: repeat; 
  min-height:250px;
  padding-top:50px;
}
.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
}
.counts .counters p {
  padding: 0;
  margin: 10px 0 20px 0;
  font-size: 14px;
  color: #fff;
  padding-bottom: 20px;
}
 
.product-item
{
  clear: both;
}
 
/* swipper */


 
.swiper-container 
{
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; 
  padding-bottom: 20px;
  margin-left:0px;
  float: left;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
  box-sizing: content-box; 
  padding-left: 15px;  
  
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform; }

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%; }

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s top,.2s -webkit-transform;
  transition: .2s transform,.2s top;
  transition: .2s transform,.2s top,.2s -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s left,.2s -webkit-transform;
  transition: .2s transform,.2s left;
  transition: .2s transform,.2s left,.2s -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s right,.2s -webkit-transform;
  transition: .2s transform,.2s right;
  transition: .2s transform,.2s right,.2s -webkit-transform; }

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000; }

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }
  
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
	  

 
 

.swiper-slide {
  text-align: left;
  font-size: 18px; 
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

}
 

.main-content
{
  padding-top: 70px;
  display: block;
  min-height: 200px;
}

/* product */
.product-home__list {
  width: 100%;
  clear: both;
  float: left;
}
 
.product-widget {  
  width: 100%;
  float: left;
  margin-bottom: 0px;
  position: relative;
  overflow: hidden;
  height: 250px;  
}
 
 
.product-widget:hover .product-widget__content {
  bottom: 0;
  transition: all 0.2s ease;
}
.square::after {
  padding-bottom: 100%;
}
.square::after, .circle::after, .image-3-2::after, .image-16-9::after {
  content: "";
  display: block;
}
.product-widget__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.square img, .circle img, .image-3-2 img, .image-16-9 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  position: absolute; 
}
.square::after, .circle::after, .image-3-2::after, .image-16-9::after {
  content: "";
  display: block;
}
.product-widget__content {
  width: 100%;
  clear: both;
  float: left;
  background: rgba(0,0,0,.8);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -120px;
  transition: all 0.5s ease;
}
.product-widget__content-center {
  width: 100%;
  clear: both;
  float: left;
  padding: 10px;
  text-align:left;
}
.product-widget__content-title {
  width: 100%;
  clear: both;
  float: left;
  font-size: 15px!important;
  line-height: 22px;
  margin-bottom: 5px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  padding-left: 5px;
  padding-right: 5px;
  text-align:left;
  padding-bottom:10px;
}
.product-widget__content-desc {
  width: 100%;
  clear: both;
  float: left;
  font-size: 14px;
  text-align: justify;
  line-height: 24px;
  max-height: 96px;
  overflow: hidden;
  margin-bottom: 5px;
  color: #ffffff;
  height: 72px;
  overflow: hidden;
  padding-left:15px;
  padding-right:15px;
   
}
.product-widget__content-link {
  width: 100%;
  clear: both;
  float: right;
}
.product-widget__content-link a {
  background: transparent;
  color: #ffffff;
  float: right; 
  font-weight: bold;
  padding-right:30px;
  text-transform:uppercase;
  font-size:14px;
}
.btn-primary {
  font-size: 15px;
  line-height: 24px;
  background: transparent;
  color: #4c4c4c;
  padding: 5px 0;
    padding-right: 0px;
  display: inline-block;
  border-radius: 9999px;
  text-transform: uppercase;
  font-weight: bold;
}

/* News home */
#box-news
{
  background: #fff;
}
.news-bg
{
  background: #ccc;
}
.home-news {
  background: #fff;
  padding: 10px 8px 10px 10px;
  position: relative; 
  display: block;
}

.news-left
{
  display: block;
  float: left;
}
 
.news-right
{
  display: block;
  float: left;
  padding: 10px;
  background: #fff;
}

.slick-slide img {
  display: block;
}

 

#box-customer
{
  background-color: #fff;
}

 .viewall a {

  display: block;
  position: relative;
  right: 12px;
  bottom: 10px;
  width: 120px;
  line-height: 30px;
  color: #54a8da;
  font-size: 14px;
  border: 1px solid #54a8da;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
   .viewall a span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
  .viewall a {
  line-height: 30px;
  color: #54a8da;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
}
  .viewall a span:after{
  content: '\f067';
  font-family: fontAwesome;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
 .viewall a:hover{
  background: #54a8da;
  color: #fff;
}
.bg-white
{
  background-color: #fff;
}
 

.achievement {
  padding-top: 10px;
  padding-bottom: 10px;
}
 
.achievement h2 {
  font-size: 24px;
  font-weight: 500;
  padding: 2px 0;
  position: relative;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
.purecounter-line
{
	padding-top:0px;
	display:block;
	border-right:2px solid #fff;
	height:30px;
}
 
 /* 
.title-section h2::before,
.title-section h2::after {
    display: inline-block;
    content: "";
    border-top: .1rem solid black;
    width: 1em;
    margin:-0.5rem 1rem;
    transform: translateY(-1rem);
}
*/

/* icon footer */
 
.icon-fix {
    position: fixed;
    z-index: 9999;
}
.icon-fix-left {
    left: 10px;
    top: calc(50% - 290px / 2);
}
.icon-fix-left .item {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin-bottom: 10px;
    background: #ffffff;
    position: relative;
    box-shadow: 0 0px 5px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0px 5px 3px rgba(0, 0, 0, 0.2);
    -khtml-box-shadow: 0 0px 5px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0px 5px 3px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0px 5px 3px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0px 5px 3px rgba(0, 0, 0, 0.2);
}
.icon-fix-left .item-image {
    height: 100%;
}
.icon-fix-left .item-image a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2.5px;
}
.icon-fix-left .item-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    object-fit: cover;
    width: 45px;
    height: 45px;
    border-radius: 50px;
}
.icon-fix-left .item:hover .item-tooltip {
    opacity: 1;
    visibility: inherit;
    transition: 0.5s;
}
.icon-fix-left .item-tooltip {
    display: block;
    position: absolute;
    left: 55px;
    top: 0;
    width: 160px;
    font-size: 12px;
    background: #ebebeb;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
}
.icon-fix-left .item-tooltip:after {
    bottom: 100%;
    left: -8px;
    top: 10px;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border: solid transparent;
    border-color: transparent;
    border-right-color: #ebebeb;
    border-width: 9px;
    margin-left: -9px;
}
.icon-fix-left .item:last-child {
    margin-bottom: 0;
}

/*social*/
.list-social {
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 9999;
  right: 30px;
}
.list-social ul > li {
  list-style: none;
}
 
.zalo-link a {
  overflow: hidden;
  padding: 0;
}
.list-social a {
  width: 50px;
  height: 50px;
  line-height: 10px !important;
  text-align: center;
  color: #ffffff;
  font-size: 2.2rem !important;
  background: transparent;
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  transition: transform .2s ease-in-out;
}

@media (max-width: 768px)
{
	 
	.hide
	{
		display:block;
	}
	.hide-mobile
	{
		display:none;
	}
	.header .navigation-list li img
	{
		margin-top:15px;
		display:block;
	}
	.bi-list
	{
		margin-top:20px;
	}
	/*
	.icon-fix-right
	{
		right:10px;
	}
	*/ 
	.col-xs-6
	{
		width:50%!important;
		margin-bottom:15px;
	}
	.hidden-xs
	{
		display:none;
	}
	
}

@media (min-width: 768px)
{
	 
	.hide
	{
		display:none;
	} 
	
	.hide-mobile
	{
		display:block;
	}
	 
}

/* product list */
.page-title__text {
  position: absolute;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  top: 200px;   
  z-index: 999;
  margin-left:15px;
}
.product-page-box {
  width: 100%;
  clear: both;
  float: left;
}

.product-space
{
   
  float: left;
  width: 100%;
  display: block;
  clear: both;
  height: 20px;
}
.product-category-short-description
{
  float: left;
  width: 100%;
  display: block;
  padding-bottom: 50px;   
  padding-top: 10px;
   
}
.product-category-short-description .left-item  
{
   display: block;
   float: left;
   
}
.product-category-short-description .right-item  
{
   display: block;
   float: right;
   height: 240px;
}

.product-category-short-description .right-item img
{
  max-width: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  width: 100% !important;
  height: 100% !important;
}  

 

 .owl-item img
{
  max-height:490px;
  width: 100%;
   
}
 


.icon-fix {
  position: fixed;
  z-index: 9999;
}

.kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(17, 130, 252, .8);
    border-top-color: rgba(17, 130, 252, 0.8);
    border-right-color: rgba(17, 130, 252, 0.8);
    border-bottom-color: rgba(17, 130, 252, 0.8);
    border-left-color: rgba(17, 130, 252, 0.8);
  opacity: .1;
  border-color: #1182FC;
  opacity: .5;
  
}
.kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  background-color: rgba(17, 130, 252, 0.45);
  opacity: .75;
  right: -10px;
}

.zoomIn {
  
  animation: zoomIn 1s ease infinite;
}
.pulse
{
	 animation: pulse 1s ease infinite;
}
@keyframes zoom-in {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
 .achievement h2::after
 {
	 border:0px!important;
 }
 
 
 #content-body
 {
   
  min-height: 500px;
 }
 
 #content-body h2
 {
  font-size: 20px;
 }
 .product-page-box
 {
	 clear:both;
	 min-height:500px;	 
	 display:block;
	 background-color:#fff;
 }
   
  .product-page-box h2::after
  {
	  border:0px!important;
  }
 .product-category-bg
 {
	 background-color:#dee5f4;
 }
  .product-list
  {
    clear: both;
    display: block;    
  }
  .clear-fix
  {
    clear: both;
    display: block;
  }
  .product-category-item
  {
    clear: both;
    display: block;
    float: left;
    width: 100%;
    padding-bottom: 30px;
  }

  .product-box
  {
    border: 1px solid #ccc;  
    display: block;
    float: left;
    padding: 10px;
  }
 
  
  .product-right
  {
    padding-left: 20px;
  }
   
  .product-widget__content-title::after
  {
	  border:0px!important;
  }
  
  .product-widget__content-title
  {
	  max-height:55px;
  }
  .project-item-title
  {
    display:block;
    float:left;
    min-height:40px;
    padding-top: 0px;
    font-weight: bold;
	min-height:50px;
	margin-top:-10px; 
  }

  .project-item-title a
  {
    font-weight: 600;
    color: #000;
  }



  .product-image img
  {
    object-fit: cover;
  }
   
  .option-top 
  {
    padding-top: 0px;
  }
  .option-top p
  {
    line-height: 24px;
  }
  .contract-us
  {
    float: left;
    display: block;
	font-size:12pt;
	line-height:24px;
	width:100%;

  }

  .btn-contract
  {
    background-color: #0098d2;
    color: #fff;
	border-radius:20px;
  }
  .btn-contract:hover
  {
	  color:#fff;
	  background-color:#61affe;
  }
 
 
  
  .entry-box-title
  {
    padding-top: 20px;
  }

  .project-left
  {
    float: left;
    background-color: #fff;
    padding-left: 0px;
  }
  .project-right
  {
    float: left;
    background-color: #fff;
  }

  /* about */
  .about1 .text {
    padding-top: 20px;
    padding-left: 30px;
  }
  .about1 .text .item {
    position: relative;
  }
  
  .about1 .text .item  h2, .section-title h2 {
    color: #03296e;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 5px;
	line-height:28px;
  }
  .about1 .text .item strong {
    color: #e0812f;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .about1 .text p {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
  }
  .about1 .text .item::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 0px;
    width: 10px;
    height: 102px;
    background: #1288cb;
  }
   


/* man hinh dien thoai AAA */
@media (max-width: 768px)
{
	 /*
	.item_cc
	{
		width:50%!important;
		display:flex!important;
	}
	*/
	 
}

.container .product-item
{
	 
	margin-bottom:40px;
}

/* banner */


#banner-page {
  position: relative; 
  clear:both; 
  display:block; 
}
 
#banner-page img {
  width: 100%;
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner-page h3 {
  position: absolute;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  top: 130px;
  /*left: calc((100% - 1170px) / 2); */
  margin-left: calc((100% - 1100px) / 2) ;
  
}

.contract-us
{
	 
}

/* tin tuc */
.news-category-list {
  margin-top:10px;
}
.read-more {
  float: right;
}
.read-more a {
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
}
  
.item-info__title {
  color: #333;
  font-size: 16px;
  line-height: 20px;
  height: 42px;
  overflow: hidden;
}

 
 .time i {
  padding-right: 5px;
}

.first-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  width: 100%;
   
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.next-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  width: 100%;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.item-info {
  width: 100%;
  clear: both;
  float: left;
  background: #f2f2f2;
  padding: 3px;
  box-sizing: border-box;
}

.item-info:hover h3 {
  color: #1c448a;
  transition: 0.5s;
}

.item-info__title {
  font-size: 16px;
  line-height: 28px;
  height: 55px;
  color:#000;
}
.item-info__title_next {
	color: #333;
	font-size: 16px;
	line-height: 20px;
	height: 42px;
	overflow: hidden;
}

.item-child { 
  float: left;
  margin-bottom: 10px;
  box-sizing: border-box;
}
 .news-detail, .news-list
 {
	 text-align:justify;
 }
 .item-sidebar {
  width: 100%;
  float: left;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ededed;
}

.item-sidebar .image {
  width: 120px;
  float: left;
}
.item-sidebar img {
  width: 100%;
  float: left;
}

.item-sidebar .info {
  width: calc(100% - 130px);
  float: right;
}
.item-sidebar h3 {
  color: #333;
  padding: 5px 0;
  line-height: 20px;
  font-size: 13px;
  height: 44px;
  overflow: hidden;
}
.item-sidebar .time {
  color: #333;
  padding: 0;
  font-size: 12px;
}
.item-sidebar .time i {
  padding-right: 5px;
}
.item-sidebar:hover h3 {
  color: #1d428a;
  transition: .5s;
}

 


/* tab product */

 



.service-box
 {
	border:1px solid #ccc;	 
	box-shadow: 1px 1px 10px 1px #888;
	float:left; 
	margin-bottom:20px;
	min-height:400px;
 
 }
 
 .service-box .service-title
 {
	 float:left;	 
	 display:block;
	 overflow:hidden; 
	 background-color:#0098d2;
	 width:100%;
	 
 }

.service-box .service-title h3 a
{
	  padding-left:10px;
	  padding-right:5px; 
	  font-size:18px; 
	  width:100%;
	  float:left;
	  clear:both;
	  display:block;
	  color:#fff;
	  text-transform:uppercase;
	  font-weight:bold;
	  text-align:left;
	  padding-top:10px;
	  padding-bottom:10px;
	  text-align:center;
  }

.service-box .service-content
 {
	  float:left;
	  width:100%;
	  clear:both; 
 }
 
.service-box .service-short-description
{
  float:left;
  width:100%;
  clear:both;
  height:100px;
  display:block; 
  padding:10px;
}
.service-box .service-short-description .content
{
	float:left;
	display:block;
	width:100%;
}
.service-box .service-image
{
	float:left;
	width:100%;
	clear:both;
	padding-left:0px;
	padding-right:0px; 
}

.service-box .service-image img
{
	width:100%;
	height:100%;
	background-size: cover;
}

  


/* hình ảnh */
.csw-media {
  overflow: hidden;
  display: inline-block;
  padding-right:30px;
}
.csw-media img {
  transition: 0.8s;
}
.csw-media:hover img {
	transform: scale(1, 1.1);
	-webkit-filter: saturate(4);     
	filter: saturate(4); 
}
.blue
{
	color:#0098d2;
}
.product-box .product-left
{
	margin: auto;
   display: block;
}
.btn-info
{
	background-color:#0098d2;
	color:#fff;
}

.btn-lienhe
 {
	margin-top:10px;
	border:1px solid #ccc;	 
	box-shadow: 0px 6px 1px  #ccc;
	float:left; 
	display:block;
	padding:10px;
	line-height:10px;
	width:100%;
	border-radius:15px;
	padding-top:20px;
	min-height:100px;
 }
 .btn-lienhe:hover
 {
	 border-color:#0098d2;
 }
 .btn-lienhe h2
 {
	 font-weight:bold;
	 font-size:16px!important;
	 line-height:24px; 
	 
 }
 
 .content-dactinh-sp h4 {
  height: 40px;
  line-height: 40px;
  background-color: #0098d2;
  margin: 0 auto;
    margin-top: 0px;
  margin-top: -20px;
  padding: 0 20px;
  font-size: 18px;
  color:#fff;
  width:80%;
  border-radius:20px;
  text-align:center;
  
}
.content-dactinh-sp .list-content-dactinh {
  font-size: 16px;
  line-height: 30px;
  width: 50%;
  float: left;
  padding: 20px 25px 0 15px;
}
.content-dactinh-sp {
  border: 1px solid #0098d2;
  margin: 35px 0;
  display:block;
  height:120px;
  width:250px;
  
}
.content-dactinh
{
	padding-left:30px;
	padding-top:10px;
}

#form_popup
{
	border:1px solid #ccc;	 
	box-shadow: 1px 1px 10px 1px #888;
	float:left; 
	margin-bottom:0px;
	width:100%; 
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	margin-top:-10px;
	display:none;
}


#form_popup h2
{
	width:100%;
	height:45px;
	background-color:#0098d2;
	display:block;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	color:#fff;
	padding-top:10px;
}
#form_popup h2 span
{
	padding-left:18px;
	font-size:18px;
	
}
#form_popup .textbox
{
  display:block;
  width:97%;
  border:1px solid #ccc;
  border-radius:5px;
  margin:10px;
  min-height:35px;
	 
}

.close_form
{
	display:block;
	width:30px;
	height:30px;
	float:right;
	padding-right:30px;
	color:#fff;
}
.close_form a
{
	color:#fff;
}
.popup-project
{
	cursor:pointer;
	background: transparent;
	color: #ffffff;
	float: right; 
	font-weight: bold;
	padding-right:50px;
}
.category-short-description
{
	padding-top:10px;
	padding-bottom:20px;
	margin-bottom:20px;
}
.title_fl {
  padding-top:5px;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0098d2;
  font-weight: 600;
  color: #000;
  position: relative;
  text-transform:uppercase;
  margin-bottom: 20px;
}
.title_fl::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 5px;
  width: 295px;
  background: #0098d2;
}
.product-categories
{
	clear:both;
	margin-bottom:20px;
 
}
.product-categories .right
{
	max-height:450px!important;
	overflow:hidden;
	padding-left:25px;
}


/* related_news */
.post-title
{
	 font-size: 30px;
	 font-weight:bold;
}
.related-news-image
{	 
	float:left;
	display:block;
	height:160px;
	width:100%;
}
.related-news-image img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.related-news-title
{
	display:block;
	float:left;
	clear:both;
}
.related-news-calendar
{
	float:left;
	display:block;
}
.related-news-title a
{
	color:#000;
	display:block;
	
}

#section-news
{
	clear:both;
	margin-top:20px;
}

/*

#tab1 ul>li::before, 
#tab2 ul>li::before, 
#tab3 ul>li::before, 
#tab4 ul>li::before, 
#tab5 ul>li::before, 
#tab6 ul>li::before, 
#tab7 ul>li::before, 
.news-list ul>li::before,
.option-top ul>li::before 
{
  content: "\F0DA";
  top: 0;
  left: 0em;
  color: #0098d2;
  font-family: FontAwesome;
  font-size: 16px;
}
*/
/* gioi thieu */



.page-hero-content {
	  background: #eff4f6;
	  padding: 40px;
	  display: flex;
	  display: -moz-flex;
	  display: -ms-flex;
	  display: -webkit-flex;
	  flex-wrap: wrap;
	  justify-content: flex-start;
	  -webkit-box-pack: start;
	  -ms-flex-pack: start; 
	  width:80%;
	 
}
.about-top1
{
	
	padding-bottom:30px;
}

.about-top1-content
{
	padding-top:30px;
	background: #eff4f6;
	padding-bottom:30px;
}

  .page-hero-title-inner {
    width: 45%;
    padding-right: 20px;
  }

  .page-hero-content .section-title {
    text-align: left;

  }
  .section-title {
    color: #03296e;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 5px;
  }
  /*
  .section-title::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 40px;
    width: 10px;
    height: 102px;
    background: #1288cb;
  }
  */
 
  .tam-nhin-su-menh
  {
	  padding-top:30px;
	  padding-bottom:30px; 
	  background-color:#fff;
	  clear:both;  
  }
  .tam-nhin-content
  {
	  margin:0 auto;
  }
  .tam-nhin
  {
	  background: url(../img/box-tam-nhin.png); 
	  background-repeat:no-repeat;
	  display:block;
	  float:left;  
	  padding:30px;  
	  margin-bottom:20px;
	  background-size: contain;
	  background-repeat: no-repeat; 
	  background-position: center;
	 text-align:center;
  } 
   .su-menh
  {
	  background: url(../img/box-su-menh.png); 
	  background-repeat:no-repeat;
	  display:block;
	  float:left; 
	  padding:30px; 
	  background-size: contain;
	  background-repeat: no-repeat;
	  margin-bottom:20px; 
	  background-position: center;
	  text-align:center;
  } 
  .tam-nhin .content, 
  .su-menh .content
  {
	  text-align:justify; 
	  margin:0 auto;
	  min-height:200px;
	  
  }
  .icon-tam-nhin-su-menh
  {
	  display:block;
	  width:100%;
	  
	  
  }
  .icon-tam-nhin-su-menh img
  {
	 height:100px;
	 
  }
  .tam-nhin h3, .su-menh h3
  {
	  font-size:24px;
	  font-weight:bold;
	  margin:10px;
  }
  
  
 
 .padding-bottom
 {
	 float:left;
	 width:100%;
	 display:block;
	 height:40px;
 }

.lst-contact li::before
{
	content:''!important;
}
 
/* mobile  giao dien dien thoai */
@media only screen and (max-width: 600px) {
.technology-box
 {
	 margin-top:25px;
 }

/*
.tab-product
{
	box-shadow: 0 4px 4px rgb(0 0 0 / 8%);
	display:flex;
	overflow:scroll;
    white-space: nowrap;
	height:70px; 
	transition: .5s;
}
 
 
 .tab-product li h2 {
	 padding-right:20px;
	 
	}
 */
	.page-hero-content {
		width:100%!important;
		
	}
	.about-top
	{
		margin-left:1%!important;
	}
}


.swiper-button-prev
{ 
	background-color:#0098d2;
	height:30px;
	width:30px;
	border-radius:50%;

}
.swiper-button-prev::after,
.swiper-button-next::after
{
	color:#fff;
	font-size:20px;
	font-weight:bold;
}

.swiper-button-next
{  
	right:0px;
	background-color:#0098d2;
	height:30px;
	width:30px;
	border-radius:50%;
	 
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev
{
	background-color:#0098d2;
	background-image:none;
	z-index:999;
	cursor:pointer;
}
.swiper-button-next, .swiper-button-prev
{	 
	background-image:none;
} 

 .owl-carousel .owl-item .item img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.slick-prev, .slick-next
{
	z-index:88;
}
.news-detail h2, .news-list h2
{
	font-size:15pt;	
}
 
 

.contact-info-section h1 {
	font-size: 24px;
	line-height: 26px;
	text-transform:uppercase;
}

/* news */
.hot-news
{
	width: 100%;
	position: relative;
	margin-bottom: 15px;
	 
}
.gradient {
  width: 100%;
  float: left;
  height: 200px;
  position: absolute;
  bottom: 0px;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000',GradientType=0 );
}
 .news-info {
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: #fff;
  z-index: 10;
}
.hot-news-image
{
	width: 100%;
	position: relative;
 
}
.hot-news-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  width: 100%;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.hot-news  a h2 {
  height: auto;
  max-height: 60px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
}
.hot-news a h2 :hover {
  color: #1c448a;
  transition: 0.5s;
}
 
 
.hot-news  a h3 {
  height: auto;
  max-height: 60px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
}
.hot-news a h3 :hover {
  color: #1c448a;
  transition: 0.5s;
}
 
.time {
  display: block;
  padding-bottom: 5px;
  font-size:12px;
}

.item-list-news {
  width: 100%;
  float: left;
  background: #f2f2f2;
  margin-bottom: 20px;
}
.item-list-news .info h3 a {
  color: #333;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
  font-weight:bold;
}

.item-list-news .info h2 a {
  color: #333;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
  font-weight:bold;
}

.item-list-news .image {
  width: 300px;
  height: 200px;   
  float: left;
  
}
.item-list-news .image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  width: 100%;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
}
.item-list-news .info {
  width: calc(100% - 300px);
  float: left;
  padding: 15px 20px;
  box-sizing: border-box;
}
.item-list-news .info-desc {
  color: #333;
  line-height: 22px;
  max-height: 90px;
  overflow: hidden;
}
 
.item-list-news .time {
  color: #333;
}

.item-sidebar {
  width: 100%;
  float: left;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ededed;
}
.item-sidebar .image {
  width: 120px;
  float: left;
}
.item-sidebar h3 a {
  color: #333;
  padding: 5px 0;
  line-height: 20px;
  font-size: 14px!important;
  font-weight:bold;
}

.project-content
{
	background:#fff;
	color:#000;
	padding:15px;
	border-radius:10px;
	min-height:600px;
}
.project-content h1
{
	font-size:20px;
	font-weight:bold;
}
.slick-prev, .slick-next
{
	z-index:88!important; 	
}
 

#mobile-lang
{
	display:none;
	margin-top:10px;
}
.contract-icon
{
	position:fixed;z-index:1000000;
	font-size:24px;
	bottom:20px;left:10px;padding:12px;background:#0098d2;
	color:white;font-weight:bold;-moz-border-radius:10px;
	border-radius:20px;-webkit-border-radius:20px;
	padding-left:15px;
	padding-right:15px;
}

/* tuyen dung */

.recruitment-item
{
	padding-bottom:10px; 
}
.recruitment-item img
{
	width:100%;
	height:100px;
	object-fit:cover;
	height:230px;	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.recruitment-item h3
{ 
	transition:all 0.5s ease;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color:transparent;
	font-size: 18px;
	font-weight: bold;
	padding: 20px 0;
	margin-bottom: 0;
	color: #fff;
	text-align: center;
	z-index: 99;
	position: relative;
	background:linear-gradient(0deg, rgba(39, 106, 230, 0.8), rgba(39, 106, 230, 0.8));
	margin-top:-60px;
}
.recruitment-item h3 a
{
	color:#fff;
}
.recruitment-content
{
	padding-bottom:30px;
}
.cta-btn {
  margin-top: 30px;
}
.cta-btn a {
  padding: 10px 15px;
  background: linear-gradient(180deg, #22c8ff 0%, #2d6ae6 100%);
  border-radius: 5px;
  color: #fff;
  font-size:15pt;
  font-weight:bold;
}
.text-title
{
	font-size:22pt!important;
	font-weight:bold;
}

/* ftoc */
.toc-icon
{
	width: 40px;
	height: 40px;
	background-image: url('./images/ftoc-icon.png');
	background-repeat: no-repeat;
	position: fixed;
	top: 30%;
	right: 0px;
	display: block;
	left: 1px;
	background-size: contain;
	opacity: 0.7;

}

.ftoc-container
{
	position:fixed;
	width:30%;
	height:100%;
	display:block;
	border:2px solid #000;
	z-index:999;
	top:70px;
	left:5px;
	background-color:#f4f4f4;
	padding-left:10px;
	padding-right:10px;
	display:none;
	
}

.toc-header
{
	font-size:22px;
	font-weight:bold;
	padding:10px;
	margin-top:10px;
	display:block;
	height:30px;
	
}

.ftoc-container .toc-header a
{
	float:right;
	color:#000;
}
.ftoc-content
{
	margin-top:20px;
	overflow: scroll;
	height: 80%;
}
.product-box iframe
{
	width: 100%;
	height:500px;
}
.product-box ul li
{
	padding-bottom:10px;
}
.product-item .slick-track{ margin-left: 0!important; }
.news-detail ul li
{
	list-style:none!important;
}
/* AAA giao dien dien thoai */
@media all and (max-width: 480px) {
	
	.line-left
	{
		border:0px;
	}
	/*
	.change-colunn
	{
		 flex-direction:column-reverse!important;
		 justify-content: flex-end!important;
	}
	*/
	.product-widget:hover .product-widget__content {
		bottom:-120px;
	}
		
	.arrow-right-mobile
	{
		display:block!important;
	}
	
	#mobile-lang
	{
		display:block;
	}
	.title-section h2::before, 
	.title-section h2::after {
		display: none;
		 
	}
	.show-mobile
	{
		display:block!important;
	}
	.hide-mobile
	{
		display:none!important;
	}
	.csw-media
	{
		width:100%!important;
		padding-right:0px;
	}
	.product-widget, .product-image
	{
		height:auto;
	}
	
	#header .logo img {
	  padding: 5px;
	  margin: 0;
	  max-height: 55px;
	}
	.service-box
	{
		min-height:360px;
	}
	#mobile-lang
	{
		display:block!important;
	}
	.contract-icon
	{
		font-size:15px;
		padding:8px;
	}
	#header
	{
		height:65px;
	}
	.recruitment-item img
	{
		height:180px;
	}
	.recruitment-item h3
	{
		padding:12px;
		margin-top:-56px;
		height:60px;
	}
	.ftoc-container
	{
		width:95%;
	}
	.product-box iframe
	{
		width: 100%;
		height:200px;
	}
	.item-list-news .info
	{
		width:100%;
	}
	.item-list-news .image
	{
		width:100%;
	}
}
 
 

/* AAA */

/* tables */
.product-right table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border-color:#cdcdcd!important;
}

.product-right th {
  padding-top: 11px;
  padding-bottom: 11px;
  background-color: #0098d2;
  color: white;
  display: table-cell;
  vertical-align: top;
}

.product-right tr {
	border-bottom: 1px solid #ddd;
}

 
.product-right tr {
  border-bottom: 1px solid #ddd;
}
.product-right tr:nth-child(1) {
  background-color: #0098d2;
  color:#fff;
}
.product-right td {
  padding: 8px 8px;
  display: table-cell;
  text-align: left;
  vertical-align: top;
}

.whychoose
{
	background-color:#eef1fa;
}