/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: "ArminGrotesk-Italic";
  src: url("../fonts/ArminGrotesk-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "ArminGrotesk";
  src: url("../fonts/ArminGrotesk-Normal.ttf") format("truetype");
}

@font-face {
  font-family: "ArminGrotesk-Regular";
  src: url("../fonts/ArminGrotesk-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "ArminGrotesk-SemiBold";
  src: url("../fonts/ArminGrotesk-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "ArminGrotesk-ThinItalic";
  src: url("../fonts/ArminGrotesk-ThinItalic.ttf") format("truetype");
}

@font-face {
  font-family: "ArminGrotesk-UltraBold";
  src: url("../fonts/ArminGrotesk-UltraBold.ttf") format("truetype");
}

/* https://colordesigner.io/convert/cmyktohex => CONVERT CMYK TO HEX*/
:root {
  --color-1: #f7fafa;
  /* C: 3, M: 2, Y: 2, K: 0 */
  --color-2: #f0f5f5;
  /* C: 6, M: 4, Y: 4, K: 0 */
  --color-3: #d6e0de;
  /* C: 16, M: 12, Y: 13, K: 0 */
  --color-4: #bac9c7;
  /* C: 27, M: 21, Y: 22, K: 0 */
  --color-5: #a6b8b8;
  /* C: 35, M: 28, Y: 28, K: 0 */
  --color-6: #8ba2a2;
  /* C: 45, M: 36, Y: 36, K: 1 - PANTONE 17-5104 TCX Ultimate Gray */
  --color-7: #758b8b;
  /* C: 51, M: 42, Y: 42, K: 6 */
  --color-8: #5d7171;
  /* C: 57, M: 48, Y: 48, K: 15 */
  --color-9: #445354;
  /* C: 63, M: 55, Y: 54, K: 28 */
  --color-10: #2f393b;
  /* C: 67, M: 60, Y: 59, K: 44 */
  --color-11: #ff083d;
  /* C: 0, M: 97, Y: 76, K: 0 */
  --color-12: #e6053d;
  /* C: 9, M: 98, Y: 76, K: 1 */
  --color-13: #c70230;
  /* C: 17, M: 99, Y: 80, K: 6 */
  --color-14: #ad0228;
  /* C: 22, M: 99, Y: 82, K: 13 */
  --color-15: #990016;
  /* C: 24, M: 100, Y: 89, K: 21 - PANTONE 19-1755 TCX Equestrian Red */
  --color-16: #7d001e;
  /* C: 29, M: 100, Y: 83, K: 31 */
  --color-17: #53051f;
  /* C: 35, M: 96, Y: 76, K: 50 */
  --color-18: #36091e;
  /* C: 43, M: 90, Y: 68, K: 63 */
  --color-19: #200c19;
  /* C: 53, M: 82, Y: 64, K: 73 */
}

/*--------------------------------------------------------------
# Scrollbar
--------------------------------------------------------------*/
::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "ArminGrotesk";
  color: var(--color-10);
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.whatsapp-click {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.whatsapp-click i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: var(--color-15);
  color: #fff;
  transition: all 0.4s;
}

.whatsapp-click i:hover {
  background: var(--color-19);
  color:#fff;
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
@media screen and (max-width: 768px) {
--------------------------------------------------------------*/
[data-aos-delay] {
  transition-delay: 0 !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--color-2);
  height: 60px;
  z-index: 997;
  transition: all 0.5s;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 60px;
  background: #fff;
}

#header .logo h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

@media (max-width: 768px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    height: 60px;
    background: #fff;
  }

  #header .logo h1 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #555555;
  padding: 12px 0 12px 25px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "ArminGrotesk-Italic";
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: var(--color-15);
  text-decoration: none;
}

.nav-menu .get-started a {
  background: var(--color-15);
  color: #fff;
  border-radius: 50px;
  margin: 2px 0 0 30px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: var(--color-19);
  color: #fff;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: var(--color-15);
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
  margin-top: 10px;
}

.mobile-nav .get-started a {
  background: var(--color-15);
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 30px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: var(--color-19);
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Carousel Hero Header
--------------------------------------------------------------*/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
  background: transparent;
  z-index: 990;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  background-size: 60% 60%;
  background-color: var(--color-15);
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
  background-size: 60% 60%;
  background-color: var(--color-15);
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  background-color: var(--color-1);
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption a {
  background-color: transparent;
  color: var(--color-1);
  text-decoration: none;
  border: 2px solid var(--color-1);
  font-family: "ArminGrotesk";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 50px;
  border-radius: 50px;
  transition: 0.5s;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption a:hover {
  background: var(--color-15);
  color: #fff;
}

@media (max-width: 768px) {
  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    opacity: 0;
  }
}

@media (max-width: 350px) {
  .carousel-header .carousel-inner .carousel-item .carousel-caption h4 {
    font-size: 20px;
  }

  .carousel-header .carousel-inner .carousel-item .carousel-caption h1 {
    font-size: 30px;
  }

  .carousel-header .carousel-inner .carousel-item .carousel-caption .mb-5 {
    margin-bottom: 10px !important;
  }

  .carousel-header .carousel-inner .carousel-item .carousel-caption .fs-5 {
    font-size: medium !important;
  }

  .carousel-header .carousel-inner .carousel-item .carousel-caption a {
    padding: 10px 40px;
  }

  .carousel-header .carousel-inner .carousel-item .carousel-caption {
    padding-bottom: 20px;
  }

  .carousel-header .carousel .carousel-indicators li,
  .carousel-header .carousel .carousel-indicators li,
  .carousel-header .carousel .carousel-indicators li {
    display: none;
  }
}

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

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

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

.section-title h2 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: var(--color-15);
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-15);
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title h2::after {
    display: block;
    width: 100px;
    height: 2px;
    background: var(--color-15);
    margin: 10px auto;
    align-items: center;
  }

  .section-title h2::before {
    content: "";
    display: none;
  }
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners {
  background: #f3f9fd;
  padding: 10px 0;
  text-align: center;
}

.partners .section-title {
  padding-bottom: 5px !important;
}

.partners .section-title p {
  color: var(--color-8);
  text-align: center;
  font-weight: bold;
}

.partners .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners img {
  width: 50%;
  display: inline-block;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .partners img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .partners img {
    width: 30%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about{
  background: #E5E4E2;
}

.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(--color-15);
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "ArminGrotesk";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: var(--color-19);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--color-15);
}

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

.about .content {
  padding: 0;
}

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

.about .content .about-box {
  margin-top: 28px;
  margin-bottom: 40px;
  width: 100%;
}

.about .content .about-box i {
  display: block;
  font-size: 36px;
  color: var(--color-15);
  float: left;
}

.about .content .about-box span {
  font-size: 30px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.about .content .about-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "ArminGrotesk";
  font-size: 14px;
  color: #484848;
}

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

.about .content .about-box a:hover {
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# about-images Section
--------------------------------------------------------------*/
.about-images .container {
  background: #E5E4E2;
  padding-bottom: 24px;
}

.about-images .about-images-item {
  position: relative;
  overflow: hidden;
}

.about-images .about-images-item .custom-size{
  height: auto;
}

@media (min-width: 1400px) {
  .about-images .about-images-item .custom-size{
    min-height: 280px;
    height: 280px !important;
  }
}

@media (min-width: 1200px) {
  .about-images .about-images-item .custom-size{
    height: 235px !important;
  }
}

@media (max-width: 1024px) {
  .about-images .image {
    text-align: center;
  }

  .about-images .image img {
    max-width: 70%;
  }
}

@media (min-width: 992px) {
  .about-images .about-images-item .custom-size{
    height: 192px;
  }
}


@media (max-width: 667px) {
  .about-images .content .about-box span {
    font-size: 25px;
  }

  .about-images .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Brands Served
--------------------------------------------------------------*/
.brands-served .brand {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.brands-served .brand .brand-img {
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Why Santana
--------------------------------------------------------------*/
.why-santana .icon-box {
  padding-top: 80px;
  padding-bottom: 60px;
}

.why-santana .icon-box {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}

.why-santana .icon-box img {
  width: 70px;
  line-height: 1;
}

.why-santana p {
  padding: 10px;
}

.why-santana .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: var(--color-15);
}

.why-santana .icon-box h3:hover {
  color: #3498db;
}

.why-santana .icon-box:hover {
  background: #eef7fc;
}

/*--------------------------------------------------------------
# Certifications
--------------------------------------------------------------*/
.certifications {
  padding-bottom: 20px;
}

.certifications .certifications-wrap {
  padding-left: 50px;
}

.certifications .owl-nav,
.certifications .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.certifications .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.certifications .owl-dot.active {
  background-color: #3498db !important;
}

.certifications .owl-stage-outer {
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .certifications .certifications-wrap {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Order Process
--------------------------------------------------------------*/
.order-process {
  padding-top: 80px;
  padding-bottom: 60px;
}

.order-process .row {
  padding-bottom: 20px;
}

.order-process .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.order-process .icon-box::before {
  content: "";
  position: absolute;
  background: var(--color-15);
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.order-process .icon-box:hover::before {
  background: var(--color-15);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.order-process .icon {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-15);
  background: var(--color-1);
  transition: all 0.3s ease-in-out;
}

.order-process .icon img {
  margin-left: -2px;
  margin-top: 2px;
  width: 70px;
}

.order-process .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--color-15);
}

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

.order-process .icon-box:hover .title,
.order-process .icon-box:hover .description {
  color: #fff;
}

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

.order-process .icon-box:hover .icon img {
  color: #3498db;
}

/*--------------------------------------------------------------
# Our Products
--------------------------------------------------------------*/
.our-products {
  padding-top: 20px;
}

.our-products .row {
  padding-bottom: 20px;
}

.our-products .card {
  border: 0;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.our-products .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.our-products .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.our-products .card-title {
  color: #222222;
}

.our-products .card-body .card-list {
  display: flex;
}

.our-products .card-body ul {
  list-style: none;
  padding: 0;
}

.our-products .card-body ul li {
  padding-left: 28px;
  position: relative;
}

.our-products .card-body .material-services {
  width: 50%;
}

.our-products .card-body ul li + li {
  margin-top: 10px;
}

.our-products .card-body ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--color-15);
  line-height: 1;
}

.our-products .card:hover .card-body {
  background: var(--color-15);
}

.our-products .card:hover .card-title,
.our-products .card:hover .card-title,
.our-products .card:hover .card-body ul li,
.our-products .card:hover .card-body ul i {
  color: var(--color-1);
}

@media (max-width: 1024px) {
  .our-products .card-body .card-list {
    display: block;
  }
}

/*--------------------------------------------------------------
# Machinery Highlights
--------------------------------------------------------------*/

.machinery-highlights .machinery-highlights-wrap {
  padding-left: 50px;
}

.machinery-highlights .owl-carousel .owl-item img {
  height: 300px;
}

.machinery-highlights .owl-nav,
.machinery-highlights .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.machinery-highlights .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.machinery-highlights .owl-dot.active {
  background-color: #3498db !important;
}

@media (max-width: 1024px) {
  .our-products .card-body .material-services {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .machinery-highlights .owl-carousel .owl-item img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .machinery-highlights .machinery-highlights-wrap {
    padding-left: 0;
  }

  .machinery-highlights .owl-carousel .owl-item img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .machinery-highlights .owl-carousel .owl-item img {
    height: 250;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .contact-about img {
  height: 30px;
  margin-bottom: 10px;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  color: #888;
}

.contact .contact-about p span {
  font-weight: bold;
  color: var(--color-17);
}

.contact .social-links {
  padding-bottom: 20px;
}

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

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

.contact .info {
  color: #444444;
}

.contact .info i {
  font-size: 32px;
  color: var(--color-15);
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
  color: #444444;
}

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

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

.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 .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 .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

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

.contact .php-email-form button[type="submit"]:hover {
  background: var(--color-19);
}

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f3f3;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

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

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

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #3498db !important;
}

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.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-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  margin-top: 60px;
  background: var(--color-2);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #222222;
  font-size: 14px;
}

#footer .footer-links a {
  color: #222222;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #3498db;
}
