@charset "UTF-8";
:root {
--main-bg: #ffffff;
--header-bg: rgba(255,255,255,0.5);
--footer-bg: #232323;

--color-black: #232323;
--color-lightgreen: #b6db3d;
--color-olive: #607903;
--color-pear: #f8f2b2;
--color-pine: #6b8c55;
--color-mint: #b1cb82;

--font-primary: #232323;
--font-color: #607903;
--font-gray: #919192;
--font-red: #ef4040;
--font-white: #ffffff;
--font-btn: #232323;

--bg-test: #cba7d5;
--bg-btn: #b1cb82;
--bg-white: #ffffff;

--bg-price: #ffffff;
--border-price: #607903;

--font-input: #232323;
--bg-input: #ffffff;

--border-color: #607903;
}

* {box-sizing: border-box; scroll-behavior: smooth;}

/*==========  CUSTOM CSS  ==========*/
html {
  min-width: 320px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 320px;
  color: var(--font-primary);
  background: url('../img/main_bg_pattern.png');
  background-repeat: repeat;
  background-position: center top;
  background-size: 80px;
  background-color: var(--main-bg);
}
@media only screen and (max-width: 768px) {
  body {background-size: 80px;}
}

p {
  margin: 0 0 20px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--font-primary);
}
h1, h2, h3 {color:var(--font-color); font-weight: 600; margin-bottom: 20px;}
h4, h5, h6 {color:var(--font-color); font-weight: 600; margin-bottom: 16px;}

/*------ MAIN ---------*/
.main-container { margin: 0 auto; max-width: 960px; /*background-color: var(--bg-test);*/ }

@media only screen and (max-width: 959px) {
  .main-container { padding: 0; }
}
/*---- Header ----*/
.header { position: relative; margin: 0; padding: 0; background-color: var(--header-bg);}
  
.header-container {display: flex; justify-content:space-between; align-items: center; gap:10px; margin: 0; padding: 16px 5px;}

.header-logo {display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 0; text-align: left;}
.header-logo img {display: inline-block; margin: 0; padding: 0; width: 60px;}

.header-logo-text {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0;
  height: 60px;
  line-height: 60px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color:var(--font-primary);
  text-align: left;
}
/*---------*/
.header-btn-container {margin: 0; padding: 0;}

.login-btn,
.login-btn:link,
.login-btn:visited,
.login-btn:hover,
.login-btn:active {
  display: inline-block;
  margin: 0;
  padding: 12px 24px 12px 52px;
  min-width: 120px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color:var(--font-btn);
  text-align: center;
  border: 0;
  border-radius: 26px;
  cursor: pointer;
  text-decoration: none;
  background: url('../img/login-user.png');
  background-repeat: no-repeat;
  background-position: 12px center;
  background-color: var(--bg-btn);
  background-size: 26px;
  box-shadow: 0 0 15px rgba(0,0,0,0.33);
}
.login-btn:hover { box-shadow: 0 0 15px rgba(0,0,0,0.2); }

@media only screen and (max-width: 768px) {
  .header-logo-text { font-size: 22px; }
  /*------------*/
}
@media only screen and (max-width: 576px) {
  .header-container { flex-direction: column; }
  /*------------*/
}
/*---- end: Header ----*/


/*--- Sections ---*/
.section { /*display: none;*/ box-sizing: border-box; }

.section-main {position: relative; margin: 0; padding: 4rem 0;
  background: url('../img/main/main_bg.png'), url('../img/main/main_bg_color.png');
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: 100%, cover;
}

