
/*-------------------------------------------------
General CSS 
---------------------------------------------------*/
 body {
     background: #ffffff;
     font-family: 'Heebo', sans-serif;
     font-size: 18px;
     font-weight: 400;
     line-height: 30px;
     color: #444444;
     overflow-x: hidden;
     direction: rtl;
     text-align: right;
}

/* Custom Container */
@media (min-width: 1366px) {
    .container {
        max-width: 1280px;
    }
}

/* Common CSS */
 h1, h2, h3, h4, h5, h6 {
     font-family: 'Heebo', sans-serif;
     color: #222222;
     line-height: 1.2;
     font-weight: 700;
     margin-top: 0;
     margin-bottom: 10px;
     padding: 0;
     text-transform: capitalize;
}
p {
     margin: 0;
     padding: 0;
}
a {
     margin: 0;
     padding: 0;
     text-decoration: none;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 a:focus, a:hover {
     text-decoration: none;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 ul {
     margin: 0;
     padding: 0;
}
 ul li {
     list-style-type: none;
     margin: 0;
     padding: 0;
}
 img {
     max-width: 100%;
     height: auto;
}
/* Form CSS */
 .form-control {
     height: 45px;
     margin-bottom: 30px;
     box-shadow: none;
     border: 1px solid #e4e4e4;
     -webkit-box-shadow: none;
     -moz-box-shadow: none;
     border-radius: 0px;
     -moz-border-radius: 0px;
     -webkit-border-radius: 0px;
}
 .form-control:focus {
     border-color: #999999;
     box-shadow: none;
     -webkit-box-shadow: none;
     -moz-box-shadow: none;
}

 ::-webkit-input-placeholder {
     color: #676767 !important;
}
 ::-moz-placeholder {
     color: #676767 !important;
}
 ::-o-placeholder {
     color: #676767 !important;
}
 :-ms-input-placeholder {
     color: #676767 !important;
}
 input:-moz-placeholder {
     color: #676767 !important;
}

/* Background Over Layer CSS */
 .over-layer-black {
     position: relative;
}
 .over-layer-black:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     background-color: rgba(34, 34, 34, 0.8);
}
 .over-layer-white {
     position: relative;
}
 .over-layer-white:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     background-color: rgba(255, 255, 255, 0.8);
}




/* Theme btn CSS */
 .theme-btn {
     display: inline-block;
     vertical-align: middle;
     -webkit-transform: perspective(0px) translateZ(0);
     transform: perspective(0px) translateZ(0);
     position: relative;
     background: #80b82f;
     border: none;
     text-transform: capitalize;
     padding: 12px 25px 12px;
     border-radius: 0;
     -webkit-transition-property: color;
     transition-property: color;
     -webkit-transition-duration: 0.3s;
     transition-duration: 0.3s;
}
 .theme-btn i {
    font-size: 30px;
    position: relative;
    bottom: -5px;
 }
 .theme-btn:hover {
     background: #80b82f;
}
 .theme-btn:before {
     content: "";
     position: absolute;
     z-index: -1;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
      border-radius: 0;
     background: #efefef;
     -webkit-transform: scaleX(0);
     transform: scaleX(0);
     -webkit-transform-origin: 50%;
     transform-origin: 50%;
     -webkit-transition-property: transform;
     transition-property: transform;
     -webkit-transition-duration: 0.3s;
     transition-duration: 0.3s;
     -webkit-transition-timing-function: ease-out;
     transition-timing-function: ease-out;
}
 .theme-btn:hover, .theme-btn:focus, .theme-btn:active {
     color: #80B82F;
     box-shadow: none;
}
 .theme-btn:hover:before, .theme-btn:focus:before, .theme-btn:active:before {
     -webkit-transform: scaleX(1);
     transform: scaleX(1);
}



/* back-to-top CSS */
 #back-to-top {
    position: fixed;
    bottom: 100%;
    right: 15px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    background: #80b82f;
}

 #back-to-top.show {
    opacity: 1;
    bottom: 15px;
    transition: 1s ease-out;
}




