/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  scroll-behavior: smooth;
}

a {
  color: #2d8f7a;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.image-label {
  text-align: center;
  color: rgb(95, 95, 95);
  font-style: italic;
}

.pt-30 {
  padding-top: 30px;
}
.pt-20 {
  padding-top: 20px;
}

.image-mobile {
  display: none;
  border-radius: 10px;
  margin-bottom: 20px;
}
.image-desktop {
  display: flex;
}
@media (max-width: 992px) {
  .image-mobile {
    display: flex;
  }
  .image-desktop {
    display: none;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #d23971;
  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: #ad305e;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0);
  z-index: 997;
  padding: 15px 0;
}
#header.header-scrolled {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#header .logo {
  margin: 0;
  padding: 0;
}
#header span {
  display: none;
  margin-left: 10px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}
#header .logo img {
  max-height: 50px;
}
@media (max-width: 992px) {
  #header {
    background: rgb(255, 255, 255, 0);
  }
  #header span {
    display:flex;
  }
}

/*--------------------------------------------------------------
# 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 a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #422a2c;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #422a2c;
  font-weight: 800;
  transition: ease 1s;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #d23971;
  padding: 8px 20px;
  margin-left: 30px;
  font-weight: 800;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #ad305e;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #2d8f7a;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #422a2c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  padding-left: 40vw;
}
.mobile-nav-toggle.bi-x {
  color: #000;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display:block;
    padding-left: 45vw;
  }
  .navbar ul {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobile-nav-toggle {
    padding-left: 25vw;
  }
}
.navbar-mobile {
  width: 50%;
  min-height: 100vh;
  position:fixed;
  overflow: hidden;
  background-size: cover;
  display: block;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 1);
  transition: 0s;
  z-index: 1000;
}
.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 a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #422a2c;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #2d8f7a;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #2d8f7a;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(../img/homepage/hero-bg.png) top center;
  background-size:cover;
  padding: 50px 0;
  overflow: hidden;
}
#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  padding-top: 35px;
}
#hero .hero-banner-m {
  display: none;
}
#hero .hero-banner {
  display: flex;
  margin-left: 5vw;
  max-height: 85vh;
  transform: scale(1.2);
}

#hero .hero-content {
  text-align: right;
  margin-right: 5vw;
}
#hero h1 {
  margin-top: 20vh;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 72px;
  color: #422a2c;
  font-family: 'Playfair Display', serif;
}
#hero h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2d8f7a;
}
#hero .btn-get-started:hover {
  background: #226b5b;
}

@media (max-width: 992px) {
  #hero {
    padding: none;
  }
  #hero .hero-banner {
    transform: scale(1);
    margin-left: 0px;
    padding: 0px;
  }
  #hero .hero-content {
    margin-right: 0px;
    padding: 0px;
  }
  #hero h1 {
    font-size: 2.5rem;
    margin-top: 0px;
    width: auto; 
  }
}
@media (max-width: 768px) {
  #hero {
    padding: 0px 0px;
    height: auto;
    background:none;
  }
  #hero .container {
    padding-top: 0px;
    margin: 0px;
    padding: 0px;
  }
  #hero .hero-banner {
    display: none;
    margin-left: 0%;
  }
  #hero .hero-banner-m {
    height: auto;
    width: 100vw;
    display: block;
  }
  #hero .hero-content {
    margin-right: 0%;
    text-align: center;
    padding-top: 0px;
  }
  #hero h1 {
    margin-top: 5vh;
    padding: 50px 20px 0px 20px;
    text-align: center;
    font-size: 28px;
    line-height: 36px;
    width: 100vw;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    width: 95vw;
    margin-top: 0px;
    padding-top: 0px;
  }
  #hero .btn-get-started {
    display: none;
  }
  #hero .icon-boxes {
    margin-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

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

.section-bg {
  background-color: #f8fbfe;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #422a2c;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}
@media (max-width: 992px) {
  .section-title {
    padding-bottom: 0px;
  }
  .section-title h2 {
    padding-bottom: 0px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  margin-left: 10vw;
  margin-right: 10vw;
  height: auto;
  width: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.about i {
  font-size: 3rem;
}
.about .content {
  margin-top: 0px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 1.5rem;
}
.about .content i {
  padding: 10px;
  color: #d23971;
  border: 5px solid #d23971;
  border-radius: 100px;
  font-size: 3rem;
}
.about .content1 {
  margin-top: 0px;
}
.about .content1 h3 {
  font-weight: 600;
  font-size: 1.5rem;
}
.about .content1 i {
  padding: 10px;
  color: #d23971;
  border: 5px solid #d23971;
  border-radius: 100px;
  font-size: 3rem;
}
.about .image-box img {
  transform: scale(1.3);
  height: 100%;
  background-size: cover;
}
.about .video-box img {
  transform: scale(1);
  background-size: cover;
}
.about .video-box-1 img {
  transform: scale(1);
  background-size: cover;
}
@media (max-width: 992px) {
  .about {
    margin: 0px;
    width: 100%;
    height: auto;
    padding: 50px;
  }
  .about .content {
    margin-top: 0px;
    width: 100%;
    height: 50vh;
  }
  .about .content1 {
    margin-top: 0px;
    width: 100%;
    height: 30vh;
  }
  .about .video-box {
    padding: 0px;
    margin: 0px;
  }
  .about .video-box img {
    padding: 0px;
    margin: 0px;
    transform: scale(0.8);
  }
  .about .video-box-1 {
    height: 70vh;
  }
  .about .video-box-1 img {
    transform: scale(0.7);
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about {
    margin: 2vh;
    margin-top: 5vh;
    width: auto;
    height: auto;
    padding: 10px;
  }
  .about .content {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
  }
  .about .content1 {
    height: auto;
  }
  .about .video-box img {
    transform: scale(1);
  }
  .about .video-box-1 {
    height: auto;
  }
  .about .video-box-1 img {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# objectives
--------------------------------------------------------------*/
.objectives {
  margin-left: 15vw;
  margin-right: 15vw;
  height: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.objectives i {
  color: #d23971;
  font-size: 3rem;
}
.objectives .obj-bg {
  padding: 0 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  height: 30vh;
}
.objectives .obj-bg h3 {
  font-weight: 500;
  font-size: 1.5rem;
}
.objectives .obj-bg p {
  font-size: 1rem;
}
.objectives .image-box img {
  transform: scale(1.3);
  height: 100%;
  background-size: cover;
}
@media (max-width: 992px) {
  .objectives {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .objectives .image-box img {
    display: none;
  }
  .objectives .obj-bg {
    padding: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .objectives {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
#promise {
  height: 90vh;
  width: 100%;
  position:relative;
  display: flex;
  background: url(../img/homepage/ginger-bg-ls.jpg);
  -webkit-background-position: center center;
  -moz-background-position: center center;
  -o-background-position: center center;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
}

#promise .spacer {
  width: 50vw;
}

#promise .dark {
  right: 0;
  padding: 30vh 180px;
  top: 0%;
  background-image: linear-gradient(to right, rgba(0,0,0,0) , rgb(255, 255, 255) 20%);
}
#promise .dark p {
  margin-bottom: 25px;
}
#promise .dark i {
  padding: 10px;
  color: #2d8f7a;
  border: 5px solid #2d8f7a;
  border-radius: 100px;
  font-size: 3rem;
}

