/*--
<!-- GTcms :: GT Web Framework-->
--*/

:root {
  /*--color1: #b3002d;
  --color1rgb: 179, 0, 45;
  --color2: #ff4c79;
  --color2rgb: 255, 76, 121;
  --color3: #d90036;*/
  
  --color1: #00b386;
  --color1rgb: 0, 179, 134;
  --color2: #00d9a3;
  --color2rgb: 118, 214, 252;
  --color3: #08a5fb;
  
  --themecolor: var(--color1);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
	scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  font-family: 'Avenir LT Pro 45 Book', sans-serif;
  color: #444444;
  /*max-width:1280px;*/
  margin: 0 auto;
}

a {
  color: var(--color1);
  color: #eee;
  text-decoration: none;
}

a:hover {
  color: var(--color2);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-family: 'Avenir LT Pro 85 Heavy', sans-serif;
}
p {
	line-height:1.7em;
	font-size:17px;
	font-family: 'Helvetica Light', sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color1);
  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: var(--color2);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  height: 106px;
  transition: all 0.5s;
  z-index: 997;
  background: #000;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    /*height: 60px;*/
  }
}

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

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

.navbar li {
  position: relative;
  margin: 0 10px;
}

.navbar > ul > li + li {
  /*margin-left: 30px;*/
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: var(--color1);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
  margin: 0 .5rem;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
  width: calc( 100% - 1rem );
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
  color: var(--color2);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  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;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #062822;
}

.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: var(--color1);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  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: var(--color1);
  color: #fff;
  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;
	transition: all .3s ease-in-out;
  }*/
}


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

.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 > ul > li + li {
  margin: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

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

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--color1);
}

.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: var(--color1);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: calc(100vh - 70px);*/
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-family: 'Avenir LT Pro 85 Heavy', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  border-color: var(--color1);
  background: var(--color1);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

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

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

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

.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #21413c;
  font-size: 3.45rem;
  letter-spacing: .175rem;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

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

.breadcrumbs ol li + li {
  padding-left: 10px;
}

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: #21413c;
}

.about .icon-box {
  margin-top: 44px;
}

.about .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--color1);
}

.about .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-left: 60px;
  color: #21413c;
}

.about .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding: 50px 0 40px 0;
}

.steps .row {
  overflow: hidden;
}

.steps .content-item {
  padding: 40px;
  border-left: 1px solid #d4e9e6;
  border-bottom: 1px solid #d4e9e6;
  margin: -1px;
}

.steps .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--color1);
}

.steps .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
  color: #21413c;
}

.steps .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .steps .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #21413c;
}

.features .nav-link:hover {
  color: var(--color1);
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link.active {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.12);
}

.features .nav-link.active h4 {
  color: var(--color1);
}

.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

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

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #a8d3cc;
  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: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #eff7f6;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.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 var(--color1);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color1);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}

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

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: var(--color1);
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

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

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4ae3c6;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# 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 var(--color1);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color1);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 65, 60, 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(0, 0, 0, 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: var(--color1);
}

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

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 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;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-family: 'Avenir LT Pro 85 Heavy', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #97cac2;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--color1);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: var(--color1);
  float: left;
  width: 44px;
  height: 44px;
  background: #e1f0ee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #21413c;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #43857a;
  color: #444;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--color1);
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: var(--color1);
  color: #fff;
}

.contact .cform {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .cform .form-group {
  padding-bottom: 8px;
}

.contact .cform .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .cform .error-message br + br {
  margin-top: 25px;
}

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

.contact .cform .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

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

.contact .cform input, .contact .cform textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .cform input {
  height: 44px;
}

.contact .cform textarea {
  padding: 10px 12px;
}

.contact .cform button[type="submit"] {
  background: var(--color1);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .cform button[type="submit"]:hover {
  background: var(--color1);
}

@-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 {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c1817;
  border-bottom: 1px solid #18302c;
  padding: 60px 0 30px 0;
}

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

#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: "Raleway", sans-serif;
  font-family: 'Avenir LT Pro 85 Heavy', sans-serif;
  color: #fff;
}

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

#footer .footer-top .social-links a:hover {
  background: var(--color1);
  color: #fff;
  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: #4ae3c6;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 2px 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;
  padding: .5rem .5rem;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--color2);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 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: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color1);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

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

/*--xtraStyles--*/

