/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: lfont !important;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: lfont;
}

.text-justify {
  text-align: justify;
}

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

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

@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: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: var(--secondary);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

/*--------------------------------------------------------------
# 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;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tertiary);
  font-family: lfont;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}

.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: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--primary);
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

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

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

  .navbar ul {
    display: none;
  }
}

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

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

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

.navbar-mobile>ul>li {
  padding: 0;
}

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 16px;
  color: var(--tertiary);
}

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

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

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

/*--------------------------------------------------------------
# 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;
  top: 82px;
  width: 100%;
  background: rgba(1, 1, 1, 0.3);
}

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

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

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

#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;
  width: auto;
  height: auto;
  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 a:hover .carousel-control-prev-icon,
#hero a:hover .carousel-control-next-icon {
  background: var(--secondary);
  color: #fff;
  opacity: 0.5;
}

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

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--primary);
}

#hero .btn-get-started {
  font-family: lfont;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: var(--primary);
  margin-top: 15px;
}

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

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

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {

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

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

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

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

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

.section-title h2 {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tertiary);
  font-family: lfont;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--primary);
  margin: 6px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: lfont;
  color: var(--tertiary);
}

/*--------------------------------------------------------------
# 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: var(--primary);
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: lfont;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: var(--primary);
  animation-delay: 0.8s;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--primary);
}

.about .content .btn-learn-more:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .vision-mission {
    padding-left: 35px;
    margin-top: 14px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  margin-top: 20px;
}

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

.counts .count-box i {
  font-size: 30px;
  color: var(--primary);
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  font-weight: 700;
  color: var(--tertiary);
  margin-left: 10px;
}

.counts .count-box p {
  padding: 10px 0 0 0;
  margin: 0;
  font-family: lfont;
  font-size: 16px;
  color: var(--tertiary);
  margin-top: -5px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.why-us .nav-tabs {
  border: 0;
  display: block;
}

.why-us .nav-item {
  margin-bottom: 20px;
}

.why-us .nav-link {
  border: 1px solid #e9e9e9;
  padding: 5px;
  transition: 0.3s;
  color: var(--tertiary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.why-us .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.why-us .nav-link h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.why-us .nav-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.why-us .nav-link.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 575px) {
  .why-us .nav-link {
    padding: 15px;
  }

  .why-us .nav-link i {
    font-size: 24px;
  }
}

.why-us .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.why-us .tab-pane ul li {
  padding-bottom: 10px;
}

.why-us .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary);
}

.why-us .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  width: 100%;
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 30px 25px;
  transition: all ease-in-out 0.3s;
  border-radius: 8px;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50px;
  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 h4 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 20px;
  color: var(--tertiary);
}

.services .icon-box h4 a {
  color: var(--tertiary);
}

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

.services .icon-box:hover {
  background: var(--primary);
  border-color: var(--primary);
}

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

.services .icon-box:hover .icon i {
  color: var(--primary);
}

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

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

.services .icon-box:hover h4 {
  display: none;
}

.service-tooltip {
  position: relative;
  display: inline-block;
}

.service-tooltip .service-tooltip-text {
  visibility: hidden;
  background-color: var(--tertiary);
  color: #fff;
  text-align: left;
  padding: 15px 20px;
  bottom: 10%;
  left: -15%;
  position: absolute;
  right: 5%;
  z-index: 99999;
  transition: all 0.1s ease-in-out 0s;
  border-radius: 8px;
}

@media (max-width: 767.98px) {
  .service-tooltip .service-tooltip-text {
    padding: 30px 35px;
    left: -2%;
    right: 2%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .service-tooltip .service-tooltip-text {
    padding: 25px 30px;
    left: -8%;
    right: 8%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .service-tooltip .service-tooltip-text {
    left: -8%;
  }
}

.service-tooltip .service-tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 85%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--tertiary) transparent transparent transparent;
}

@media (max-width: 768px) {
  .service-tooltip .service-tooltip-text::after {
    left: 55%;
  }
}

.service-tooltip:hover .service-tooltip-text {
  visibility: visible;
}

/*--------------------------------------------------------------
# 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: 5px 15px 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 h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--tertiary);
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f9e7ca;
  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 var(--primary);
}

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

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

.event-item {
  position: relative;
  margin-bottom: 25px;
}

.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);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.event-item .portfolio-info {
  transition: all 0.3s ease-in-out 0s;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: none;
  margin-top: -70px;
  position: absolute;
  height: 50px;
  margin-left: 71%;
}

.portfolio .portfolio-item .portfolio-info h4, .event-item .portfolio-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--tertiary);
  margin-right: 45px;
  margin-bottom: 0;
}

.modal-content {
  background-color: #f6f6f6;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tertiary);
}

.modal-footer .btn {
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  transition: all ease-in-out 0.3s;
  border: none;
  font-size: 16px;
}

.modal-footer .btn:hover {
  background: var(--secondary);
}

.portfolio .portfolio-item .portfolio-info a {
  cursor: pointer;
}

.portfolio .portfolio-item .portfolio-info .preview-link {
  position: absolute;
  right: 10px;
  font-size: 28px;
  top: calc(50% - 18px);
  color: var(--tertiary);
}

.event-item .portfolio-info .preview-link {
  font-size: 28px;
  color: var(--tertiary);
  float: left;
  margin-top: -7px;
  margin-left: 2px;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.event-item .portfolio-info .preview-link:hover {
  color: var(--primary);
}

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

.event-item:hover .portfolio-info {
  display: block;
}

.isotope:after {
  content: '';
  display: block;
  clear: both;
}

#filters {
  padding: 0;
  margin: 0 auto 25px auto;
}

.button-group .button {
  cursor: pointer;
  display: inline-block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  border: none;
  background: transparent;
}

.button-group .button:hover, .button-group .button:active,
.button-group .button.is-checked {
  color: #fff;
  background: var(--primary);
}

#load-more {
  background: var(--primary);
  border: 0;
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  transition: 0.4s;
  font-size: 16px;
  font-weight: 500;
}

#load-more:hover {
  background: var(--secondary);
}

.hidden {
  visibility: hidden;
  width: 0 !important;
  height: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.lb-outerContainer {
  background-color: #f6f6f6;
  border-radius: 4px;
}

.lightboxOverlay {
  filter: alpha(Opacity=85) !important;
  opacity: 0.85 !important;
  position: fixed !important;
}

.lb-data .lb-caption {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.lb-data .lb-number {
  font-size: 14px;
  color: #f6f6f6;
}

.lb-nav a.lb-prev, .lb-nav a.lb-next {
  width: 20%;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .no-slide img {
  width: 40%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  margin: auto;
}

.clients .no-slide img:hover {
  filter: none;
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 35px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

.clients .swiper-slide img {
  opacity: 0.75;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: var(--tertiary);
  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: 0;
  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: var(--quaternary);
  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(--primary);
}

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

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

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

.contact .info-box i {
  font-size: 22px;
  color: #fff;
  background: var(--primary);
  border-radius: 50px;
  padding: 12px;
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  background: #009970;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info-box h3 {
  font-size: 20px;
  color: var(--tertiary);
  font-weight: 700;
  margin: 10px 0;
}

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

.contact .info-box a {
  color: #000;
  transition: 0.3s;
}

.contact .info-box a:hover {
  color: var(--primary);
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

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

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

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

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

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary);
}

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

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

.contact .php-email-form input[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form input[type=submit]:hover {
  background: var(--secondary);
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--quaternary);
  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: var(--tertiary);
  border-top: 4px solid var(--primary);
  text-align: center;
  padding: 15px 20px 5px;
}

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

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

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

#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: var(--primary);
}

#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: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

.facebook, .facebook:hover {
  background: #1877f2;
}

.twitter {
  background: #1a8cd8;
}

.twitter:hover {
  background: #1d9bf0;
}

.instagram, .instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.skype {
  background: #0078ca;
}

.skype:hover {
  background: #0b64a4;
}

.linkedin {
  background: #0a66c2;
}

.linkedin:hover {
  background: #004182;
}

.youtube, .youtube:hover {
  background: #ff0000;
}

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

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

#footer .copyright {
  border-top: 1px solid var(--tertiary);
  text-align: center;
  padding-top: 30px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}