.section-lifestyle {position: relative; margin: 0; padding: 2rem 0;
  background: url('../img/lifestyle/lifestyle_bg.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
}

.section-personal { margin: 0; padding: 3rem 0 2rem 0;
  background: url('../img/personal/personal_bg_fruits.png'), url('../img/personal/personal_bg.png');
  background-repeat: no-repeat, no-repeat;
  background-position: right center, left top;
  background-size: 250px, 100%;
}

.section-promo {
  margin: 0;
  padding: 3.5rem 0 4.5rem 0;
  background: url('../img/promo/promo_bg.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
}

.section-course { margin: 0; padding: 0 0 2rem 0; }

.section-faq { margin: 0; padding: 2rem 0; }

@media only screen and (max-width: 768px) {
  .section-personal {
    background-size: 200px, 100%;
  }
}
@media only screen and (max-width: 576px) {
  .section-personal {
    background-size: 160px, 100%;
  }
}
@media only screen and (max-width: 400px) {
  .section-personal {
    background-size: 100px, 100%;
  }
}
/*--- end: Sections ---*/


/*--- Main section ---*/
.main-top { margin: 0; padding: 6rem 0; }

.main-left-text {display:block; position: absolute; z-index: 9; left:0; top:15%; margin: 0; padding: 0; width: 100%; height: auto; max-width: 120px;}
.main-right-text {display:block; position: absolute; z-index: 9; right:0; top:15%; margin: 0; padding: 0; width: 100%; height: auto; max-width: 120px;}

/*--------------*/
.main-top-info {
  position: relative; 
  z-index: 10; 
  display: flex; 
  flex-wrap: wrap;
  flex-direction: column; 
  margin: 0; 
  padding: 20px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background: rgb(255,255,255,0.4);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.main-top-info-content {margin: 0; padding: 0; text-align: center; }

.main-top-info-text {display: inline-block; margin: 0; padding: 12px 24px; font-size:24px; font-weight: 400; line-height: 1.1; color: var(--font-primary); text-align: center; border-radius: 48px; border: 2px solid var(--color-pear); background-color: var(--bg-white); box-shadow: 0 0 26px rgba(182,219,61,0.43);}
.main-top-info-text span { color:var(--font-color); border-bottom: 2px solid var(--color-lightgreen);}

.btn-container-main {position: relative; margin: 0; padding: 12px 0; text-align: center;}
.btn-container-main .main-btn {font-size: 16px !important;}
/*----------------*/

@media only screen and (max-width: 768px) {
  .main-left-text { z-index: 6; max-width: 100px; }
  .main-right-text { z-index: 6; max-width: 100px; }
  /*----------------*/
  .main-top { padding: 3rem 0; }
  /*----------------*/
  .main-top-info-text { font-size:20px; }
  /*----------------*/
}
@media only screen and (max-width: 576px) {
  .main-top { padding: 2rem 0; }
  /*----------*/
  .main-left-text { max-width: 100px; }
  .main-right-text { max-width: 100px; }
  /*----------------*/
  .main-top-info-text { font-size:16px; }
  /*----------------*/
}
@media only screen and (max-width: 400px) {
  .main-left-text { top:15%; max-width: 80px; }
  .main-right-text { top:15%; max-width: 80px; }
  /*----------------*/
  .main-top-info-text { font-size:16px; }
  /*----------------*/
}
/*--- end: Main section ---*/


/*--- LIFESTYLE section ---*/
.lifestyle-top-panel {display: none; margin: 0 0 40px 0; padding: 0 20px; text-align: left; }

.lifestyle-top-title { margin: 0; padding: 0 20px; font-family: 'Montserrat', Arial, sans-serif; font-size:28px; font-weight: 600; line-height: 1.2; color:var(--font-primary); text-transform:uppercase; text-align: left; }

/*------------*/
.lifestyle-box { margin: 0; padding: 0;}

.lifestyle-box-title { margin: 0 0 32px 0; padding: 0 20px; font-family: 'Montserrat', Arial, sans-serif; font-size:28px; font-weight: 600; line-height: 1.2; color:var(--font-primary); text-transform:uppercase; text-align: left; }

.lifestyle-content { display: flex; justify-content: space-between; align-items: center;}
.lifestyle-fruits { margin: 0; padding: 0 0 0 20px; min-width: 45%; text-align: center;}
.lifestyle-fruits img { margin: 0 auto; padding: 0; width:100%; max-width: 100%;}

/*----- collection ----*/
.lifestyle-collection {position: relative; z-index: 10; margin: 0 0 20px 0; padding: 0 20px; }

.lifestyle-item {display: inline-flex; align-items: center; gap:16px; margin: 0 0 10px 0; padding: 0; border-radius: 36px; background-color: var(--bg-white);}

.lifestyle-item-image {align-self: stretch; display: flex; align-items: center; margin: 0; padding: 12px 6px 12px 12px; border-radius: 36px 0 0 36px; background-color: var(--color-pine);}
.lifestyle-item-image img {margin: 0; padding: 0; max-width: 50px;}

.lifestyle-item-text {
  margin: 0;
  padding: 4px 6px 4px 0; 
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color:var(--font-primary);
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .lifestyle-top-panel { display: block; margin: 0 0 20px 0; padding: 0 20px; }
  .lifestyle-top-title { font-size: 26px; padding: 0 0;}

  .lifestyle-box-title { display: none; }
  /*------------*/
  .lifestyle-collection { margin: 0 0 10px 0; padding: 0 20px; }
  .lifestyle-item-text { font-size: 16px; }
  .lifestyle-item-image img {max-width: 48px;}
  /*------------*/
}
@media only screen and (max-width: 576px) {
  .lifestyle-top-panel { margin: 0 0 10px 0; padding: 0; }
  .lifestyle-top-title { font-size: 22px; margin: 0 0 20px 0; padding: 0 10px;}
  /*------------*/
  .lifestyle-content { flex-direction: column; justify-content: space-between; align-items: center;}
  .lifestyle-fruits { margin: 0 0 20px 0; padding: 0 10px; min-width: 100%;}
  .lifestyle-fruits img { width:100%; max-width: 260px;}
  /*-----------*/
  .lifestyle-collection { margin: 0 0 10px 0; padding: 0 10px; }
  .lifestyle-item-image img {max-width: 40px;}
}
@media only screen and (max-width: 400px) {
  .lifestyle-top-title { font-size: 20px; }
  /*---------------*/
  .lifestyle-item { gap:8px; }
  .lifestyle-item-text { font-size: 14px; }
  .lifestyle-item-image { padding: 12px 3px 12px 6px; }
  .lifestyle-item-image img {max-width: 36px;}
}
/*--- end: LIFESTYLE section ---*/


/*--- PERSONAL section ---*/
.personal-top-panel { margin: 0 0 40px 0; padding: 0 10px; text-align: center; }

.personal-top-title { margin: 0; padding: 0 20px; font-family: 'Montserrat', Arial, sans-serif; font-size:28px; font-weight: 600; line-height: 1.2; color:var(--font-primary); text-transform:uppercase; text-align: center; }

/*---------------*/
.personal-targets {display: flex; flex-direction: column; gap: 40px; align-items: stretch; justify-content:center; margin: 0 0 40px 0; padding: 20px 20px; }

.personal-targets-item { display: flex; justify-content:flex-start; align-items: center; gap: 16px; max-width: 460px; margin: 0; padding: 0; }


.personal-targets-icon {
  display: inline-block;
  margin: 0; 
  padding: 0;
  min-width: 32px;
  width: 32px;
  height: 32px; 
  background: url('../img/personal/personal_check.png') ;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 32px;
}
.personal-targets-item:last-of-type .personal-targets-icon {
  background: url('../img/personal/personal_check_end.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 32px;
}
.personal-targets-text {display: inline-block; margin: 0; padding: 0; font-family: 'Montserrat', Arial, sans-serif; font-size: 18px; font-weight: 600; color:var(--font-primary); text-align: left; }

/*------------*/
@media only screen and (max-width: 768px) {
  .personal-top-panel { margin: 0 0 20px 0; }
  .personal-top-title { font-size: 26px; }
  /*------------*/
  .personal-targets { margin: 0 0 30px 0; gap: 40px; }
  .personal-targets-text { font-size: 16px; }
  /*------------*/
}
@media only screen and (max-width: 576px) {
  .personal-top-title { font-size: 22px; margin: 0 0 20px 0; padding: 0;}
  /*---------------*/
  .personal-targets {margin: 0 0 20px 0; padding: 20px 10px; gap: 20px;}
  .personal-targets-text { font-size: 14px; }
}
@media only screen and (max-width: 400px) {
  .personal-top-title { font-size: 20px; }
  /*---------------*/
  .personal-targets {margin: 0 0 10px 0; padding: 10px 5px; gap: 20px; }
  .personal-targets-icon { min-width: 32px; width: 32px; height: 32px; background-size: 32px; }
}
/*--- end: PERSONAL section ---*/


/*--- PROMO Section ---*/
.promo-top-panel { margin: 0 auto 60px auto; padding: 0; width: 80%; text-align: center; }

.promo-top-title { margin: 0; padding: 0 20px; font-family: 'Montserrat', Arial, sans-serif; font-size:28px; font-weight: 600; line-height: 1.2; color:var(--font-primary); text-transform:uppercase; text-align: center; }

/*-------*/
.promo-collection { margin: 0 auto; padding: 0 10px; width: 80%; }

.promo-item { display: flex; align-items:center; margin: 0 0 16px 0; padding: 0 5px 0 0; border-radius: 32px; border: 2px solid var(--color-lightgreen); 
  background: -moz-linear-gradient(left, rgba(108,140,86,1) 0%, rgba(181,198,162,1) 59%, rgba(230,236,223,0) 86%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(left, rgba(108,140,86,1) 0%,rgba(181,198,162,1) 59%,rgba(230,236,223,0) 86%,rgba(255,255,255,0) 100%);
  background: linear-gradient(to right, rgba(108,140,86,1) 0%,rgba(181,198,162,1) 59%,rgba(230,236,223,0) 86%,rgba(255,255,255,0) 100%);
}

.promo-item-image { align-self: flex-start; margin: 0 16px 0 0; padding: 0; border-radius: 50px; box-shadow: 0 0 26px 10px rgba(182,219,61,0.43); }
.promo-item-image img {margin: 0; padding: 0; max-width: 50px;}
.promo-item-text {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color:var(--font-primary);
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .promo-top-panel { margin: 0 auto 30px auto; }
  .promo-top-title { font-size: 24px; }
  .promo-item-text { font-size: 18px; }
  .promo-item-image img {max-width: 50px;}
}
@media only screen and (max-width: 576px) {
  .promo-top-panel { width: 100%; }
  .promo-top-title { font-size: 22px; padding: 0 10px;}
  .promo-collection { width: 100%; }
}
@media only screen and (max-width: 400px) {
  .promo-top-title { font-size: 20px; }
  .promo-item-text { font-size: 16px; }
  .promo-item-image {margin: 0 8px 0 0;}
  .promo-item-image img {max-width: 50px;}
}
@media only screen and (max-width: 340px) {
  .promo-top-title { font-size: 18px; }
  .promo-item-text { font-size: 14px; }
  .promo-item-image img {max-width: 40px;}
}
/*--- end: PROMO Section ---*/


/*----------- COURSE --------------*/
/*------ COURSE TOP -------*/
.course-top {position: relative; margin: 0; padding: 4rem 0 2rem 0;
  background: url('../img/course/course_top_bg.png'), url('../img/course/course_top_white_bg.png');
  background-repeat: no-repeat, no-repeat;
  background-position:  left top, left bottom;
  background-size: 540px, cover;
}

.course-top-panel {position: relative; margin: 0 0 20px 0; padding: 0;}
.course-top-title {position: relative; z-index: 15; margin: 0 0 40px 0; padding: 0; font-family: 'Montserrat', Arial, sans-serif; font-size:30px; font-weight: 600; line-height: 1.2; color: var(--font-primary); text-transform:uppercase; text-align: center; }

.course-top-panel-pic {position: absolute; right: 0; top: -140px; margin: 0; padding: 0; }
.course-top-panel-pic img { display: block; margin: 0 auto; padding: 0; width: 100%; max-width: 240px;}
/*--------------*/
.course-top-info {display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 0; padding: 0 20px;}

.course-top-info-item {display: flex; gap: 6px; justify-content: flex-start; align-items: center; margin: 0; padding: 12px 12px; border-radius: 48px; box-shadow: 0 0 12px rgba(0,0,0,0.12); border: 2px solid var(--border-color);
  background: rgb(122,152,104);
  background: -moz-linear-gradient(left, rgba(122,152,104,1) 0%, rgba(235,241,246,1) 74%);
  background: -webkit-linear-gradient(left, rgba(122,152,104,1) 0%,rgba(235,241,246,1) 74%);
  background: linear-gradient(to right, rgba(122,152,104,1) 0%,rgba(235,241,246,1) 74%);
}
.course-top-info-item:nth-of-type(1) {width: 40%;}
.course-top-info-item:nth-of-type(2) {width: 40%;}
.course-top-info-item:nth-of-type(3) {width: 25%; background: none !important; border-color: transparent; box-shadow: none;}
.course-top-info-item:nth-of-type(4) {width: 40%;}
.course-top-info-item:nth-of-type(5) {width: 25%; background: none !important; border-color: transparent; box-shadow: none;}

.course-top-info-icon { display: block; margin: 0; padding: 0; width: 64px;}

.course-top-info-text { margin: 0; padding: 0; font-size:15px; font-weight: 600; line-height: 1.2; color: var(--font-primary); text-align: left; text-transform: uppercase; }

@media only screen and (max-width: 768px) {
  .course-top { background-size: 520px; }
  .course-top-panel { margin: 0 0 20px 0; }
  .course-top-title { font-size:24px; }
  .course-top-panel-pic {right: 0; top: -120px; }
  .course-top-panel-pic img { max-width: 200px; }
  /*----------------*/
  .course-top-info { padding: 20px 20px 0 20px; flex-direction: column; }
  .course-top-info-item { width: 100% !important; }
  .course-top-info-item:nth-of-type(3),
  .course-top-info-item:nth-of-type(5) { display: none;}
  .course-top-info-icon { width: 60px; }

  .course-top-info-text { font-size:16px; }
}
@media only screen and (max-width: 576px) {
  .course-top { background-size: 400px; }
  .course-top-title { font-size:24px; }
  .course-top-panel-pic {right: 0; top: -60px; }
  .course-top-panel-pic img { max-width: 140px; }
  /*----------------*/
  .course-top-info { padding: 20px 10px 0 10px; }
  .course-top-info-icon {width: 50px;}
  .course-top-info-text { font-size:16px;}
  /*----------------*/
}
@media only screen and (max-width: 400px) {
  .course-top { background-size: 280px; }
  .course-top-title { font-size:20px; }
  .course-top-panel-pic {right: 0; top: -60px; }
  .course-top-panel-pic img { max-width: 100px; }
  /*----------------*/
  .course-top-info-icon {width: 48px;}
  .course-top-info-text { font-size:14px;}
  /*----------------*/
}

/*------ COURSE BOTTOM -------*/
.course-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 3.5rem 0;
  background: url('../img/course/course_bg_left.png'), url('../img/course/course_bg_right.png'), url('../img/course/course_bottom_white_bg.png');
  background-repeat: no-repeat;
  background-position: left center, right center, center top;
  background-size: 320px, 320px, cover;
}

.course-bottom-panel { margin: 0 0 32px 0; padding: 0 20px; text-align: center;}

.course-bottom-title { margin: 0 0 12px 0; padding: 0; font-family: 'Montserrat', Arial, sans-serif; font-size:30px; font-weight: 600; line-height: 1.2; color: var(--font-primary); text-transform:uppercase; text-align: center; }
.course-bottom-subtitle { margin: 0; padding: 0; font-family: 'Montserrat', Arial, sans-serif; font-size:20px; font-weight: 600; line-height: 1.2; color: var(--color-olive); text-align: center; }

/*----------*/
.course-bottom-container { width: 60%; margin: 0 auto; padding: 16px; border-radius: 48px;
  background: rgb(236,242,224);
  background: -moz-linear-gradient(-45deg, rgba(236,242,224,1) 0%, rgba(185,208,143,1) 100%);
  background: -webkit-linear-gradient(-45deg, rgba(236,242,224,1) 0%,rgba(185,208,143,1) 100%);
  background: linear-gradient(135deg, rgba(236,242,224,1) 0%,rgba(185,208,143,1) 100%);
}

.course-bottom-box { margin: 0; padding: 10px 10px; border-radius: 44px; border: 2px dashed var(--border-color); } 

/*--- course info ---*/
.course-info {display: flex; justify-content:space-between; align-items: center; margin: 0 0 20px 0; padding: 10px 0;}

.course-info-price { margin: 0; padding: 5px 5px; font-family: 'Montserrat', Arial, sans-serif; background-color: var(--bg-price); box-shadow: 0 10px 15px rgba(255,255,255,0.64); border-radius: 16px; } 
.course-info-price-border { margin: 0; padding: 5px 5px; border-radius: 12px; border: 2px dashed var(--border-price); } 

.course-info-top { margin: 0 0 1px 0; padding: 0; font-size:18px; font-weight: 600; line-height: 1.2; color: var(--font-primary); text-align: center; opacity: 0.4; }
.course-info-top span { text-decoration: line-through; }

.course-price { margin: 0; padding: 0; font-size: 36px; font-weight: 600; line-height: 1; color: var(--color-olive); text-align: center; }
.price-full { display: none; }

.course-countdown {position: relative; margin: 0; padding: 0 0 0 60px; font-family: 'Montserrat', Arial, sans-serif;}

.course-countdown::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: 0px;
  top: 0px;
  display: block;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 61px;
  background: url('../img/course/course_timer.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 50px;
}
.course-countdown-text { margin: 0; padding: 0; font-size: 16px; font-weight: 600; line-height: 1.2; color: var(--font-primary); text-align: left; }
.course-countdown-timer { margin: 0; padding: 0; font-size: 32px; font-weight: 600; line-height: 1.2; color: var(--font-primary); text-align: left; }

@media only screen and (max-width: 800px) {
  .course-bottom { background-size: 320px, 320px, cover; }
  /*----------------*/
  .course-bottom-title { font-size: 26px; }
  .course-bottom-subtitle { font-size: 18px; }
  /*-------------*/
  .course-bottom-container { width: 80%; }
  .course-price { font-size: 32px; }
  .course-countdown-timer { font-size: 28px; }
  /*----------------*/
}
@media only screen and (max-width: 576px) {
  .course-bottom-title { font-size: 24px; }
  .course-bottom-subtitle { font-size: 17px; }
  /*-------------*/
  .course-bottom-container { width: 90%;}
}
@media only screen and (max-width: 400px) {
  .course-bottom-title { font-size: 20px; }
  .course-bottom-subtitle { font-size: 16px; }
  /*-------------*/
  .course-bottom-container { width: 96%; padding: 10px;}
  .course-price { font-size: 24px; }
  .course-countdown-timer { font-size: 24px; }
  /*----------------*/
}
/*----------- end: COURSE --------------*/

/*--- Form Course ----*/
.form-course { margin: 0; padding: 0; }

.form-line {padding:8px 8px; border-radius: 32px; background-color: var(--bg-input); box-shadow: 0 0 26px rgba(182,219,61,0.43);}
.form-control {font-weight: 400; color: var(--font-input); border: 1px solid transparent; background-color: var(--bg-input); border-radius: 32px; }
.form-control::placeholder { color: var(--font-input); /*text-decoration-line: underline; text-decoration-style: dashed; text-decoration-color: var(--font-input);*/ }
.form-control:focus { color: var(--font-input); box-shadow: none; background-color: transparent; border: 1px solid var(--border-color); }

.form-check-input {background-color: transparent; border-color: var(--border-color);}
.form-check-input:focus { box-shadow: none; border-color: var(--border-color);}
.form-check-input:checked { background-color: transparent; border-color: var(--border-color); }
.form-check-input:checked[type=checkbox] { background: url('../img/checkbox.svg'); }
.form-check label {margin: 0 0 6px 0; font-size: 10px; color: var(--font-primary);}

/*--- form btn ----*/
.form-btn-container {position: relative; margin: 0 0 1rem 0; padding: 5px 5px; border-radius: 32px; border: 2px solid var(--border-color); text-align: center;}

.form-btn,
.form-btn:link,
.form-btn:visited,
.form-btn:hover,
.form-btn:active {
  display: inline-block;
  margin: 0;
  padding: 10px 12px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color:var(--font-white);
  text-align: center;
  border: 0;
  border-radius: 32px;
  cursor: pointer;
  text-decoration: none;
  background-color: var(--color-olive);
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}
.form-btn:disabled { filter: grayscale(80%); }

@media only screen and (max-width: 768px) {
  .form-btn,
  .form-btn:link,
  .form-btn:visited,
  .form-btn:hover,
  .form-btn:active {
    padding: 10px 10px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 576px) {
  .form-control { font-size: 14px; }

  .form-btn,
  .form-btn:link,
  .form-btn:visited,
  .form-btn:hover,
  .form-btn:active {
    font-size: 16px;
  }
}
/*--- end: Form Course ----*/

/*--- FAQ ---*/
.faq-top-panel{ margin: 0 0 20px 0; padding: 0 20px; text-align: left; }

.faq-top-title { display: inline-block; margin: 0; padding: 0 10px; font-family: 'Montserrat', Arial, sans-serif; font-size:30px; font-weight: 600; line-height: 1.2; color:var(--font-primary); text-align: left; }
/*-------*/
.accordion { margin: 0; padding: 0 10px; --bs-accordion-border-width:0px; }

.accordion-item { background: none; border: none; border-bottom: 1px solid var(--color-olive); }
.accordion-item:last-of-type { border: none; }

.accordion-button { font-size: 20px; font-weight: 600; color: var(--font-primary); background: none; border: none; outline: none; }
.accordion-button::after {
  background: url('../img/faq/plus-lg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.accordion-button:focus {color: var(--font-primary); background: none; border: none; border-radius: 3px; outline: none; box-shadow: none;}
.accordion-button:not(.collapsed) {color:var(--font-primary); background: none; border: none;}
.accordion-button:not(.collapsed)::after {
  background: url('../img/faq/dash-lg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.accordion-body {font-size: 16px; font-weight: 600; color:var(--font-primary); border: none;}

@media only screen and (max-width: 768px) {
  .faq-top-title { padding: 0 5px; font-size: 26px; }

  .accordion-button {font-size: 16px;}
  .accordion-body {font-size: 14px;}
}
@media only screen and (max-width: 400px) {
  .faq-top-title { padding: 0; font-size: 22px; }

  .accordion-button {font-size: 16px;}
  .accordion-body {font-size: 14px;}
}
/*--- end: FAQ ---*/


/*--- Elements---*/
/*--- Button ---*/
.btn-container {position: relative; margin: 0; padding: 25px 0; text-align: center;}

.main-btn,
.main-btn:link,
.main-btn:visited,
.main-btn:hover,
.main-btn:active {
  display: inline-block;
  margin: 0;
  padding: 12px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color:var(--font-btn);
  text-align: center;
  border: 0;
  border-radius: 32px;
  cursor: pointer;
  text-decoration: none;
  background-color: var(--color-mint);
}
.main-btn:hover { border: 0; }

@media only screen and (max-width: 768px) {
  .btn-container {padding: 12px 0;}
  .main-btn,
  .main-btn:link,
  .main-btn:visited,
  .main-btn:hover,
  .main-btn:active {
    padding: 12px 24px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 576px) {
  .main-btn,
  .main-btn:link,
  .main-btn:visited,
  .main-btn:hover,
  .main-btn:active {
    padding: 12px 20px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .main-btn,
  .main-btn:link,
  .main-btn:visited,
  .main-btn:hover,
  .main-btn:active {
    padding: 12px 16px;
    font-size: 16px;
  }
}
/*--- end: Elements---*/


/*----- Footer ----*/
.footer-wrapper { position: relative; margin: 0; padding: 0; background-color: var(--footer-bg);}
.footer {padding: 3rem 10px 1rem 10px; max-width: 960px; background-color: var(--footer-bg);}
.footer-line {margin: 0 0 10px 0; padding: 0; color: var(--font-white); font-size: 16px; text-align: left;}

.footer-text { display: block; margin: 0 0 10px 0; padding: 0; font-family: 'Montserrat', Arial, sans-serif; font-size: 16px; font-weight: 400; line-height: 1.2; color:var(--font-white); text-align: center;}

.footer-image {margin: 0 0 16px 0; padding: 0; text-align: center;}
.footer-image img {display: inline-block; margin: 0 5px 5px 5px; padding: 0; max-width: 20%;}

/*---- footer menu ----*/
.footer-menu {margin: 0; padding: 0;}
.footer-menu-item:link,
.footer-menu-item:visited,
.footer-menu-item:active {
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color:var(--font-white);
  text-align: left;
  text-decoration: none;
}
.footer-menu-item:hover { text-decoration: underline; }

@media only screen and (max-width: 768px) {
  .footer {padding: 1rem 10px;}
  .footer-line {margin: 0 0 10px 0; font-size: 14px; text-align: left;}
  .footer-text { font-size: 14px; text-align: left; }
  .footer-image {margin: 0 0 16px 0; text-align: left;}

  .footer-menu-item:link,
  .footer-menu-item:visited,
  .footer-menu-item:active { font-size: 14px; }
}
@media only screen and (max-width: 400px) {
  .footer-line {font-size: 12px;}

  .footer-menu-item:link,
  .footer-menu-item:visited,
  .footer-menu-item:active { font-size: 12px; }
}
/*----- end: Footer ----*/

/*==========  END: CUSTOM CSS  ==========*/