.hide{
	display:none !important;
}
.map hr {
    margin-top: .5rem;
    margin-bottom: .2rem;
}
.sptn {
    display: none !important;
}
.error { 
	display: none; 
	padding:10px; 
	margin:0 0 5px 0;
	color: #D8000C; 
	font-size:1em;
	background-color: #FFBABA;
	letter-spacing: .5px;
}
.success { 
	display: none; 
	padding:10px; 
	color: #044406; 
	font-size:1em;
	background-color: #B7FBB9;
	letter-spacing: .5px;
}
.error img { 
	vertical-align:top; 
}
.txtcenter{
	text-align:center;
}
.img-responsive {
    max-width: 100%;
    height: auto;
}
#header .logo img {
    max-height: 60px;
    max-height: 140px;
}
.swiper-slide img{
	width:100%;
}
.swiper-container {
	/*margin-top: 70px;*/
}
.banner-caption {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  width:100%;
	z-index: 1;
	max-width: 692px;
}
.banner-caption h3{
	font-size: 3.5rem;
	color: #ffffff;
	letter-spacing: 3px;
	text-align: center;
	/*font-family: 'Stardos Stencil', cursive;
	text-shadow: 1px 1px 1px #000;
	line-height: 1.5em;*/
	text-transform: uppercase;
	font-weight: 500;
	font-size: 60px;
}
#slider{
	/*display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;*/
	position: relative;
	overflow: hidden;
	background: #f7f7f7;
}
.goicon a{
	font-size: 60px;
	color:#fff;
}
.shadoweffect2 {
    max-height: 750px !important;
    max-width: 1280px !important;
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
}
.banner1{
	overflow:hidden;
}
.bot-img .icon a img {
    height: 130px;
	filter: drop-shadow(2px 2px 2px #666);
}
a.tclnk {
    color: var(--color1);
	transition: all 0.3s ease-in;
}
a.tclnk:hover {
    color: var(--color2);
	transition: all 0.3s ease-in;
}

.items {
    /*background: url(../../images/pic11.jpg) no-repeat center;*/
	background: linear-gradient(rgba(var(--color1rgb),.3),rgba(var(--color1rgb),.5)), 
				url(../../images/pic11.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    -moz-background-size: cover;
    padding: 90px 0;
	/*box-shadow: inset 0 0 0 4000px rgba(var(--color1rgb),.5);*/
}
.items .semitrbg {
	background: rgba(255,255,255,0.7);
}
.items .section-title {
	padding-top: 40px;
}
.items .section-title h2 {
	font-weight: 500;
}
.section-bg {
    background-color: rgba(var(--color1rgb), 0.06);
}
.shbx01-left {
	box-shadow: rgba(var(--color1rgb), 0.4) -5px 5px, 
				rgba(var(--color1rgb), 0.3) -10px 10px, 
				rgba(var(--color1rgb), 0.2) -15px 15px, 
				rgba(var(--color1rgb), 0.1) -20px 20px, 
				rgba(var(--color1rgb), 0.05) -25px 25px;
	border: 2px solid rgba(var(--color1rgb),.5);
}
.shbx01-right {
	box-shadow: rgba(var(--color1rgb), 0.4) 5px 5px, 
				rgba(var(--color1rgb), 0.3) 10px 10px, 
				rgba(var(--color1rgb), 0.2) 15px 15px, 
				rgba(var(--color1rgb), 0.1) 20px 20px, 
				rgba(var(--color1rgb), 0.05) 25px 25px;
	border: 2px solid rgba(var(--color1rgb),.5);
}
.shbxbg {
	background-color:rgba(255,255,255,0.6);
	border-radius: 100px;
}
.quality figure {
    margin: 0;
    padding: 0;
    /*height: 300px;*/
    position: relative;
    display: block;
    /*cursor: pointer;*/
    overflow: hidden;
}
.wrap-image {
	 position: relative;
}
 .wrap-image::before, .wrap-image::after {
	 content: "";
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 z-index: -1;
	 border: 2px solid var(--color1);
	 transition: all 0.25s ease-out;
}
 .wrap-image::before {
	 background-color: var(--color1);
	 top: -5px;
	 left: -5px;
}
 .wrap-image::after {
	 bottom: -5px;
	 right: -5px;
}
 .wrap-image:hover::before {
	 top: 5px;
	 left: 5px;
}
 .wrap-image:hover::after {
	 bottom: 5px;
	 right: 5px;
}
.box281{
    background: var(--color1);
    /*font-family: 'Raleway', sans-serif;*/
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
	/*outline-offset: -10px;
	outline: 10px solid rgba(var(--color1rgb),.7);*/
	outline-offset: -20px;
	outline: 1px solid #eee;
}
.box281:before{
    content: "";
    background: #fff;
    box-shadow: 0 0 50px rgba(0,0,0,0.5) inset;
    border-radius: 0 20px;
    opacity: 0;
    transform: perspective(1000px) rotateX(90deg);
    transform-style: preserve-3d;
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    transition: all 0.3s ease-in;
}
.box281:hover:before{
    opacity: 1;
    transform: perspective(1000px) rotateX(0);
}
.box281 img{
    width: 100%;
    height: auto;
	height: 100%;
	object-fit: cover;
    transition: all 0.3s ease 0s;
}
.box281:hover img{
    opacity: 0.5;
    transform: scale(1.1);
}
.box281 .box281-content{
    color: #fff;
    background: rgba(var(--color1rgb), 0.7);
	box-shadow: 0px 0px 1px #444;
    text-align: center;
    width: 80%;
    padding: 15px 10px;
    border-radius: 0 20px;
    opacity: 0;
    transform: translateX(-50%) translateY(-200%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transition: all 0.3s ease-out;
}
.box281:hover .box281-content{
    opacity: 1;
    transform: translateX(-50%) translateY(-60%);
}
.box281 .title{
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin: 0 0 5px;
}
.box281 .post{
    font-size: 16px;
    font-style: italic;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.box281 .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: -20px;
    transition: all 0.3s ease 0s;
}
.box281:hover .icon{
    opacity: 1;
    bottom: 20px;
}
.box281 .icon li{
    display: inline-block;
    margin: 0 5px;
	box-shadow: 0px 0px 1px #444;
}
.box281 .icon li a{
    color: #fff;
    background: var(--color1);
    font-size: 14px;
    text-align: center;
    line-height: 38px;
    /*width: 50px;
    height: 38px;*/
	padding: 0 10px;
    outline-offset: -5px;
    outline: 2px solid #fff;
    display: block;
    transition: all 0.35s ease 0s;
}
.box281 .icon li a:hover{
    color: var(--color1);
    background: #fff;
    outline-color: var(--color1);
    box-shadow: 0 0 5px rgba(0,0,0,0.5) inset;
}
.box281 .icon i{
	font-size: 1.3rem;
	line-height: 2.2rem;
}
.box281 .icon span{
	font-size: 1.0rem;
	line-height: 2.2rem;
}
.box2:before{
    content: "";
    width: 50px;
    height: 50px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: top right;
    transform: scale(1);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	left: unset;
	opacity: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.4s ease;
}
.box2:after{
    content: "";
    width: 50px;
    height: 50px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform-origin: top right;
    transform: scale(1);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	right: unset;
	opacity: 1;
    position: absolute;
    bottom: 20px;
    left: 20px;
    transition: all 0.4s ease;
}
.imgbx01{
	position: relative;
	display: block;
	border-radius: 3px;
	overflow: hidden;
}
.imgbx01:after{
    content: "";
	box-shadow: 0px 0px 12px #444 inset;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.footer-info ul{
	list-style:none;
	padding-left: 0;
}
.footer-links ul li::before {
    content: "\f280";
    font-family: bootstrap-icons !important;
    display: inline-block;
    width: 1.3em;
    color: var(--color2);
    margin-right: 0px;
    /*font-weight: 900;*/
	font-size: .8rem;
}
#footer .footer-top {
	background: 
	/* Make a bit darker */
		linear-gradient( to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9) ) var(--color1);
	border-bottom:none;
}
.tclinedark {
  /*background: linear-gradient(#222, #222), 
              linear-gradient(to right, red, purple);*/
	background: linear-gradient(#222, #222), linear-gradient( to right, rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75) ) var(--color1); 
	background-origin: padding-box, border-box;
	background-repeat: no-repeat; /* this is important */
	border-top: 1px solid transparent;
}
.autohide{
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	z-index: 1030;
}
.scrolled-down{
  transform:translateY(-110%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
  transform:translateY(0); transition: all 0.3s ease-in-out;
}
.scrolled-top{
	position: relative;
}
.cursor-pointer{
  cursor: pointer;
}
.gallery{
	padding-top: 3em;
	padding-bottom: 3em;
}
.pgttl{
	text-align:center;
	font-size:2.1rem;
	padding-bottom: 1rem;
	color: var(--color1);
	text-shadow: 1px 1px 0px #888;
}
/*PAGINATION#2 STYLES*/
div.pagination,
div.pagination a,
div.pagination span.page_current,
div.pagination span.page_disabled {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;	
}
div.pagination{
	/*background-color: rgba(var(--color1rgb),0.7);
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.95);*/
	border-radius: 0 !important;
	margin-bottom:0px;
}
div.pagination a,div.pagination span.page_current,div.pagination span.page_disabled {
	background-color: var(--color1);
}
div.pagination a {
  font-weight: 700;
  /*padding-top: 1px;*/
  text-decoration:none;  
  border: 1px solid rgba(0,0,0,.25);
  border-left-width: 0;
  min-width:44px;
  min-width:55px;
  min-height:44px;
  min-height:38px;
  color: rgba(255,255,255,.85);  
  box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,.35);
  overflow:hidden;
  border-radius: 15px;
	margin: 5px;
}
div.pagination a:hover, div.pagination a:active {
  background-color: rgba(var(--color2rgb),0.4);
  border-top-color: rgba(0,0,0,.35);
  border-bottom-color: rgba(0,0,0,.5);
  color: #400000;
}
div.pagination span.page_current, .page-item.active .page-link {
  font-weight: 700;
  /*min-width:44px;
  min-height:44px;*/

  padding-top:.25em;
  color: #401000;
  background-color: var(--color2);
  background-color: rgba(var(--color1rgb),.4);
  box-shadow: inset 0px 2px 1px 0px rgba(0,0,0,.25);
  cursor: default;
  pointer-events: none;
}
div.pagination span.page_disabled, .page-item.disabled .page-link {
  font-weight: 300;
  padding-top: 1px;
  text-decoration:none;  
  border: 1px solid rgba(0,0,0,.25);
  border-left-width: 0;
  /*min-width:44px;
  min-height:44px;*/
  color: rgba(64,0,0,0.85);  
  box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,.35);

  pointer-events: none;
  color: rgba(204,204,204,0.9); 
	background-color: var(--color1);  
}
.div.pagination a:first-of-type {
    border-left-width: 1px;
}
.pagination .prev:first-of-type {
    border-left-width: 1px;
}
.pagination .next:last-of-type {
    border-right-width: 1px;
}
span.prev {
  font-size: 0;
}
a.prev {
  font-size: 0;
}
.pagination .prev:after {
  font-family: 'Glyphicons Halflings';
  font-size: 18px;
  text-rendering: auto;
  content:"\e079";
  text-transform: uppercase;
}
span.next {
  font-size: 0;
}
a.next {
  font-size: 0;
}
.pagination .next:after {
  font-family: 'Glyphicons Halflings';
  font-size: 18px;
  text-rendering: auto;
  content:"\e080";
  text-transform: uppercase;
}
ul.pagination{
	margin-bottom:0;
	flex-wrap: wrap;
	justify-content: center;
}
.page-item:not(:first-child) .page-link {
    margin-left: 0px;
}
.page-item.active .page-link {
    border-color: rgba(0,0,0,.25);
}
.page-item.disabled.ellipsis .page-link {
	background-color: rgba(var(--color1rgb),.2);
	color: #333;
}
.pagination:last-child{
	color:red;
}
.pagination li a.page-link:before{
    content: '';
    background-color: var(--color1);
    height: 150%;
    width: 5px;
    transform-origin: left bottom;
    position: absolute;
    left: -5px;
    bottom: 0;
    transition: all 0.3s ease 0s;
}
.pagination li.active a.page-link:before,
.pagination li a.page-link:hover:before{
    transform: rotate(90deg);
    bottom: 2px;
    bottom: 4px;
}
.pagination li:first-child a.page-link:before,
.pagination li:last-child a.page-link:before{
    display: none;
}
.page-item:last-child .page-link, .page-item:first-child .page-link {
    border-radius: 15px;
}
/*PAGINATION STYLES end*/
[class^='imghvr-'],
[class*=' imghvr-'] {
  background-color: var(--color2);
  background-color: rgba(var(--color1rgb),.3);
}
[class*=" imghvr-"] figcaption, [class^="imghvr-"] figcaption {
  background-color: var(--color1);
  background-color: rgba(var(--color1rgb),.7);
  padding: 1px;
}
[class*=" imghvr-"] figcaption h3, [class^="imghvr-"] figcaption h3 {
	height: 100%;
	background: rgba(244, 241, 241, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--color1);
	text-shadow: 0px 3px 1px #fff;
	/*border-radius: 25px;*/
}
[class*=" imghvr-"]:hover img, [class^="imghvr-"]:hover img {
	transform:unset;
	opacity: 1;
}
#portfolio figure {
    /*box-shadow: 2px 2px 1px #aaa;*/
    outline: 2px solid #666;
    outline-offset: -2px;
    /*border-radius: 50px;*/
    overflow: hidden;
}
.video_overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
}
.video_overlay i {
    /*position: absolute;
    top: 40%;
    left: 0%;
    width: 100%;*/
    font-size: 3.5em;
    color: #ff0000 !important;
    text-align: center;
    opacity: 0.55;
    -moz-opacity: 0.55;
    -webkit-opacity: 0.55;
    filter: alpha(opacity=65);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
}
.vids .panel-body{
	position: relative;
	display: block;
	outline: 2px solid #666;
	outline-offset: -2px;
	/*border-radius: 20px;*/
	overflow: hidden;
}
.vids .panel .panel-body img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.vids .panel {
	position: relative;
	overflow: hidden;
}
.vids .panel figcaption{
	padding: 30px;
	padding: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #f00;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--color1);
	text-shadow: 0px 3px 1px #fff;
	/*border-radius: 20px;*/
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
	opacity:.5;
	transform: scale(0);
}
.vids .panel .panel-body:hover figcaption{
	background-color: rgba(var(--color1rgb),.5);
	opacity:1;
	transform: scale(1);
}
.vids .panel figcaption h3{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
    font-size: 3.5em;
    color: #ff0000 !important;
	text-shadow: 0px 3px 1px #666;
	border-radius: 50px;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.vids .panel .panel-body a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.fimg {
	min-height: 250px;
	position:relative;
	overflow:hidden;
	filter: drop-shadow(0px 0px 10px var(--color1));
}
.fimg img:first-child {
	transform: scale(1);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
	position:absolute;
}
.fimg img:last-child {
	transform: scale(0);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
	position:absolute;
}
.fimg:hover img:last-child {
  transform: scale(1);
}
.fimg:hover img:first-child {
  transform: scale(0);
}
.swiper-button-prev:after, .swiper-button-next:after{
	content:'';
}
.swiper-button-prev i{
	font-size:2rem;
	position: relative;
	left: 10px;
}
.swiper-button-next i{
	font-size:2rem;
	position: relative;
	right: 10px;
}

.flip-card img {
  position: relative;
  transition: transform 0.3s;
  transform-style: preserve-3d;
  /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
}

.flip-card:hover img {
  transform: rotateY(180deg);
  transition: transform 0.6s;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--color1) }
}

