body.workit {
  background-color: #f9f9f9;
  font-size: 18px;
}

/**************** header css ****************/
header {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  top: 0px;
  left: 0px;
  background-color: #101820;
  color: #f7f7f7;
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
}

header .logo-wrapper {
  width: 50px;
  height: 100%;
}

header .logo-wrapper .logo-link {
  display: block;
  width: 25px;
  height: 46px;
  margin: auto;
}

header .logo-link .logo {
  width: 25px;
}

header .nav-container .nav-link {
  color: #f7f7f7;
}

header .nav-container .nav-link.active {
  color: #ECE81A;
  font-weight: bold;
}

header .nav-container .btn-toggle-nav {
  display: none;
  cursor: pointer;
}

header .btn-toggle-nav .bar1, 
header .btn-toggle-nav .bar2, 
header .btn-toggle-nav .bar3 {
  width: 35px;
  height: 5px;
  background-color: #ECE81A;
  margin: 6px 0;
  transition: 0.4s;
}

header .mob-nav {
  position: fixed;
  display: none;
  top: 0px;
  right: 0px;
  background-color: #00000055;
  width: 100%;
  height: 100%;
  z-index: 10;
}

header .mob-nav.open {
  display: block;
}

header .mob-nav .nav-wrapper {
  position: absolute;
  display: block;
  top: 0px;
  right: -270px;
  width: 270px;
  height: 100%;
  background-color: #101820;
  transition: right 0.3s;
}

header .mob-nav.open .nav-wrapper {
  right: 0px;
  transition: right 0.3s;
}

header .mob-nav .btn-toggle-nav {
  position: absolute;
  width: 35px;
  height: 39px;
  top: 15px;
  right: 27px;
  display: block;
}

header .mob-nav .btn-toggle-nav .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

header .mob-nav .btn-toggle-nav .bar2 {opacity: 0;}

header .mob-nav .btn-toggle-nav .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

header .mob-nav .nav-wrapper .nav {
  display: block;
  margin-top: 80px;
}

header .mob-nav .nav .nav-link {
  color: #f7f7f7;
}

header .mob-nav .nav .nav-link.active {
  color: #ECE81A;
  font-weight: bold;
}

@media (max-width: 575px) {
  header .nav-container .nav {
    display: none;
  }
  header .nav-container .btn-toggle-nav {
    display: inline-block;
    cursor: pointer;
  }
}
/**************** ./header css ***************/

/***************** footer css ****************/
footer {
  position: relative;
  display: block;
  width: 100%;
  min-height: 250px;
  left: 0px;
  background-color: #101820;
  color: #f7f7f7;
  font-size: 18px;
  font-weight: 500;
  padding: 30px;
}

footer .logo-wrapper .logo-link {
  display: block;
  width: 150px;
}

footer .logo-link .logo {
  width: 150px;
}

footer .footer-nav {
  list-style: none;
  padding: 0;
}

footer .footer-nav .nav-item .nav-link {
  padding-left: 0;
  color: #f7f7f7;
  font-size: 14px;
}

footer .footer-nav .nav-item .nav-link.active {
  color: #ECE81A;
}

footer .footer-nav .nav-item .nav-link .img-download-app {
  width: 120px;
}

footer .footer-nav .nav-item .nav-link i {
  font-size: 18px;
  margin-right: 10px;
}
/**************** ./footer css ***************/

/*************** page header css *************/
.page-header {
  position: relative;
  background-image: url(/zfront/img/bg/bg-page-header.png);
  background-size: 100% 100%;
  width: 100%;
  height: 180px;
  padding-top: 40px;
}

.page-header .page-title {
  font-size: 48px;
  color: #f7f7f7;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .page-header {
    height: 150px;
  }

  .page-header .page-title {
    font-size: 36px;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .page-header {
    height: 140px;
    padding-top: 35px;
  }

  .page-header .page-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .page-header {
    height: 100px;
    padding-top: 20px;
  }

  .page-header .page-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .page-header {
    height: 90px;
    padding-top: 20px;
  }

  .page-header .page-title {
    font-size: 24px;
  }
}
/************** ./page header css ************/

/************** page content css *************/
.page-content .txt-title {
  font-size: 36px;
  font-weight: bold;
  color: #101820;
}

.page-content .topic-section {
  margin-top: 20px;
}

