
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: DnSans;
    src: url(DMSans-Regular.ttf);
}
body {
  font-family: "DnSans", sans-serif;
  color: #12303C;
  font-size: 14px;

}

a {
  color: #12303C;
  text-decoration: none;
}

a:hover {
  color: #12303c;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DnSans", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #71B32F;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5f1111;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
}
*/
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #323232bf;
}

#header.header-scrolled .social-links{
    display:none;
}
#header.header-scrolled .navbar{
    padding-top: 30px;
}

#header.header-scrolled .mobile-nav-toggle {
    top: -35px;
}
#header.header-scrolled .navbar-mobile .mobile-nav-toggle {
    top: 10px;
}


#header .logo {
  font-size: 26px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
    padding: 25px;
   /* background-color: #12303C;*/
}

#header .logo a {
  color: #707070;
}

#header .logo img {
  max-height: 140px;
}

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

.navbar .navbar-left {
    display: none;
}
.navbar .navbar-right {
    display: none;
}
.navbar ul {
  margin: 0;
  padding: 0;
  /*display: flex;*/
    display: none;
  list-style: none;
  align-items: center;
}



.navbar li {
  position: relative;
}

.navbar li.lang {
    padding-left:75px
}
.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 13px;
	color: #707070;
	white-space: nowrap;
	transition: 0.3s;

}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #71B32F;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #71B32F;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

.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: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #71B32F;
}

.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;
}


/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    display: block;
    background-color: #fff;
    padding: 30px;
    position: absolute;
    top: 0;
    right: calc(5% - 20px);

}

.mobile-nav-toggle.bi-x {
  color: #fff;
}


.navbar-mobile {
    position: fixed;
    overflow: hidden;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(255 255 255);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
    top: 0px;
    right:15px;
    color: #000;
    font-size: 40px;
}

.navbar-mobile ul {
  display: block;
  padding-top: 50px;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 14px;
    color: #910c18;

}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #910c18;
    font-weight: 700;
    font-size: 15px;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: #910c18;
}

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

.navbar-mobile  .navbar-left{
    background-color: #787878;
    height: inherit;
    display: block;

}
.navbar-mobile  .navbar-center{
    background-color: #dddddd;
    height: inherit;
    display: block;

}
.navbar-mobile  .navbar-right{
    background-color: #fff;
    height: inherit;
    display: block;
    padding-top: 50px;
    overflow-y: auto;
    transition: 0.3s;
    padding-left: 50px;
}
.navbar-mobile  .navbar-right p{
    width: 200px;
    padding: 10px 20px;
}
.navbar-mobile  .navbar-right a{
    color: #3c3c3c;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#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: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-container {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	background-color: #71B32F;
	width: 100%;
	height: 100px;

}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 100;
  padding-left: 100px;
}
#hero h2 span {
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}



#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

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

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

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

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

  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #71B32F;
}

#hero .btn-get-started {
  font-family: "DnSans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #71B32F;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "DnSans", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "DnSans", sans-serif;
  color: #0f2f57;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #71B32F;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "DnSans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #71B32F;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #71B32F;
}

.about .content .btn-learn-more:hover {
  background: #71B32F;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
  text-align: center;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #71B32F;
  float: left;
}

.counts .count-box img {
	padding-bottom: 30px;
	display: block;
	margin: auto;
}
.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  font-weight: 700;
  color: #12303C;
}

.counts .count-box p {
	margin: 0;
	font-size: 14px;
	font-weight: 100;
	padding: 15px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "DnSans", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "DnSans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #707070;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #71B32F;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #12303C;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #707070;
}

.why-us .accordion-list a.collapsed:hover {
  color: #71B32F;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#71B32F 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #71B32F;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}




@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #71B32F;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #707070;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #71B32F;
  border-color: #71B32F;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #71B32F;
}

.services .icon-box:hover .icon::before {
  background: #f1775d;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item .image img {
  width:100%;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  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 {
  font-style: italic;
  margin: 15px auto 15px auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #71B32F;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #71B32F;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #707070;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #71B32F;
}

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #707070;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #71B32F;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #71B32F;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #71B32F;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #71B32F;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #707070;
  font-weight: 400;
  font-family: "DnSans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #71B32F;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #707070;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #707070;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #707070;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #71B32F;
}