#header {
	border-top: 1px solid #444;
    background: linear-gradient( to top, rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.45) ) var(--color1);
    background: var(--color1);
}
section.contact {
    padding: 0;
    overflow: hidden;
}
.frame1 {
    border: 2px dotted var(--color1);
    padding: 0px;
}
.cbox {
	padding: 25px 25px;
	background-image: url('../../images/Contactus-bg1.jpg');
	border: 4px outset var(--color2);
	box-shadow: 0 0 9px 4px rgba(0,0,0,0.5);	
}
.swiper-scale-effect .swiper-slide-cover {
 transform: scale(1.08);
  transition: 8.5s ease-out;/**/
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1);
   /*animation: scaleme 6.5s alternate infinite ease-in;*/
}
@keyframes scaleme {
  0%   {transform: scale(1);}
  60% {transform: scale(1.08);}
  100% {transform: scale(1);}
}
.qdtbox{
	flex-wrap: wrap;
	display: flex;
}
.navbar-mobile {
    position: absolute;
    overflow: unset;
	background: none;
	transition: all .3s ease-in-out;
}
.navbar-mobile ul {
    position: relative;
    top: 60px;
	left: 0;
	width:100%;
	width: calc(100% - 2rem);
	margin: 0 auto;
	transition: all .3s ease-in-out;
}
.mobile-nav-toggle {
    z-index: 1;
	transition: all .3s ease-in-out;
}
/*.swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
}
.swiper-pagination.swiper-pagination {
  bottom: 0;
}*/
.swiper-pagination-bullet {
  background: #aaa;
  width: 22px;
  /*height: 4px;*/
  width: 50px;
	max-width: 25%;
	box-shadow: 0px 2px 1px #333;
	opacity:.5;
  border-radius: 0;
  transition: opacity 1s ease;
}
.swiper-pagination-bullet-active{
  background: var(--color1);
	opacity:1;
}
.swiper-pagination-bullet.swiper-pagination-bullet.swiper-pagination-bullet {
  margin: 1px;
}
.swiper-button-next, .swiper-button-prev{
	opacity:.5;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  color: var(--color1);
	opacity:1;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.logobg {
    background: var(--color2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
width: 332px;
justify-self: start;
align-self: start;
position: absolute;
grid-area: 1 / 1 / 2 / 2;
pointer-events: auto;
height: 102px;
}
.navbar-toggler {
	z-index: 1;
}
.navbar-toggler .menui2{
	display:block;
	color:#fff;
}
.navbar-toggler.collapsed .menui2{
	display:none;
}
.navbar-toggler .menui1{
	display:none;
}
.navbar-toggler.collapsed .menui1{
	display:block;
}
.navbar-collapse .navbar-nav .nav-link {
	text-transform:uppercase;
}
.underline1 {
	background: var(--color2);
	position: relative;
    width: 115px;
    height: 9px;
	margin: 0 auto 30px;
}
.underline2 {
	background: #fff;
	position: relative;
    width: 25%;
	min-width: 120px;
    height: 2px;
	margin: 10px auto;
}
.srvimgbx .content{
	padding:30px;
	background:#f7f7f7;
}
.srvimgbx .content .ttl{
	line-height:1.1em;
	font-size:22px;
	color: rgba(var(--color1rgb),.75);
}
.srvimgbx .content p{
	line-height:1.6em;
	font-size:15px;
}
.srvimgbx .img img{
	width: 100%;
	height:225px;
	object-fit: cover;
}
section#about .section-title{
	text-align:left;
}
section#about .underline1 {
	margin-left: 0;
}
section#about .srvimgbx p {
}
.bgimg1 .container .srvimgbx2{
	display: none;
}