@media (max-width: 992px) {
  #promise {
    height: 85vh;
    background: url(../img/homepage/ginger-bg-pt.jpg);
    -webkit-background-position: center center;
    -moz-background-position: center center;
    -o-background-position: center center;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
  }
  #promise .dark {
    padding: 30px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) , rgb(255, 255, 255) 60%);
  }
  #promise .dark h2 {
    margin-top: 30vh;
  }
}

@media (max-width: 768px) {
  #promise {
    height: auto;
  }
  #promise .dark {
    padding: 50px;
  }
}

#team {
  height: 90vh;
  width: 100%;
  position:relative;
  display: flex;
  background: url(../img/homepage/team.jpg);
  -webkit-background-position: center left;
  -moz-background-position: center left;
  -o-background-position: center left;
  background-position: center left;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
}

#team .spacer {
  width: 50vw;
}

#team .dark {
  padding: 30vh 180px;
  top: 0%;
  background-image: linear-gradient(to right, rgba(0,0,0,0) , rgb(255, 255, 255) 20%);
}
#team .dark p {
  margin-bottom: 25px;
}
#team .dark i {
  padding: 10px;
  color: #2d8f7a;
  border: 5px solid #2d8f7a;
  border-radius: 100px;
  font-size: 3rem;
}

@media (max-width: 992px) {
  #team {
    height: 85vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  #team .dark {
    padding: 10vw;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) , rgb(255, 255, 255) 50%);
  }
  #team .dark h2 {
    margin-top: 15vh;
  }
}