.pricing .featured .get-started-btn {
  background: #71B32F;
  color: #fff;
  border-color: #71B32F;
}

.pricing .featured .get-started-btn:hover {
  background: #ef6445;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "DnSans", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/



.footer .footer-top .footer-link a {
	font-size: 10px;
    padding: 3px 0px;
   /* display: block;*/
    color:#fff;
}

#footer {
  background: #071527;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #71B32F;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "DnSans", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #71B32F;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ef6445;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ef6445;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #71B32F;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ef6445;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#header .social-links{
	font-weight:bold;
}
.navmenu{
	--bs-gutter-x: 0px !important;
}
.twitter{
	color:#bfbfbf;
	font-size:20px;
}
.twitter:hover{
	color:rgb(0, 157, 255);
}

.facebook{
	color:#bfbfbf;
	font-size:20px;
}
.facebook:hover{
	color:rgb(66 103 178);
}

.instagram{
	color:#bfbfbf;
	font-size:20px;
}
.instagram:hover{
	color:rgb(193, 53, 132);
}


.container1{
	width: 40%;
	background-color: #12303C;
	height: 100%;
}

.dogadan img{
	width: 100%;
}

.dogadan .content img{
	padding-bottom: 50px;
}

.dogadan .content h3{
	padding-bottom: 50px;
	color:#12303C;
}

.dogadan .content p{
	font-size: 15px;
    line-height: 25px;
    font-weight: 300;
	padding-bottom: 20px;
}

.dogadan .content a{
	font-size: 15px;
    line-height: 25px;
    font-weight: 300;
    background-color: #71B32F;
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
}
.solarpanel .image img{
	width:100%;
    object-fit: cover;
}

.solarpanel .row>*{
padding-right: 0px;
   padding-left: 0px;
}
.solarpanel .content{
	flex-grow: 1;
	padding: 15px;
	color:#12303C;
}
.solarpanel .content .content-detail{
    column-count: 2;
    column-gap: 0;
    flex: 1;
}
.solarpanel .content img{
	width:250px;
}
.solarpanel .content:nth-child(1) ,.content:nth-child(4){
	background-color:#71B32F1F;
}

.solarpanel .content:nth-child(2) ,.content:nth-child(3){
	background-color:#D8DEE5;
}

.solarpanel .content h3{
	font-weight: 200;
	font-size: 15px;
}
.solarpanel .content h4{
	font-size: 13px;
}

.documents .image {
	padding-bottom:20px;
}

.documents .image img {
	width:100%;
	height:100%;
}

.documents .link {
	border: 1px solid #a4a4a4;
    text-align: center;
	padding: 15px 0px;
	color: #a4a4a4;
}

.footer {
    background-color: #5f1111;
}


.footer .footer-top{
	padding-top: 50px;
    font-size: 11px;
    color: #fff;
    padding-bottom: 50px;
    font-weight: 400;
    line-height: 20px;
}
.footer .footer-top h5{
    font-size: 13px;
	padding-left: 5px;
}
.footer .footer-top .footer-link ul{
	list-style: none;
	padding-left: 15px;
}

.footer .footer-top .footer-concat p{
	padding-left: 5px;
}
.footer .footer-top .footer-concat p a{
	color: #fff;
}

.footer .footer-top .footer-logo{
	font-size: 26px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0px 25px;
   /* background-color: #12303C;*/
}

.addemail{
	background-color: #D3D3D3;
	margin-top: 175px;
	padding: 0px;
	height: 100px;
}
.addemail input {
    height: 65px;
    width: calc(100% - 70px);
}
.addemail button {
    height: 65px;
    width: 65px;
	border: 0px solid;
}

.addemail .container p{
	font-size:13px;
	color:#007E17;
}
.addemail .email{
	background-color: #71B32F;
    height: 252px;
    position: relative;
    bottom: 200px;
	padding: 65px;
    font-size: 12px;
}
.addemail .email span{
	color:#fff;
    font-size: 18px;
}

.addemail .image img{
    position: relative;
	bottom: 25px;
}




.sliders{

	padding: 0px 0px;
}


