/**
* template:  Joyisle

TABLE OF CONTENTS

        + Global
        + Header
        + Header Content
        + About Us
        + Services
        + Programs
        + Sale
        + Team
        + Testimonials    
        + Contact    
*/

@import "reset.css";
@import "all.min.css";
@import "owl.carousel.min.css";
@import "owl.theme.default.min.css";
@import "cta.css";

@import url("https://fonts.googleapis.com/css2?family=Damion&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/**************************************
*
*         GLOBAL   
*
***************************************/

:root {
  --color-white: #ffffff;
  --color-light-gray: #f6f5f2;
  --color-gray: #757c7e;
  --color-dark: #444444;
  --color-green: #9abe29;
  --color-red: #fc5640;
  --color-yellow: #ffcb47;
}

@-webkit-keyframes load {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes load {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
}

a {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

img {
  display: block;
  height: auto;
}

::-moz-selection {
  background-color: var(--color-red);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-red);
  color: var(--color-white);
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--color-dark);
  margin-bottom: 30px;
}

h1 {
  font-size: 80px;
  color: var(--color-white);
  margin-bottom: 20px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 30px;
}

.wrapper {
  /* max-width: 1920px; */
  width: 100%;
  margin: 0 auto;
}

.container {
  /* max-width: 1400px; */
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-center {
  text-align: center;
}

.ptb {
  padding-top: 100px;
  padding-bottom: 100px;
}

.btn {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 20px 45px;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 40px;
  letter-spacing: 2px;
  font-weight: 900;
}

.btn:hover {
  -webkit-box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%),
    0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
  box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%),
    0 8px 10px -7px rgb(0 0 0 / 20%);
}

.suptitle {
  color: var(--color-green);
  font-size: 30px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: "Damion", cursive;
  font-weight: 400;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-red);
}

.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 5px;
  margin: 5px 7px;
  background: var(--color-white);
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-radius: 0px;
}

#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  padding: 15px 20px;
  border-radius: 50%;
}

#openmenu,
#closemenu {
  font-size: 30px;
  color: var(--color-white);
  display: none;
}

#openmenu:hover,
#closemenu:hover {
  color: var(--color-red);
}

.res-send {
  display: none;
  font-size: 14px;
  margin-top: 20px;
}

.res-send .error {
  color: var(--color-red);
}

.res-send .send {
  color: var(--color-green);
}

#preload {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-green);
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#preload img {
  width: 40px;
  height: auto;
  -webkit-animation-name: load;
  animation-name: load;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/**************************************
*
*         HEADER  
*
***************************************/

header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
}

.fixed {
  position: fixed;
  background-color: var(--color-green);
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
  padding-top: 5px;
  padding-bottom: 5px;
}

.wrapper-header-top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--color-white);
}

.header-contact i {
  margin-right: 10px;
}

.header-contact a {
  margin-left: 20px;
}

.header-social li {
  margin-left: 15px;
}

.wrapper-header-bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-white);
}

.menu li {
  float: left;
  margin-left: 30px;
  height: 64px;
  padding-top: 16px;
}

.header-social li a,
.header-contact a,
.menu li a {
  color: var(--color-white);
}

.header-social li a:hover,
.header-contact a:hover,
.menu li a:hover {
  color: var(--color-red);
}

.menu li a {
  font-size: 18px;
  font-weight: 900;
}
.menu li a.btn {
  padding: 8px 16px;
  margin-top: -8px;
}

.menu li a.btn:hover {
  color: var(--color-white);
}

/**************************************
*
*         HEADER CONTENT 
*
***************************************/

.wrapper-header-content {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(68, 68, 68, 0.6)),
      to(rgba(68, 68, 68, 0.3))
    ),
    url("/images/bg-header.png");
  background-image: -o-linear-gradient(
      rgba(68, 68, 68, 0.6),
      rgba(68, 68, 68, 0.3)
    ),
    url("/images/bg-header.png");
  background-image: linear-gradient(
      rgba(68, 68, 68, 0.6),
      rgba(68, 68, 68, 0.3)
    ),
    url("/images/bg-header.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 850px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-content p {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 40px;
  color: var(--color-white);
}