.bgimg1{
	position:relative;
	width:100%;
	background: url(../images/about01.jpg) no-repeat fixed center center / cover;
    background-position: top center;
    background-size: cover;
    /*background-attachment:scroll;
    height: 80vh;*/
	min-height: 90vh;
	background: #f7f7f7;
}
.bgbx1{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #f7f7f7;
}
.bgbx2{
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	height: 100%;
	height: calc(100% + 1px);
}
.bgbx2img{
	height: 100%;
	background: url(../images/about01.jpg) no-repeat fixed center center / cover;
    background-position: top center;
    background-size: cover;
}
section#counts{
	background: var(--color2);;
}
section#counts p{
	font-family: 'Avenir LT Pro 85 Heavy', sans-serif;
	color: #3D5975;
}
.brdr-rt{
	position:relative;
}
.brdr-rt:after{
	content: '';
	border-right: 2px solid #fff;
	height: 50%;
	position: absolute;
	top: 25%;
	right: 0;
}
section#counts .cttl{
	text-align: center;
	font-size: 60px;
	line-height: 70px;
	font-size: 50px;
	line-height: 58px;
}
section#counts .ctxt{
	line-height:1.1em;
	text-align:center;
	font-size:22px;
	margin: 0 auto;
	/*width: min-content;*/
	font-size:28px;
}
.ratio11 img{
	width:100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}