:root {
  --swiper-navigation-color: #ffffff;
  --swiper-theme-color: #ef233c;
}
.sliders .swiper-right {
    width: 5%;
    display: flex;
    justify-content: center;

}
.sliders .swiper-right .social-links {
    display: flex;
    flex-direction: column;
    align-self: flex-end;

}
.sliders .swiper-right .social-links hr {
    transform: rotate(90deg);
    margin: 0px 0px 30px 0px;

}
.sliders .swiper-right .social-links span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    padding: 50px 8px 5px;

}
.sliders .swiper-right .social-links a {
    color: #959595;
    padding: 8px;
    top: 0px;
    background-color: #ffffff !important;
    position: relative;
    font-size: 20px;
    font-weight: 700;

}
.sliders .swiper {
  width: 100%;
  height: 900px;
  min-height: 320px;
  background-color: #46677b;
}
.sliders .swiper-slide {
  font-size: 18px;
  background: #fff;
  display: flex;
}
.sliders .swiper-slide::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

}
/*
 Title Text
 */
.sliders .title {
  padding: 0 10vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  color: #ffffff;

}
.sliders h3 {
    font-size: 40px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
    font-weight: 900;
}
.sliders h4 {
    font-size: 40px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
    font-weight: 100;
}
.sliders a {
    color: #fff;
    padding: 8px;
    top: 30px;
    background-color: #910c18;
    position: relative;
    font-size: 13px;
    font-weight: 500;
}
.sliders .title__text {
  letter-spacing: -2px;
  font-size: clamp(3rem, 13.4546rem, 8.75rem);
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}
.sliders .title__text::after {
  position: absolute;
  top: 100%;
  content: "";
  display: block;
  width: 100px;
  height: 0.25em;
}
/*
 Style up the image behind each slide
 */
.sliders .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sliders .background-image__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  /*mix-blend-mode: luminosity;*/
}
.sliders .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    background-color: #71B32F;
    width: 100%;
    height: 100px;
	z-index: 2;
}
.sliders .container-left {
    width: 40%;
    background-color: #12303C;
    height: 100%;
}

.sliders h2 {
    color: #fff;
    margin: 0;
    font-size: 48px;
    font-weight: 100;
    padding-left: 100px;
	z-index: 4;
}

.header img{
    width: 200px;
    top: 35px;
    position: absolute;
    left: 75px;
}

section h3.title{
    font-size:40px;
    font-weight: 700;
    text-align: center;
    color: #910c18;
    padding-bottom: 40px;

}

.about-group h3{
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    line-height: 35px;
    color: #3b3c3e;
    padding-left: 25px;

}

.about-group h4{
    font-size: 16px;
    font-weight:400;
    text-align: left;
    line-height: 35px;
    color: #979aa1;
    padding: 50px;
}
.about-group a{
    padding: 10px 20px;
    background-color: #910c18;
    margin-left: 50px;
    color: #fff;
}
.about-group img{
    width: 80px;
    padding: 0px 0px 20px 15px;
}

.about-group video {
    width: 100%;
    height: 100%;
}
.about-group .container {
    position: relative;
    overflow: hidden;
}


.about-group video {
    object-fit: cover;
    border-radius: 0px 0px 150px 0px;
}

.about-group .video-bg {
    position: relative;
    width: 300px;
    z-index: -999;
    left: 115px;
    bottom: 275px;
}
.about-group .video-lines {
    position: relative;
    width: 60px;
    z-index: 999;
    bottom: 605px;
    right: 55px;
}




/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/

.section h4{
    font-size: 25px;
    font-weight: bold;
    color: #910c18;
    padding: 15px 20px;
    position: relative;
    display: inline-block;
}

.section h4::before{
    content: "";
    position: absolute;
    bottom: 0px;
    width: 150px;
    border-bottom: 3px solid #b1b4b7;
}


.section .detail:hover{
    background-color: #f5f5f5;

}
.section .detail {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}


.section .detail i {
    opacity: 0;
    visibility: hidden;
}

.section .detail .info1 {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}
.section .detail:hover .info1 {
    /*background: linear-gradient(180deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);*/
    background-color: black;
    opacity: 0.5;
    transition: 0.4s;
}