.header-content .btn {
  margin-top: 50px;
}

/**************************************
*
*         ABOUT US 
*
***************************************/

#aboutus {
  background-color: var(--color-light-gray);
}

.wrapper-aboutus {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  /* max-width: 1200px; */
}

.aboutus-content {
  width: 60%;
  padding-left: 50px;
}

.aboutus-content p {
  margin-bottom: 20px;
}

.wrapper-list {
  margin: 40px 0px;
}

.wrapper-list h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.wrapper-list li {
  margin-bottom: 30px;
  background-image: url("/images/checkmark.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 32px auto;
  padding-left: 50px;
}

.aboutus-img {
  width: 40%;
}

.aboutus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

/**************************************
*
*         SERVICES 
*
***************************************/

#services {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(68, 68, 68, 0.8)),
      to(rgba(68, 68, 68, 0.3))
    ),
    url("/images/bg-services.jpg");
  background-image: -o-linear-gradient(
      rgba(68, 68, 68, 0.9),
      rgba(68, 68, 68, 0.4)
    ),
    url("/images/bg-services.jpg");
  background-image: linear-gradient(
      rgba(68, 68, 68, 0.9),
      rgba(68, 68, 68, 0.4)
    ),
    url("/images/bg-services.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

#services h2,
#services p {
  color: var(--color-white);
}

#services .wrapper-services,
#services .wrapper-title {
  max-width: 1000px;
}

.single-services {
  /* width: calc(25% - 20px); */
  margin: 10px;
  padding: 40px 20px;
  color: var(--color-white);
}

.single-services h3 {
  color: var(--color-white);
}

.single-services img {
  margin: auto;
  margin-bottom: 20px;
}

.single-services i.img {
  margin: auto;
  margin-bottom: 20px;
  color: var(--color-green);
  font-size: 4rem;
}

/**************************************
*
*         PROGRAMS
*
***************************************/

#programs {
  background-color: var(--color-yellow);
}

#programs h2 {
  color: var(--color-white);
}

.wrapper-programs {
  margin-top: 50px;
}

.program-content {
  background-color: var(--color-white);
  padding: 40px;
  position: relative;
}

.program-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.date {
  margin-bottom: 20px;
  color: var(--color-green);
}

.price {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 10px 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 20px;
}

/**************************************
*
*         SALE
*
***************************************/

#sale {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(68, 68, 68, 0.8)),
      to(rgba(68, 68, 68, 0.1))
    ),
    url("/images/declipse.jpg");
  background-image: -o-linear-gradient(
      rgba(68, 68, 68, 0.8),
      rgba(68, 68, 68, 0.1)
    ),
    url("/images/declipse.jpg");
  background-image: linear-gradient(
      rgba(68, 68, 68, 0.8),
      rgba(68, 68, 68, 0.1)
    ),
    url("/images/declipse.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

.wrapper-sale {
  max-width: 1000px;
  color: var(--color-white);
}

.wrapper-sale h2 {
  color: var(--color-white);
}

.wrapper-sale p {
  margin-bottom: 0.5rem;
}

.wrapper-sale .btn {
  margin-top: 50px;
}

/**************************************
*
*         TEAM
*
***************************************/

#team {
  background-color: var(--color-light-gray);
}

.wrapper-team {
  margin-top: 50px;
}

.single-team {
  width: calc(33.333333% - 20px);
  margin: 10px;
}

.single-team img {
  width: 100%;
  flex-grow: 1;
  object-fit: cover;
}