/* Pagination CSS */
 .my-pagination {
     text-align: center;
     display: flex;
     justify-content: center;
}
 .my-pagination {
     margin-top: 20px;
}
 .my-pagination .page-link {
     color: #80b82f;
     margin: 0 10px;
     padding: 3px 15px;
     border: 1px dashed #80b82f;
}
 .my-pagination .page-link:hover {
    background: #80b82f;
    border-color: #80b82f;
    color: #ffffff;
 }
 .my-pagination .page-item.active .page-link {
     background: #80b82f;
     border-color: #80b82f;
}




/*------------------------------------------------ 
 Header CSS 
--------------------------------------------------*/
.header-area {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-area .container-fluid {
    padding: 0 150px;
}
/* Header Nav CSS Start */
.header-navbar {
   
}
.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-logo img {
    height: auto;
}
.stellarnav ul {
    text-align: left;
}
.stellarnav>ul>li>a {
    color: #444444 !important;
    text-transform: capitalize;
    padding: 35px 20px;
    position: relative;
}
.stellarnav>ul>li>a:hover {
  color: #80B82F !important;
}
.stellarnav>ul>li:last-child a {
  padding-left: 0;
}
.stellarnav>ul>li.menu-item-has-children>a:before {
    content: "\f107";
    font-family: 'FontAwesome';
    color: #80b82f;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.stellarnav.light {
  background: transparent;
}
.stellarnav>ul>li>a:hover {
    border-bottom-color: #80b82f;
}
.stellarnav>ul>li.active>a {
    border-bottom-color: #80b82f !important;
}
.stellarnav ul ul {
    border-radius: 0;
    border-top: 2px solid #80b82f;
    background-color: #efefef !important;
}
.stellarnav ul li ul li a {
    padding: 15px 15px;
    border-bottom: 1px solid rgba(0,0,0,.15);
    text-transform: capitalize;
}
.stellarnav li.has-sub>a:after {
  display: none;
}


/* Header Top Bar CSS */
.header-topbar {
  padding: 10px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  background-color: #f5f5f5;
}
.header-topbar-col {
  text-align: left;
  margin-bottom: 10px;
}
.topbar-info ul li {
  display: inline-block;
  color: #444444;
  margin-right: 20px;
}
.topbar-info ul li i {
  color: #80b82f;
  margin-left: 5px;
}
.topbar-info ul li:last-child {
  float: left;
  margin-right: 0;
}
.topbar-info ul li a {
  background-color: #80b82f;
  color: #ffffff;
  padding: 10px 20px;
}



/* NavBar Fixed CSS */
.fixed-header {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999999;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.fixed-header .header-logo .logo-white {
  display: none;
}
.fixed-header .header-logo .logo-black {
  display: block;
}
.fixed-header .stellarnav>ul>li>a {
    color: #333333 !important;
}
.fixed-header .stellarnav>ul>li>a:before {
    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.current-menu-item {
  border-bottom: 2px solid #80b82f;
}









/*------------------------------------------------ 
Main slider CSS
--------------------------------------------------*/
.main-slider-area {
  overflow: hidden;
}
.pogoSlider {
    height: 84vh;
}
.pogoSlider-dir-btn {
  z-index: 1;
  width: 30px;
  height: 30px;
}
.pogoSlider--dirBottomRight .pogoSlider-dir-btn--next, 
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--next, 
.pogoSlider--dirTopRight .pogoSlider-dir-btn--next {
    right: 20px;
}
.pogoSlider--dirBottomLeft .pogoSlider-dir-btn--prev, 
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--prev, 
.pogoSlider--dirTopLeft .pogoSlider-dir-btn--prev {
    left: 20px;
}
.pogoSlider-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pogoSlider-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.6);
}
.silder-elements {
    text-align: center;
    position: relative;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
    padding: 0;
}
.slider-para {
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 10px;
    font-size: 15px !important;
    margin-bottom: 35px !important;
    border-bottom: 1px dashed #ffffff;
    display: inline-block;
}
.slider-main-title {
  display: block;
  width: 100%;
  font-size: 60px !important;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.1;
  display: inline-block;
  padding: 5px 25px 12px;
}
.slider-main-title span {
    -webkit-text-stroke-color: #D6A354;
}
.silder-elements .theme-btn {
    margin: 0 5px;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 20px;
}
.silder-elements .theme-btn:hover {
  color: #80B82F;
}
.pogoSlider--navBottom .pogoSlider-nav {
    display: none;
}

.jarallax {
  position: relative;
  z-index: 0;
}
.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: 'object-fit: cover;';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}