.section .detail .logos {
    position: absolute;
    left: 80px;
    background-color: #fff;
    padding: 10px 25px 25px;
    height: 90px;
    border-radius: 0px 0px 75px 75px;
    filter: grayscale(1) saturate(0)
}
.section .detail:hover .logos {
       opacity: 1;
    transition: 0.4s;
    z-index: 9;
   filter:  grayscale(0) saturate(1);
}


.section .detail:hover img {
    opacity: 0.8;
    transition: 0.4s;
    filter: blur(10%) grayscale(0.5) brightness(90%);
}
.section .detail:hover i {
    opacity: 1;
    visibility: visible;
    bottom: 242px;
    font-size: 18px;
    position: relative;
    left: 35px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 3px;
    transition: 0.5s;
}

.section .detail .logos img {
    width: 135px;
}
.section .detail:hover img {

}
.section .detail i::before {
    font-size: 50px;
    padding-right: 20px;
    vertical-align: middle;

}


.section p{
    font-size: 15px;
    padding: 10px 20px;
    line-height: 25px;
}

.header{
/*position: absolute !important;*/
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts{
    background-color: #910c18;
    color:#fff;
    font-size: 15px;
    line-height: 30px;
}
.counts .image{
    overflow: hidden;
}

.counts .small-logo{
    padding-top: 50px;
    padding-bottom: 20px;
}
.counts h3{
    font-size: 60px;
    padding-bottom: 20px;
    font-weight: bold;
}
.counts ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 20px;
    font-size: 80px;
    font-weight: bold;
    transition: 0.3s;
    list-style: none;
    position: relative;

}
.counts ul li:hover::before  {
    width: 50px;
    border-bottom: 2px solid #530000;
    transition: 1s;
}
.counts ul li:hover{
    color:#530000 ;
    transition: 0.2s;
}

.counts ul li::before{
    content: "";
    position: absolute;
    bottom: 170px;
    width: 150px;
    border-bottom: 2px solid #ffffff;
    transition: 1s;

}

.counts ul li span.text{
    font-size: 18px;
    display: block;
    padding-top: 40px;
    font-weight: 200;
    color: #a1a1a1;
}
#count02, #count03 {
    display: none;
}
li#counts01:hover  {
    display: block!important;
}
/*
.counts ul li:hover .counts #count01  {
    display: block!important;
}
*/

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background-size: cover;
    padding: 130px 0;
}

.cta h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 30px;
    transition: 0.5s;
    color: #fff;
    background-color: #910c18;
    border: 1px solid #910c18;
    margin-top: 50px;
}

.cta .cta-btn:hover {
    background: #25360800;
    border: 1px solid #fff;
}

/*--------------------------------------------------------------
# news
--------------------------------------------------------------*/
.news  {
    background-color:#ddd;
}

.news .detail:hover{
    background-color: #f5f5f5;

}


.news .detail h4{
    font-size: 25px;
    font-weight: bold;
    color: #910c18;
    padding: 15px 20px;
    position: relative;
    display: inline-block;
}
.news .detail img{
    width: 100%;
}

.news .detail p{
    font-size: 15px;
    padding: 10px 20px;
    line-height: 25px;
}

.news .detail .info {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
}

.news .detail .image .info i {
    opacity: 0;
    visibility: hidden;
    display: none;

}
.news .detail:hover .image .info i{
    opacity: 1;
    visibility: visible;
    bottom: 50px;
    font-size: 18px;
    position: relative;
    left: 35px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 3px;
    transition: 0.5s;
    display: block;
}

.news .news-btn{
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 30px;
    transition: 0.5s;
    color: #fff;
    background-color: #910c18;
    border: 1px solid #910c18;
    margin-top: 20px;
}

.news .news-btn:hover{

    transition: 0.5s;

    color: #000;
    background-color: #ddd;
    border: 1px solid #000;
}





.news .detail:hover img {
    opacity: 0.8;
    transition: 0.4s;
    filter: blur(10%) grayscale(0.5) brightness(90%);
}











.news .news-carousel,
.news .news-slider {
    overflow: hidden;
}