.team-content {
  padding: 40px;
  background-color: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.team-content p {
  margin-bottom: 20px;
  color: var(--color-gray);
  text-align: justify;
}

.team-social {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team-social li {
  margin: 0px 7px;
}

.team-social li a {
  font-size: 18px;
  color: var(--color-gray);
}

.team-social li a:hover {
  color: var(--color-red);
}

/**************************************
*
*         TESTIMONIALS
*
***************************************/

#testimonials {
  background-color: var(--color-green);
}

#testimonials .suptitle,
#testimonials h2,
.single-testimonials p,
.wrapper-author h3,
.wrapper-author p {
  color: var(--color-white);
}

.wrapper-testimonials {
  max-width: 1000px;
}

.single-testimonials img {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 30px;
}

.single-testimonials p {
  font-size: 20px;
  margin-bottom: 20px;
}

.wrapper-author h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.wrapper-author p {
  font-size: 16px;
}

/**************************************
*
*         CONTACT
*
***************************************/

#contact {
  padding-top: 100px;
  background-color: var(--color-light-gray);
}

.wrapper-contact {
  width: 30%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 50px;
}

.wrapper-contact.flex {
  width: 100%;
  justify-content: space-around;
  margin-top: 30px;
}

.wrapper-form {
  width: 70%;
}

#contact h2 {
  margin-bottom: 50px;
}

.wrapper-contact-form {
  padding-bottom: 50px;
}

.single-address {
  margin-bottom: 50px;
}

.single-address h3 {
  font-size: 25px;
}

.single-address p {
  margin-bottom: 10px;
}

.single-address a {
  color: var(--color-gray);
}

.single-address a:hover {
  color: var(--color-red);
}

.wrapper-input {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrapper-input input {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  border: none;
  outline: none;
  width: calc(50% - 10px);
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: rgba(158, 158, 158, 0.1);
  color: var(--color-dark);
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.wrapper-input input:focus,
textarea:focus {
  background-color: rgba(158, 158, 158, 0.3);
}

textarea {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  margin-bottom: 20px;
  border-radius: 5px;
  width: 100%;
  background-color: rgba(158, 158, 158, 0.1);
  padding: 15px;
  height: 200px;
}

.wrapper-form button {
  outline: none;
  border: none;
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  cursor: pointer;
}

.wrapper-map {
  width: 100%;
  height: 400px;
}

.wrapper-map iframe {
  width: 100%;
  height: 400px;
}

.copyright {
  padding: 30px 15px;
  background-color: var(--color-green);
  color: var(--color-white);
}

.copyright p {
  font-size: 14px;
}

#logo {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}

#logo > img {
  height: 64px;
  display: inline-block;
}

#logo > span {
  color: var(--color-white);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.text-primary {
  color: var(--color-red);
}

b {
  font-weight: bold;
}

.owl-carousel .owl-item img {
  height: 200px;
  object-fit: cover;
}

.headline {
  background-color: var(--color-green);
  padding: 3.75rem 2rem;
  font-size: 7.5rem;
}

.headline h1 {
  margin: 0;
}

.w-half {
  width: 50%;
}

.w-full {
  width: 100%;
}

.bg-red {
  background-color: var(--color-red);
  color: var(--color-white);
}

.prl {
  padding-left: 4rem;
  padding-right: 4rem;
}

.f-img {
  height: 100%;
}

.f-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper-aboutus .campaign-cta-content-container {
  margin-top: 70px;
}

.pb-0 {
  padding-bottom: 0;
}

.wwh-info p {
  font-size: 1.5rem;
}

.oh {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

img.contain {
  object-fit: contain;
}

#why-matters .aboutus-content {
  padding-right: 20px;
}

p > a {
  color: var(--color-red);
  text-decoration: underline;
}

#testimonials p {
  color: var(--color-white);
  margin-bottom: 1rem;
  text-align: center;
}

/* my code */
a#menu-icon {
	text-transform: uppercase;
}

#menu-icon i {
  margin-left: 4px;
}

.nav-menu {
  position: absolute;
  right: 20px;
  width: 100px;
}
.nav-menu ul {
  display: none;
}

.nav-menu ul.visible {
  display: block;
}

.nav-menu ul > li {
  display: block;
  padding: 4px;
  float: none;
  margin: 0;
  height: auto;
  text-align: right;
  text-transform: uppercase;
}