.page-content .terms-item {
  margin-top: 30px;
}

.page-content .topic-section .txt-topic, 
.page-content .policy-section .txt-topic {
  font-size: 36px;
  font-weight: 500;
  color: #101820;
}

.page-content .topic-section .faq-item .faq-q, 
.page-content .policy-section .policy-item .policy-title {
  font-size: 24px;
  font-weight: 500;
  color: #101820;
  margin: 10px 0;
}

.page-content .topic-section .faq-item .faq-a, 
.page-content .policy-section .policy-item .policy-content, 
.page-content .terms-section .terms-item {
  font-size: 18px;
  font-weight: normal;
  color: #101820;
}

.side-img-wrapper .side-img {
  width: 100%;
  max-width: 380px;
}

@media (max-width: 1399px) and (min-width: 576px) {
  .page-content .txt-title {
    font-size: 24px;
  }
  .page-content .topic-section .txt-topic, 
  .page-content .policy-section .txt-topic {
    font-size: 24px;
  }
  .page-content .topic-section .faq-item .faq-q, 
  .page-content .policy-section .policy-item .policy-title {
    font-size: 20px;
  }
  .page-content .topic-section .faq-item .faq-a, 
  .page-content .policy-section .policy-item .policy-content, 
  .page-content .terms-section .terms-item {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .page-content .txt-title {
    font-size: 22px;
  }
  .page-content .topic-section .txt-topic, 
  .page-content .policy-section .txt-topic {
    font-size: 22px;
  }
  .page-content .topic-section .faq-item .faq-q, 
  .page-content .policy-section .policy-item .policy-title {
    font-size: 18px;
  }
  .page-content .topic-section .faq-item .faq-a, 
  .page-content .policy-section .policy-item .policy-content, 
  .page-content .terms-section .terms-item {
    font-size: 16px;
  }
  .side-img-wrapper .side-img {
    width: 100%;
    max-width: 380px;
  }
}
/************* ./page content css ************/

/* ***************************************** */
/* ************ Special Page CSS *********** */
/* ***************************************** */

/************** Contact Page CSS *************/
.contact-page {
  position: relative;
  background-image: url(/zfront/img/bg/bg-contact.png);
  background-size: cover;
  width: 100%;
  min-height: 920px;
}
.contact-page .contact-form {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  margin-top: 70px;
}
.contact-page .contact-form .form-control {
  height: 50px;
  border-radius: 0;
  border: solid 2px #ECE81A;
  color: #f7f7f7;
  background-color: transparent;
  font-size: 18px;
}
.contact-page .contact-form textarea.form-control {
  min-height: 200px;
}
.contact-page .contact-form .form-control::placeholder {
  color: #f7f7f7;
}
.contact-page .contact-form .form-control:focus, 
.contact-page .contact-form .btn:focus {
  box-shadow: 0 0 0 0.25rem #ece81a40;
}
.contact-page .contact-form .btn-send {
  height: 50px;
  width: 100%;
  background-color: #ECE81A;
  color: #101820;
  border-radius: 0;
  font-size: 18px;
}
/************* ./Contact Page CSS ************/

/*************** Home Page CSS ***************/
/* Common CSS */
.home-page .section-title {
  font-size: 42px;
}
.home-page .section-description {
  font-size: 18px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .home-page .section-title {
    font-size: 36px;
  }
  .home-page .section-description {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .home-page .section-title {
    font-size: 32px;
  }
  .home-page .section-description {
    font-size: 16px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .home-page .section-title {
    font-size: 32px;
  }
  .home-page .section-description {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .home-page .section-title {
    font-size: 28px;
  }
  .home-page .section-description {
    font-size: 16px;
  }
}
/* ./Common CSS */
/* Welcome Section */
.home-page .section-welcome {
  position: relative;
  display: block;
  background-image: url(/zfront/img/bg/bg-home.png);
  background-size: cover;
  width: 100%;
  min-height: 700px;
  color: #f7f7f7;
  overflow: hidden;
}
.home-page .section-welcome .welcome-content {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.home-page .section-welcome .welcome-content {
  padding-left: 60px;
}
.home-page .section-welcome .txt-title {
  font-size: 48px;
  color: #f7f7f7;
}
.home-page .section-welcome .txt-sub-title {
  font-size: 24px;
  color: #f7f7f7;
}
.home-page .section-welcome .img-download-app {
  width: 150px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .home-page .section-welcome .welcome-content {
    padding-left: 50px;
  }
  .home-page .section-welcome .txt-title {
    font-size: 42px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .txt-sub-title {
    font-size: 20px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .img-download-app {
    width: 150px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .home-page .section-welcome {
    min-height: 400px;
  }
  .home-page .section-welcome .welcome-content {
    padding-left: 15px;
  }
  .home-page .section-welcome .txt-title {
    font-size: 32px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .txt-sub-title {
    font-size: 18px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .txt-common {
    font-size: 16px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .img-download-app {
    width: 150px;
  }
  .home-page .section-welcome .welcome-hero-img {
    position: relative;
    right: -20px;
    width: 250px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .home-page .section-welcome {
    min-height: 400px;
  }
  .home-page .section-welcome .welcome-content {
    padding-left: 15px;
  }
  .home-page .section-welcome .txt-title {
    font-size: 32px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .txt-sub-title {
    font-size: 18px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .txt-common {
    font-size: 16px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .img-download-app {
    width: 150px;
  }
  .home-page .section-welcome .welcome-hero-img {
    position: relative;
    top: 0px;
    right: -90px;
    width: 250px;
  }
}
@media (max-width: 575px) {
  .home-page .section-welcome {
    min-height: 400px;
  }
  .home-page .section-welcome .welcome-content {
    padding-left: 15px;
  }
  .home-page .section-welcome .txt-title {
    font-size: 32px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .txt-sub-title {
    font-size: 18px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .txt-common {
    font-size: 16px;
    color: #f7f7f7;
  }
  .home-page .section-welcome .img-download-app {
    width: 120px;
  }
  .home-page .section-welcome .welocme-hero-img-wrapper {
    display: none;
  }
}
/* ./Welcome Section */

/* GetWorkit Section */
.home-page .section-workit {
  position: relative;
  display: block;
  background-image: url(/zfront/img/bg/bg-get-workit.png);
  background-size: cover;
  width: 100%;
  min-height: 550px;
  color: #f7f7f7;
  overflow: hidden;
}
.home-page .section-workit .section-title {
  color: #f7f7f7;
  margin-top: 50px;
}
.home-page .section-workit .section-description {
  color: #f7f7f7;
  margin-top: 20px;
  max-width: 650px;
}
.home-page .section-workit .workit-card-container {
  padding: 60px;
}
.home-page .section-workit .workit-card {
  border: solid 1px #F9F9F9;
  padding: 15px;
  height: 100%;
}
.home-page .section-workit .workit-card .card-img {
  width: 100%;
}
.home-page .section-workit .workit-card .workit-img {
  width: 100%;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.home-page .section-workit .workit-card .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 10px;
}
.home-page .section-workit .workit-card .card-description {
  font-size: 18px;
}
@media (max-width: 1399px) and (min-width: 1200px) {
  .home-page .section-workit .workit-card-container {
    padding: 30px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .home-page .section-workit .workit-card-container {
    padding: 30px;
  }
  .home-page .section-workit .workit-card {
    padding: 10px;
  }
  .home-page .section-workit .workit-card .card-title {
    font-size: 20px;
  }
  .home-page .section-workit .workit-card .card-description {
    font-size: 16px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .home-page .section-workit .workit-card-container {
    padding: 30px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .home-page .section-workit .workit-card-container {
    padding: 30px;
  }
  .home-page .section-workit .workit-card {
    padding: 10px;
  }
  .home-page .section-workit .workit-card .card-title {
    font-size: 20px;
  }
  .home-page .section-workit .workit-card .card-description {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .home-page .section-workit .workit-card-container {
    padding: 30px;
  }
  .home-page .section-workit .workit-card {
    padding: 10px;
  }
  .home-page .section-workit .workit-card .card-title {
    font-size: 20px;
  }
  .home-page .section-workit .workit-card .card-description {
    font-size: 16px;
  }
}
/* ./GetWorkit Section */

/* ./AboutUs Section */
.home-page .section-about-us {
  position: relative;
  display: block;
  width: 100%;
  min-height: 450px;
  color: #101820;
  overflow: hidden;
}
.home-page .section-about-us .section-title {
  margin-top: 50px;
}
.home-page .section-about-us .section-description {
  max-width: 1000px;
  margin-top: 20px;
}
.home-page .section-about-us .board-card-container {
 padding: 10px;
 background-color: #ECE81A;
 margin: 50px 0;
 -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.home-page .section-about-us .board-card-container .board-card {
  border: solid 1px #101820;
  padding: 10px;
  display: flex;
}
.home-page .section-about-us .board-card .board-icon-wrapper {
  text-align: center;
  width: 60px;
  font-size: 38px;
}
.home-page .section-about-us .board-card .board-txt-wrapper {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.home-page .section-about-us .board-card .board-title {
  font-size: 18px;
}
.home-page .section-about-us .board-card .board-value {
  font-size: 20px;;
}
.home-page .section-about-us .board-logo {
  max-height: 80px;
}
.home-page .section-about-us .col-board-logo {
  max-width: 100px;
  text-align: center;
}
@media (max-width: 991px) and (min-width: 768px) {
  .home-page .section-about-us .col-board-logo {
    display: none;
  }
  .home-page .section-about-us .board-card-container .col {
    min-width: 50%;
  }
  .home-page .section-about-us .board-card-container .col:first-child,
  .home-page .section-about-us .board-card-container .col:nth-child(2) {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .home-page .section-about-us .col-board-logo {
    display: none;
  }
  .home-page .section-about-us .board-card-container .col {
    min-width: 50%;
  }
  .home-page .section-about-us .board-card-container .col:first-child,
  .home-page .section-about-us .board-card-container .col:nth-child(2) {
    padding-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .home-page .section-about-us .col-board-logo {
    display: none;
  }
  .home-page .section-about-us .board-card-container .col {
    min-width: 100%;
    padding-bottom: 10px;
  }
  .home-page .section-about-us .board-card-container .col:last-child {
    padding-bottom: 0px;
  }
}
/* ./AboutUs Section */

/* ./OurServices Section */
.home-page .section-services {
  position: relative;
  display: block;
  background-image: url(/zfront/img/bg/bg-home.png);
  background-size: cover;
  width: 100%;
  min-height: 400px;
  color: #f7f7f7;
  overflow: hidden;
}
.home-page .section-services .section-title {
  margin-top: 50px;
}
.home-page .section-services .service-card-container {
  padding: 30px 50px;
}
.home-page .section-services .service-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 10px;
}
.home-page .section-services .service-card .card-img {
  width: 100%;
}
.home-page .section-services .service-card .card-img .service-img {
  width: 100%;
}
.home-page .section-services .service-card .card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: bold;
  color: #ECE81A;
  text-align: center;
}
.home-page .section-services .btn-download {
  background-color: #ECE81A;
  width: 300px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  color: #101820;
  border-radius: 0px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.home-page .section-services .btn-download:hover {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.45); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.45);
}
@media (max-width: 1399px) and (min-width: 1200px) {

}
@media (max-width: 1199px) and (min-width: 992px) {
  .home-page .section-services .service-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 0px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {

}
@media (max-width: 767px) and (min-width: 576px) {
  
}
@media (max-width: 575px) {
  .home-page .section-services .service-card-container {
    padding: 20px 10px;
  }
}
/* ./OurServices Section */

/* Contact Section */
.home-page .section-contact {
  position: relative;
  display: block;
  background-color: #ECE81A;
  width: 100%;
  min-height: 100px;
  color: #101820;
  overflow: hidden;
}
.home-page .section-contact .contact-msg {
  font-size: 24px;
  font-weight: 500;
  line-height: 45px;
}
.home-page .section-contact .btn-contact {
  display: block;
  width: 200px;
  height: 45px;
  border: solid 2px #101820;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0px;
  padding: 8px;
  margin-left: auto;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.home-page .section-contact .btn-contact:hover{
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.45); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.45);
}
@media (max-width: 991px) and (min-width: 768px) {
  .home-page .section-contact .contact-msg {
    text-align: center;
  }
  .home-page .section-contact .btn-contact {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .home-page .section-contact .contact-msg {
    text-align: center;
    font-size: 20px;
  }
  .home-page .section-contact .btn-contact {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .home-page .section-contact .contact-msg {
    text-align: center;
    font-size: 20px;
  }
  .home-page .section-contact .btn-contact {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
/* ./Contact Section */

/* Workout Section */
.home-page .section-workout {
  position: relative;
  display: block;
  background-image: url(/zfront/img/bg/bg-home.png);
  background-size: 100% 100%;
  width: 100%;
  min-height: 400px;
  color: #f7f7f7;
  overflow: hidden;
  padding: 50px 0px;
}
.home-page .section-workout .section-title:first-child {
  margin-top: 50px;
}
.home-page .section-workout .section-description {
  color: #ECE81A;
  margin-top: 50px;
}
.home-page .section-workout .section-img {
  max-width: 380px;
}
@media (max-width: 767px) and (min-width: 576px) {
  .home-page .section-workout .section-title:first-child {
    margin-top: 0px;
  }
  .home-page .section-workout .section-title {
    text-align: center;
  }
  .home-page .section-workout .section-description {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .home-page .section-workout .section-title:first-child {
    margin-top: 0px;
  }
  .home-page .section-workout .section-title {
    text-align: center;
  }
  .home-page .section-workout .section-description {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .home-page .section-workout .section-img-wrapper {
    width: 100%;
  }
  .home-page .section-workout .section-img {
    width: 100%;
  }
}
/* ./Workout Section */

/* ./Review Section */
.home-page .section-review {
  position: relative;
  display: block;
  background-color: #ECE81A;
  /* background-image: url(/zfront/img/bg/fast-growing.png); */
  /* background-size: contain; */
  /* background-repeat: no-repeat; */
  /* background-position-x: right; */
  width: 100%;
  min-height: 400px;
  color: #101820;
  overflow: hidden;
  /* padding: 50px 0px; */
}
.home-page .section-review .section-img-wrapper {
  width: 50vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
}
.home-page .section-review .section-img {
  width: 100%;
}
.home-page .section-review .btn-download {
  position: relative;
  display: block;
  width: 300px;
  height: 50px;
  font-size: 20px;
  border: solid 1px #101820;
  color: #101820;
  border-radius: 0px;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.home-page .section-review .btn-download:hover{
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.45); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.45);
}
.home-page .section-review .review-container {
  margin-top: 30px;
}
.home-page .section-review .review-title {
  color: #101820;
  font-size: 24px;
  font-weight: bold;
}
.home-page .section-review .review-wrapper {
  width: 100%;
}
.home-page .section-review .owl-nav {
  position: absolute;
  top: -50px;
  right: 15px;
}
.home-page .section-review .owl-nav button {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 35px;
}
.home-page .section-review .owl-nav button span {
  position: relative;
  top: -10px;
}
.home-page .section-review .owl-item {
  padding: 10px;
}
.home-page .section-review .review-card {
  width: 290px;
  min-height: 150px;
  background-color: #f7f7f7;
  border: solid 1px #101820;
  padding: 10px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.home-page .section-review .review-card .review-content {
  font-size: 18px;
  color: #101820;
}
.home-page .section-review .review-card .review-author {
  font-size: 18px;
  color: #AEAEAE;
  margin-top: 10px;
}
@media (max-width: 1399px) and (min-width: 1200px) {
  .home-page .section-review .section-img-wrapper {
    width: 45vw;
  }
  .home-page .section-review .section-img {
    width: auto;
    transform: translateX(-25%);
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .home-page .section-review .section-img-wrapper {
    width: 40vw;
  }
  .home-page .section-review .section-img {
    width: auto;
    transform: translateX(-30%);
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .home-page .section-review .section-img-wrapper {
    width: 100vw;
    position: relative;
    display: block;
    top: 0px;
    transform: none;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .home-page .section-review .section-img-wrapper {
    width: 100vw;
    position: relative;
    display: block;
    top: 0px;
    transform: none;
  }
  .home-page .section-review .review-card {
    width: 100%;
    min-height: 150px;
    background-color: #f7f7f7;
    border: solid 1px #101820;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .home-page .section-review .section-img-wrapper {
    width: 100vw;
    position: relative;
    display: block;
    top: 0px;
    transform: none;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0px;
  }
  .home-page .section-review .review-card {
    width: 100%;
    min-height: 150px;
    background-color: #f7f7f7;
    border: solid 1px #101820;
    padding: 10px;
  }
}
/* ./Review Section */

/* Gallery Section */
.home-page .section-gallery .gallery-img {
  width: 100%;
}
/* ./Gallery Section */
/************** ./Home Page CSS **************/

/* ***************************************** */
/* *********** ./Special Page CSS ********** */
/* ***************************************** */