.news .news-item {
    box-sizing: content-box;
    /*padding: 30px 30px 30px 60px;
    margin: 30px 15px;*/
    min-height: 200px;
    box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
    position: relative;
    /*background: #fff;*/
    text-align: center;
}

.news .news-item .news-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    position: absolute;
    left: -45px;
}

.news .news-item .image img {
    width:100%;
}

.news .news-item .image::after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(transparent, #12303c);
    pointer-events: none;
}

.news .news-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
    z-index: 999;
    position: relative;
}

.news .news-item h4 {
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    margin: 0;
    z-index: 999;
    position: relative;
}

.news .news-item .quote-icon-left,
.news .news-item .quote-icon-right {
    color: #fdedea;
    font-size: 26px;
}

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

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

.news .news-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.news .swiper-slide {
    overflow: hidden;
    transition: .7s;
}
.news .swiper-slide.swiper-slide-next {
    z-index:1;
}

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

.news .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #71B32F;
}

.news .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #71B32F;
}
.swiper-wrapper {
   /* height: auto;*/
}


    /*--------------------------------------------------------------
    # career
    --------------------------------------------------------------*/
.career  {

}

.career .career-img{
    width: 100%;
}

.career .small-logo{
    width: 80px;
    padding: 0px 0px 20px 15px;
}
.career h3 {
    font-size: 25px;
    font-weight: 700;
    text-align: left;
    line-height: 35px;
    color: #3b3c3e;
    padding-left: 25px;
}
.career h4 {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 35px;
    color: #979aa1;
    padding: 50px;
}


.career .career-btn {
    padding: 10px 20px;
    background-color: #910c18;
    margin-left: 50px;
    color: #fff;
}


/*--------------------------------------------------------------
# add-email
--------------------------------------------------------------*/
.add-email{
    padding: 50px 0px 0px 0px;
}
.add-email .forms{
    background-color: #dddddd;
    padding: 100px 0px 100px 150px;
    color: #910C18;
    background-image: url('form.png');
    background-repeat: no-repeat;
    background-position: right;
}
.add-email .forms .title1{
    font-size: 20px;
}
.add-email .forms .title2{
    font-size: 35px;
    font-weight: bold;
}
.add-email .forms .form input {
    height: 65px;
    width: calc(100% - 200px);
}
.add-email .forms .form {
    position: relative;
}
.add-email .forms .form button {
    height: 65px;
    border: 0px solid;
    padding: 0px 20px;
    margin-left: 20px;
    color: #fff;
    background-color: #910C18;
    font-size: 20px;
    position: absolute;
    right: 0;
}
.add-email .logos {
    display: flex;
    align-items: stretch;
    text-align: center;
}
.add-email .logos .image {
    align-items: center;
    display: flex;
    justify-content: center;
    filter: grayscale(1);
}
.add-email .logos .image:hover {
    filter: grayscale(0);
}
.add-email .logos img {
    width: 200px;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
input {
    padding-left: 30px;
    color: #767676;
    font-weight: bold;
}

input::placeholder {
    color: #76767657;
}


.corporate {
    background-color: #910C18 !important;
}
.corporate li a {
    color: #910C18 !important;
}

.groupCompanies {
    background-color: #5E1111 !important;
}
.groupCompanies li a {
    color: #5E1111 !important;
}
.sustainability {
    background-color: #2F853F !important;
}
.sustainability li a {
    color: #2F853F !important;
}
.corporateManagement {
    background-color: #3D546B !important;
}
.corporateManagement li a {
    color: #3D546B !important;
}

.newsAndNewsletters {
    background-color: #7C6046 !important;
}
.newsAndNewsletters li a {
    color: #7C6046 !important;
}
.humanResources {
    background-color: #4B8C9A !important;
}
.humanResources li a {
    color: #4B8C9A !important;
}

.header2.contact {
    background-color: #042D65 !important;
}
.header2.contact li a {
    color: #042D65 !important;
}

/*--------------------------------------------------------------
# Header2
--------------------------------------------------------------*/
.header2{
    background-color: #910C18;
    padding: 40px 0px;
}

.header2 img{
    width: 200px;
}

.header2  .navbar a {
    left: 0px;
    position: absolute;
}
.header2  .navbar.navbar-mobile a{
    position: relative;
}
.header2 .mobile-nav-toggle {

    position: initial;

}
.header2  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 0;
    background: #dedede;
    margin-bottom: 5px;
}
.breadcrumbs .title {
    width: 200px;
    background-color: #959595;
    color: #fff;
    min-height: 150px;
    position: absolute;
    font-size: 18px;
    display: flex;
    justify-content: center;
}