/*------------------------------------------------ 
About CSS
--------------------------------------------------*/
.about-area {
  padding: 100px 0 70px;
  overflow: hidden;
}
.about-area .row {
  align-items: center;
}
.about-col {
  margin-bottom: 30px;
  padding-right: 60px;
}
.about-img {
  padding-right: 0;
  margin-right: 20px;
  position: relative;
}
.about-img-1 {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border: 1px dashed #dddddd;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.about-img-2 {
  position: absolute;
  left: -30px;
  top: -30px;
  z-index: 0;
  width: 200px;
  height: 200px;
  padding: 10px;
  background-color: #ffffff;
  border: 1px dashed #dddddd;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.about-col:hover .about-img-2 {
  transform: scale(1.2);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.myvideo {
  position: absolute;
  right: 50px;
  top: 40px;
  bottom: 1px;
}
.myvideo a {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #80B82F;
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  color: #ffffff;
}
.about-img h5 {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 1;
  color: #80B82F;
  font-weight: 500;
  background-color: rgba(0,0,0,0.8);
  padding: 10px 20px;
  margin: 0;
}
.title-col {
  margin-bottom: 50px;
  margin-top: -10px;
}
.title-col h2 {
  font-size: 40px;
}
.title-col span {
  font-weight: 500;
}
.about-area .title-col {
    margin-bottom: 30px;
}
.about-col p {
  margin-bottom: 20px;
}
.counter-cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.counter-col {
  width: 30%;
  text-align: center;
  padding: 30px 20px;
  border: 1px dashed #dddddd;
}
.counter-col span {
  text-transform: capitalize;
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.counter-col h4 {
  position: relative;
  display: inline-block;
}
.counter-col h4:before {
  content: "+";
  position: absolute;
  right: -15px;
  top: 0;
  z-index: 0;
}
.hilight-text {
  background-color: #f5f5f5;
  padding: 20px 20px;
  margin-bottom: 30px;
}
.hilight-text h5 {
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.5;
}



/*****-----*****-----*****-----*****
    About two CSS
*****-----*****-----*****-----*****/
.about-two-area {
    padding: 120px 0 215px;
}
.about-two-col {
    position: relative;
}
.about-two-img {
    margin-right: 200px;
}
.about-two-img img {
    width: 100%;
}
.about-content {
  background-color: rgba(255,255,255,0.9);
  padding: 30px 30px;
  position: absolute;
  right: 0;
  top: 200px;
  z-index: 0;
  max-width: 900px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}
.about-content .my-title {
    margin-bottom: 20px;
}
.about-content .my-title:before {
    left: 0;
    transform: translateX(0);
}
.about-content .my-title p {
    margin-bottom: 0 !important;
}
.about-content p {
    margin-bottom: 10px;
}



/*------------------------------------------------ 
Service Start
--------------------------------------------------*/
.service-area {
  padding: 100px 0 70px;
  background-color: #f5f5f5;
  overflow: hidden;
}
.service-col {
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-col:hover {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.15);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-img {
  border: 1px dashed #dddddd;
  border-bottom: none;
}
.service-img img {
  width: 100%;
}
.service-col-text {
  border: 1px dashed #dddddd;
  border-top: none;
  padding: 20px 20px;
  text-align: center;
}
.service-col-text h4 {

}
.service-col-text a {
  color: #444444;
  text-transform: capitalize;
}

.service-details-area {
  padding: 100px 0 70px;
  overflow: hidden;
}
.mb-30 {
  margin-bottom: 30px;
}
.service-details-col h2 {
  font-size: 40px;
}
.service-details-col p {
  margin-bottom: 15px;
}
.service-details-image img {
  width: 100%;
}






/*------------------------------------------------ 
Testimonial CSS
--------------------------------------------------*/
.testimonial-area {
  padding: 100px 0 85px;
  position: relative;
  overflow: hidden;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.testimonial-area .title-col span {
  left: 0;
  transform: translate(0, -50%);
}
.testimonial-col {
  position: relative;
  z-index: 1;
}
.testimonial-item {
  position: relative;
  padding: 30px 20px 25px;
  border: 1px dashed #dddddd;
  background-color: #ffffff;
  display: flex;
  width: 100%;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  margin-left: 20px;
}
.testimonial-img img {
  width: 80px;
  height: 80px;
}
.testimonial-content {
  width: 80%;
}
.testimonial-content p {
  margin-bottom: 20px;
}
.testimonial-content h5 {
  margin-bottom: 0;
}
.testimonial-man-img {
  position: absolute;
  right: 50px;
  bottom: 0;
  z-index: 1;
}
.testimonial-man-img img {
  max-width: 900px;
}

/* Pagination CSS */
.my-pagination {
  text-align: center;
  display: flex;
  justify-content: center;
}
 .my-pagination {
  margin-top: 20px;
}
 .my-pagination .page-link {
  color: #80B82F;
  margin: 0 10px;
  padding: 3px 15px;
  border: 1px dashed #dddddd;
}
.my-pagination .page-link:hover {
  background: #80B82F;
  border-color: #80B82F;
  color: #ffffff;
 }
.my-pagination .page-item.active .page-link {
  background: #80B82F;
  border-color: #80B82F;
  color: #ffffff;
}




/*------------------------------------------------ 
 FAQ CSS
--------------------------------------------------*/
.faq-area {
  padding: 100px 0;
  background-color: #F4F8EA;
}
.accordion-flush .accordion-item .accordion-button, 
.accordion-flush .accordion-item .accordion-button.collapsed {
  background-color: #80B82F;
  color: #ffffff;
}
.accordion-button {
  font-size: 24px;
  line-height: 1.3;
}
.accordion-button:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #000000;
}




/*------------------------------------------------ 
 Logo CSS
--------------------------------------------------*/
.logos-area {
  padding: 50px 0;
  background-color: #f5f5f5;
}



/*------------------------------------------------ 
 Pagename area
--------------------------------------------------*/
.pagename-area {
  padding: 100px 0 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.pagename-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}
.pagename-col {
  width: 100%;
  max-width: 500px;
  background-color: rgba(255,255,255,0.1);
  padding: 30px 30px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pagename-col:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 103%;
  height: 110%;
  border: 1px dashed #ffffff;
  transform: translate(-50%, -50%);
}
.pagename-col h2 {
  margin-bottom: 20px;
  font-size: 46px;
  color: #ffffff;
}
.pagename-col ul li {
  display: inline-block;
  margin: 0 5px;
  text-transform: capitalize;
  color: rgba(255,255,255,0.6);
}
.pagename-col ul li a {
  color: #ffffff;
}



/*------------------------------------------------ 
Contact CSS
--------------------------------------------------*/
.contact-area {
  padding: 100px 0;
  position: relative;
}
.contact-col {
  display: flex;
  background-color: #F5F5F5;
  padding: 50px 30px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 60px 80px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 60px 80px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 60px 80px 0px rgba(0,0,0,0.15);
}
.contact-info-col {
  width: 40%;
  text-align: center;
}
.contact-info-box {
  text-align: center;
  margin-bottom: 30px;
}
.contact-info-box i {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  line-height: 50px;
  background-color: #80B82F;
  border-radius: 50%;
  margin-bottom: 15px;
}
.form-col {
  width: 58%;
  margin: 0 auto;
  padding: 30px;
  border: 1px dashed #dddddd;
}
.form-col .form-control {
  min-height: 48px;
  border: none;
  text-align: right;
}
.form-col textarea.form-control {
  height: 100%;
}
.form-col .btn {
  margin-top: 30px;
}
.map-area {
  padding-bottom: 100px;
}
#map {
  width: 100%;
  height: 470px;
}







/*------------------------------------------------ 
 Footer CSS
--------------------------------------------------*/
.footer-area {
  padding-top: 100px;
  border-top: 1px dashed #dddddd;
  background-color: #111111;
}
.footer-col {
  margin-bottom: 30px !important;
}
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
}
.footer-about {

}
.footer-about p {
  color: #dddddd;
}
.footer-about ul {
  margin-top: 30px;
}
.footer-about ul li {
  display: inline-block;
  margin-left: 10px;
}
.footer-about ul li a i {
  font-size: 20px;
  background: #ffffff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #80b82f;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-about ul li a i:hover {
  background: #80b82f;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-news {

}
.news-item {
  min-height: 100px;
  position: relative;
  padding-right: 100px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.news-item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.news-img {
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 0;
  width: 80px;
  height: 80px;
}
.news-item a {
  color: #dddddd;
  line-height: 24px;
}
.news-item span {
  display: block;
}
.news-item span a {
  color: #80b82f;
  font-size: 12px;
  line-height: 18px;
}
.footer-contact ul li {
  color: #dddddd;
  padding-right: 30px;
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.footer-contact ul li i {
  position: absolute;
  right: 0;
  top: 7px;
  z-index: 0;
  color: #80b82f;
}
.copyright {
  padding: 0 15px;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 15px;
}
.copyright p {
  color: #a5a5a5;
}





/*------------------------------------------------ 
            Responsive CSS
--------------------------------------------------*/

@media only screen and (max-width:1920px) {
  
}

@media only screen and (max-width:1680px) {
  
}

@media only screen and (max-width:1600px) {
  
}

@media only screen and (max-width:1440px) {
  
}

@media only screen and (max-width:1366px) {
  .about-content {
    top: 100px;
  }
}


@media only screen and (max-width:1199px) {
  .about-content {
    position: relative;
    top: auto;
    margin-top: -100px;
    max-width: 90%;
  }
  .about-two-area {
    padding-bottom: 100px;
  }
  .about-two-img {
    margin-right: 100px;
  }
}

@media only screen and (max-width:1024px) {
  
}

@media only screen and (max-width:991px) {
  
  /* Header Nav CSS Start */
  .header-area {
    z-index: 9;
  }
  .nav-search-col {
    
  } 
  .nav-search-col ul {
    text-align: right;
  }
  .stellarnav.mobile.right>ul {
    max-width: 100%;
  }
  .stellarnav.light {
    text-align: left;
  }
  .stellarnav .menu-toggle {
    padding: 0;
    margin-top: 32px;
  }
  .header-logo {
    padding: 10px 0;
  }
  .nav-search-col ul {
    margin: 30px 0;
  }
  .fixed-header .nav-search-col ul {
    margin: 20px 0;
  }
  .stellarnav>ul>li.menu-item-has-children>a:before {
    display: none;
  }
  .stellarnav > ul > li > a {
    color: #333333 !important;
  }
  .stellarnav.light .menu-toggle span.bars span {
    background-color: #000000;
  }
  .stellarnav .menu-toggle span.bars span {
    width: 25px;
    height: 3px;
    margin: 0 0 5px;
  }

  
  /* Header Nav CSS End */
  
  .stellarnav .menu-toggle {
    margin-top: 25px;
  }
  .about-img-1{
    max-width: 600px;
  }
  .about-col {
    padding-right: 0;
  }
  .about-img {
    margin-right: 0;
  }
  .contact-col {
    display: block;
  }
  .contact-info-col,
  .form-col {
    width: 100%;
  }

  
}

@media only screen and (max-width:767px) {
  .slider-main-title {
    font-size: 32px !important;
  }
  .about-two-img {
    margin-right: 0;
  }
  .about-content {
    margin-top: 0;
    max-width: 100%;
  }
  .title-col h2,
  .service-details-col h2,
  .pagename-col h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width:600px) {
  
}

@media only screen and (max-width:575px) {
  .about-img-2 {
    left: 30px;
    top: 30px;
  }
  .silder-elements .theme-btn {
    margin-bottom: 10px;
  }
  .testimonial-item {
    display: block;
    text-align: center;
  }
  .testimonial-content {
    width: 100%;
  }
  .testimonial-img {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width:480px) {
  .about-img-2 {
    width: 120px;
    height: 120px;
  }
  .slider-para {
    letter-spacing: 1px;
  }
  .form-col {
    padding: 0;
    border: none;
  }

}

@media only screen and (max-width:420px) {
  
}

@media only screen and (max-width:375px) {
  .myvideo {
    right: 20px;
    top: 20px;
  }
  .myvideo a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

@media only screen and (max-width:320px) {

}