.ratio11 {
  display: grid;
  grid-template-columns: 1fr;
  overflow:hidden;
  position: relative;
  transition: filter .4s ease,opacity .4s ease;
}

.ratio11::before {
  content: '';
  width: 0;
  padding-bottom: calc(100% / (1/1)); /* here you can place any ratio */
  grid-area: 1 / 1 / 1 / 1;
}

.ratio11>*:first-child {
  grid-area: 1 / 1 / 1 / 1; /* the same as ::before */
  background: rgba(0, 0, 0, 0.1); /* just for instance */
}
.ratio11 img {
	transition: transform 2.2s cubic-bezier(.14,.4,.09,.99) ;
}
.ratio11:hover img {
	transform: scale(1.1);
}
.ratio11>div.overlay {
	position: relative;
	overflow:hidden;
}
.ratio11>div.overlay::before {
	content: '';
    white-space: normal;
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin: 0;
    box-sizing: border-box;
    border-radius: 0;
    z-index: 1;
    overflow: hidden;
	background: rgba(255, 255, 255, 0.8) ;
	border: 2px solid rgba(0,0,0,.05);
	pointer-events: none;
	opacity: 0;
	filter: opacity(0);
	transition: filter .4s ease,opacity .4s ease;
}
.ratio11:hover div.overlay::before {
	opacity: 1;
	filter: opacity(1);
}
.ratio11 div.caption{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color:#666;
	font-size: 1.4rem;
	pointer-events: none;
    z-index: 1;
	opacity: 0;
	filter: opacity(0);
}
.ratio11:hover div.caption {
	opacity: 1;
	filter: opacity(1);
}
.ratio11 div.caption i{
	color:var(--color1);
}
.thmlnk, .contact .cform button[type="submit"].thmlnk {
	font-weight:700;
	color:var(--color2);
	background:var(--color1);
	border-radius: 0;
}
.thmlnk:hover, .contact .cform button[type="submit"].thmlnk:hover {
	color:var(--color1);
	background:var(--color2);
}
.abgbx{
	position: absolute;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
div.logo{
	position: absolute;
	top: -32px;
	left: 0;
}
.topbar h5{
	display: flex;
	justify-content: end;
	text-transform: uppercase;
    font-size: 1rem;
	margin: 2px 0;
}
}