.breadcrumbs .title .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.breadcrumbs .menu {
    padding-left: 215px;
    display: flex;
    align-items: center;
    height: 100px;
    color:#959595;

}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #707070;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li:last-child {
    color: #665e5e;
    margin: auto 0;
    font-weight: bold;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    color: #939393;
    content: "/";
}


/*--------------------------------------------------------------
# Page Detail
--------------------------------------------------------------*/

.page-detail {
    color: #12303C;
    padding: 10px 0;
}
.page-detail ul {
    list-style: none;
    padding: 50px 0;
    text-align: center;
    background-color: #fff !important;
}

.page-detail li {
    padding: 10px 0;
    margin: auto 0;
    border-bottom: 1px solid #ddd;
}

.page-detail li a {
    color: #8B1622;
    font-size: 17px;
    font-weight: 100;
}
.page-detail li a.active {
    font-size: 19px;
    font-weight: bold;
}

.page-detail h3 {
    font-size: 25px;
    font-weight: 700;
    padding: 40px 0px 20px;
}

.page-detail p {
    font-size: 12px;
    font-weight: 300;
    line-height: 25px;
}

.page-detail img {
    width: 100%;
}

.page-detail .content {
    padding-left: 50px;
}

.page-detail .content-image{
    padding-top: 100px;
}

.page-detail .news {
    background-color: #fff;
}

.page-detail .career  {
    padding-top: 50px;
}
.page-detail .career h3 {
    font-size: 21px;
}

.page-detail .career h4 {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 35px;
    color: #979aa1;
    padding: 13px;
}
.page-detail .image  {
    position: relative;
}
.page-detail .image .logo {
    position: absolute;
    left: 0;
    width: 215px;
    top: 195px;
    background-color: #fff;
    padding: 35px;
    border-radius: 0 100px 100px 0;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-detail{
    font-size: 13px;
    color: #959595;
}
.contact-detail .content img{
    width: 200px;
}

.contact-detail .address{
    width: 300px;

}
.contact-detail .content .address p {
    font-size: 15px;
    padding-top: 30px;
}
.contact-detail .content .address a {
    font-size: 15px;
    color: #959595;
    display: block;
}
.contact-detail .content h3 {
    font-size: 18px;
    color: #12303C;
}
.contact-detail .content.family {
    text-align: center;
}
.contact-detail .content.family .title {
    padding-top: 50px;
    font-size: 19px;
    font-weight: bold;
    color: #3B3C3E;
}
.contact-detail .content.family .group-logo img {
    padding: 15px 35px;
}


.contact-detail .form {
    background-color: #F7F7F7;
    padding: 30px;
}

.contact-detail .form .form_control {
    width: 100%;
    padding: 0 30px;
    border: 1px solid rgba(14, 19, 23, 0.1);
    border-radius: 5px;
    height: 50px;
    margin-bottom: 20px;
    font-size: 12px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: #707070;
}
.contact-detail .form .form_control::placeholder {
    color: #afafaf;
}

.contact-detail .form .send {
    color: #910C18;
    font-size: 13px;
    align-items: center;
}

.contact-detail .form_group button {
    color: #fff;
    background-color: #910C18;
    padding: 5px 40px;
    border: 0px;
    border-radius: 20px;
}
.contact-detail .form_group .radio {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.contact-detail .form_group .radio input  {
    margin-left: 40px;
}
.contact-detail .form_group .radio label {
    margin-left: 15px;
}

.contact-detail .form_group button i {
    font-size:25px
}

textarea.form_control {
    padding-top: 15px !important;
    display: inherit;
    height: 145px !important;
}

.map-box iframe {
    min-height: 500px;
}
.map-box iframe {
    width: 100%;
    display: inherit;
    border: none;
}

.map {
    padding: 50px 0 0;
}
















.contact .info-box {
    color: #707070;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: #71B32F;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}