@media (max-width: 768px) {
  #team {
    background: url(../img/homepage/team-m.jpg) center right;
    -webkit-background-position: center right;
    -moz-background-position: center right;
    -o-background-position: center right;
    background-position: center right;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
  }
}

#process {
  margin-top: 10vh;
  margin-bottom: 10vh;
  height: 90vh;
  width: 100%;
  position:relative;
  display: flex;
  background: url(../img/homepage/about-img-1.jpg) center center;
  -webkit-background-position: center center;
  -moz-background-position: center center;
  -o-background-position: center center;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
}

#process .dark {
  top: 0%;
  background-image: linear-gradient(to top, rgba(0,0,0,0) 0% , rgb(255, 255, 255) 80%);
}
#process .icon-boxes {
  padding: 80px 30px;
}
#process .icon-box {
  text-align: center;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  z-index: 1;
}
#process .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
#process .icon-box .title {
  color: #000;
  transition: 0.3s;
}
#process .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #000;
}
#process .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #d23971;
}
#process .icon-box:hover {
  transform: scale(1.2);
  z-index: 999;
}
#process .icon-box:hover .title a {
  color: #fff;
}
@media (max-width: 992px) {
  #process {
    margin-top: 0px;
    height: auto;
  }
  #process .icon-boxes {
    padding: 20px 20px;
  }
}
/*--------------------------------------------------------------
# certifications
--------------------------------------------------------------*/
.certifications {
  margin-top: 10vh;
  padding: 15px 0;
  text-align: center;
}
.certifications img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.certifications img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .certifications img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2d8f7a;
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #2d8f7a;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 50px 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}
.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: #2d8f7a;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio img {
  background-size: cover;
  width: 100%;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  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 #000;
  border-left: 3px solid #000;
  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 #000;
  border-right: 3px solid #000;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #000;
  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: #000;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #000;
}
.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 #2d8f7a;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2d8f7a;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(18, 66, 101, 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;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  margin-top: 10vh;
  margin-bottom: 10vh;
}
.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-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: #d23971;
}
.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: #2d8f7a;
}
.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 {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #2d8f7a;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  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: #422a2c;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #2d8f7a;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.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 .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;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #2d8f7a;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #2d8f7a;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3194db;
}
@-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: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.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: #1a5e90;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #d23971;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #422a2c;
  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: #d23971;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2d8f7a;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .credits a {
  color: #d23971;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #d23971;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #ad305e;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  #footer {
    text-align: center;
  }
  #footer .footer-top .footer-links ul li {
    text-align: center;
  }
  #footer .footer-top .footer-links ul i {
    display: none;
  }
  #footer .footer-top .footer-links ul a {
    text-align: center;
  }
}