@media only screen and (min-width:992px){
.typewriter {
	display: inline-flex;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .1em solid var(--color1); /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 6.5s steps(30, end),
    blink-caret .5s step-end infinite;
  animation-delay: 2s;
}

}

@media only screen and (max-width:991px){
.box281 { margin: 0 0 30px; }
section {
    padding: 30px 0;
    overflow: hidden;
}
.section-title h2 {
    font-size: 1.6rem;
}
.items {
	padding: 30px 0;
}
.items .section-title {
    padding-top: 15px;
    padding-bottom: 15px;
}
.navbar .logo {
    max-width: 90%;
    max-width: calc(100% - 3.5rem);
}
.navbar .logo a{
	padding: 7.5px 0;
}
.navbar-collapse{
	box-shadow: 0px 6px 5px #888;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	background: var(--color1);
	background: linear-gradient( to top, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.65) ) var(--color1);
	position:absolute;
	top:0;
	left:0;
	height:100vh;
	width:100%;
}
.navbar ul{
	width: 100%;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}
.navbar ul li{
	margin: 0 0px;
	padding: 0 20px;
	/*background: linear-gradient( to top, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.65) ) var(--color1);*/
}
.navbar ul li:hover a{
	color:var(--color1);
}
.navbar > ul > li > a::before {
	background-color: transparent;
}
.scrolled-down .navbar-collapse{
	display:none;
	transition: all .3s ease-in-out;
}
.breadcrumbs {
    margin-top: 0px;
}
.swiper-pagination-bullet {
  height: 5px;
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom{
	bottom:0;
}
.swiper-button-prev {
	left:0;
}
.swiper-button-next {
	right:0;
}
.cbox {
    padding: 10px 10px;
}
.contact .cform {
    padding: 10px;
}
.logobg {
	width:100%;
	height:100px;
}
.navbar-toggler{
	position: absolute;
	top: 10px;
	right: 10px;
	border: 1px solid #333;
	padding: 5px;
}
.navbar-toggler.collapsed{
	position: relative;
	top: 0px;
	right: 0px;
	border: none;
}
.navbar-toggler i{
	font-size:1.9rem;
}
.navbar-collapse.show {
	/*display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;*/
	padding-top: 3.2rem;
	top: -32px;
}
.navbar-collapse.show nav {
	margin:auto;
}
.navbar-collapse.show nav a.nav-link{
	display: block;
	text-align: center;
}
.bgimg1 .container{
	background: #f7f7f7;
	height:100%;
	/*height:calc(100% + 1px);*/
}
.bgimg1 .container .srvimgbx2{
	display: block;
}
.banner-caption {
    top: 50%;
}
.banner-caption h3 {
	font-size: 28px;
}
.goicon a {
    font-size: 30px;
}
.srvimgbx{
	padding:0;
}
section#counts .cttl {
	font-size: 40px;
	line-height: 44px;
}
.btnz1{
	display: flex;
	flex-direction: column;
}
.topbar h5{
	visibility:hidden;
	min-height:22px;
	font-size: .8rem;
}
#header {
    height: 78px;
}
div.logo {
    top: -24px;
}
}






