/* guides */

/*
font-family: "Montserrat", sans-serif
font-family: "Coolvetica Bk" (regular)
white: #fffaee
yellow: #f3b71c
black: #000
*/

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

.btn {
  padding: .75rem 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #000;
  border-radius: 50px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.btn:hover {
  color: #fff;
  background-color: #f3b71c;
  border: 2px solid #f3b71c;
}

.hexagon {
  position: absolute;
  width: 200px;
  height: 240px;
  background: #f3b71c;
  clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
  margin: 50px auto;
  transform: rotate(90deg);
  z-index: 0;
}

@media (max-width: 991px) {
  .d-none-for-xs {
    display: none;
  }
}


/* navigation */

.navbar {
  box-shadow: none;
  background-color: #fffaee;
}

/*
.navbar.navbar-shrink {
  box-shadow: none;
  background-color: #fff;
}
*/

.navbar .navbar-brand img {
  width: 250px;
}

.navbar .navbar-nav {
  padding-top: .75rem;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  margin: 0 1.5rem;
  padding: 0;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
}

/*
.navbar.navbar-shrink .navbar-nav .nav-item .nav-link {
  color: #212529;
}
*/

.navbar .navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #f3b71c;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #000;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}

.navbar .navbar-nav .nav-item .nav-link-cta {
  margin-left: 4rem;
  font-family: "Coolvetica Rg";
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .75px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link-cta:hover {
  color: #f3b71c;
}

.navbar .navbar-nav .nav-item .nav-link-cta:before {
  display: none;
}

.navbar .navbar-nav .nav-item .nav-link-cta:after {
  content: "";
  position: absolute;
  top: -11px;
  right: 25px;
  width: 21px;
  height: 21px;
  background-image: url("../images/bee_black.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.navbar .navbar-nav .nav-item .nav-link-cta span {
  color: #f3b71c;
}

/*
.navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
  color: #f4623a;
}
*/

.navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar .navbar-nav .nav-item .nav-link-cta {
    margin-left: 3rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-nav .nav-item .nav-link-cta {
    margin-left: 3rem;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-brand img {
    width: 180px;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 0;
  }

  .navbar .navbar-nav .nav-item .nav-link-cta {
    margin-top: 1rem;
    margin-left: 0;
  }
}

/* front page cover */

.front-page-cover {
  position: relative;
  height: 100vh;
  padding-top: 108px;
  padding-bottom: 0;
  background-color: #fffaee;
}

.front-page-cover h1 {
  position: relative;
  margin-bottom: 2.25rem;
  font-family: "Coolvetica Rg";
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
}

.front-page-cover h1 span {
  color: #f3b71c;
}

.front-page-cover p {
  margin-bottom: 108px;
  font-size: .9rem;
  font-weight: 500;
  z-index: 0;
}

.front-page-cover .photo {
  position: absolute;
  top: 108px;
  right: 0;
  width: 50%;
  height: calc(100% - 108px);
  height: calc(100% - 162px);
  background-image: url("../images/cover.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position-y: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.front-page-cover-hexagon-1 {
  top: 1.9rem;
  left: 6.1rem;
  width: 40px;
  height: 48px;
}

.front-page-cover-hexagon-2 {
  top: 2.5rem;
  left: 1rem;
  width: 80px;
  height: 96px;
  background-color: #fffaee;
  z-index: 1;
}

.front-page-cover-hexagon-2-border {
  top: calc(2.5rem - 1px);
  left: calc(1rem - 1px);
  width: 82px;
  height: 98px;
}

.front-page-cover-hexagon-3 {
  top: 3.75rem;
  left: 23rem;
  width: 40px;
  height: 48px;
  background-color: #fffaee;
  z-index: 1;
}

.front-page-cover-hexagon-3-border {
  top: calc(3.75rem - 1px);
  left: calc(23rem - 1px);
  width: 42px;
  height: 50px;
}

.front-page-cover-hexagon-4 {
  bottom: 7rem;
  left: 16.5rem;
  width: 100px;
  height: 120px;
  background-color: #eaebe5;
  z-index: 2;
}

@media (max-width: 991px) {
  .front-page-cover {
    height: auto;
    padding-top: 94px;
  }

  .front-page-cover h1 {
    margin-top: 14rem;
    font-size: 2.25rem;
  }

  .front-page-cover p {
    margin-bottom: 4.5rem;
  }

  .front-page-cover-hexagon-1 {
    top: 0;
    left: 7.1rem;
  }

  .front-page-cover-hexagon-2 {
    top: 0.6rem;
    left: 2rem;
  }

  .front-page-cover-hexagon-2-border {
    top: calc(0.6rem - 1px);
    left: calc(2rem - 1px);
  }

  .front-page-cover-hexagon-4 {
    left: 12.5rem;
    bottom: 5rem;
    width: 75px;
    height: 90px;
  }
}

/* front page intro */

.front-page-intro {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fdf2d5;
}

.front-page-intro h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-weight: 600;
}

.front-page-intro h2 span:last-child {
  margin-left: .5rem;
}

.front-page-intro img {
  width: 250px;
  margin-left: .5rem;
  margin-right: .2rem;
  margin-bottom: 8px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-intro h2 {
    font-size: 1.75rem;
  }

  .front-page-intro img {
    width: 200px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-intro h2 {
    flex-direction: column;
    font-size: 1.75rem;
  }

  .front-page-intro h2 span:last-child {
    margin-left: 0;
  }

  .front-page-intro img {
    width: 200px;
  }
}

@media (max-width: 991px) {
  .front-page-intro {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .front-page-intro h2 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .front-page-intro h2 span:last-child {
    margin-top: -8px;
    margin-left: 0;
  }

  .front-page-intro img {
    width: 180px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}

/* front page info blocks */

.front-page-info-blocks {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffaee;
}

.front-page-info-blocks .individual-info-block h2 {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.front-page-info-blocks .individual-info-block p {
  width: 75%;
  width: 85%;
  margin-left: 12.5%;
  margin-left: 7.5%;
  margin-right: 12.5%;
  margin-right: 7.5%;
  margin-bottom: 2.25rem;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
}

.front-page-info-blocks .individual-info-block img {
  width: 60px;
  height: auto;
}

.front-page-info-blocks .individual-info-block > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.front-page-info-blocks .front-page-info-blocks-separator {
  width: 500px;
  margin-top: 4rem;
  margin-left: -300px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-info-blocks .individual-info-block p {
    min-height: 130px;
  }

  .front-page-info-blocks .front-page-info-blocks-separator {
    margin-left: -150px;
  }
}

@media (max-width: 991px) {
  .front-page-info-blocks {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .front-page-info-blocks .individual-info-block p {
    width: 95%;
    margin-left: 0;
    margin-right: 5%;
    text-align: left;
  }

  .front-page-info-blocks .individual-info-block > div:first-child {
    justify-content: flex-start;
  }

  .front-page-info-blocks .front-page-info-blocks-separator {
    width: 400px;
    margin-left: -200px;
  }
}

/* front page team */

.front-page-team {
  padding-top: 0;
  padding-bottom: 4rem;
  background-color: #fffaee;
}

.front-page-team h3 {
  margin-bottom: 2.25rem;
  font-family: "Coolvetica Rg";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.front-page-team h3 span {
  color: #f3b71c;
}

.front-page-team p {
  width: 80%;
  margin-bottom: 3rem;
  font-size: .9rem;
  font-weight: 500;
}

.front-page-team .photo {
  position: relative;
  height: 460px;
  width: 95%;
  margin-top: 1.5rem;
  background-color: #f9e8b7;
  border-radius: 20px;
  z-index: 1;
}

.front-page-team .photo:after {
  position: absolute;
  content: "";
  top: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  z-index: -1;
}

.front-page-team .photo-1:after {
  background-image: url("../images/violeta_alisauskiene_original.png");
}

.front-page-team .photo-2:after {
  background-image: url("../images/dainora_maziliauskiene_original.png");
}

.front-page-team .photo.margin-left {
  margin-left: 5%;
}

.front-page-team .photo.margin-right {
  margin-right: 5%;
  margin-left: 0;
}

.front-page-team .photo.updated-background {
  background-color: #eaebe5;
}

.front-page-team .photo.updated-background:after {
  background-size: 120%;
  background-position-x: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-team p {
    width: 100%;
  }

  .front-page-team .photo {
    height: 400px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-team p {
    width: 100%;
  }

  .front-page-team .photo {
    height: 360px;
  }

  .front-page-team .photo.updated-background:after {
    background-size: 130%;
    background-position-x: -15px;
  }
}

@media (max-width: 991px) {
  .front-page-team {
    padding-bottom: 3rem;
  }

  .front-page-team p {
    width: 95%;
    margin-right: 5%;
  }

  .front-page-team .photo {
    height: 220px;
    width: calc(100% - 1rem);
  }

  .front-page-team .photo-1:after {
    top: -1rem;
    left: -1rem;
  }

  .front-page-team .photo.margin-right {
    margin-right: 0;
    margin-top: 1rem;
    margin-left: 1rem;
  }

  .front-page-team .photo.margin-left {
    margin-right: 0;
    margin-top: 1rem;
    margin-left: 1rem;
  }

  .front-page-team .photo.updated-background:after {
    top: -1rem;
    left: -1rem;
    background-size: 130%;
    background-position-x: -15px;
  }
}

/* front page courses */

.front-page-courses {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffaee;
}

.front-page-courses h3 {
  margin-bottom: 2.25rem;
  font-family: "Coolvetica Rg";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.front-page-courses h3 span {
  color: #f3b71c;
}

.front-page-courses p {
  width: 80%;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}

.front-page-courses .photo {
  position: relative;
  height: 560px;
  width: 95%;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  background-color: #f6d784;
  border-radius: 20px;
  z-index: 1;
}

.front-page-courses .photo:after {
  position: absolute;
  content: "";
  top: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  background-image: url("../images/courses_photo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  z-index: -1;
}

.front-page-courses .front-page-courses-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 80%;
  margin-left: 20%;
  margin-top: 2rem;
}

.front-page-courses .front-page-courses-list .individual-course {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1rem 0;
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  border-bottom: 2px solid #000;
  cursor: pointer;
}

.front-page-courses .front-page-courses-list .individual-course .individual-course-title {
  flex: 1 1 calc(100% - 35px - 1.5rem);
  width: calc(100% - 35px - 1.5rem);
  max-width: calc(100% - 35px - 1.5rem);
  min-width: calc(100% - 35px - 1.5rem);
  margin-bottom: 0;
  color: #000;
  font-size: 1.25rem;
  font-weight: 600;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-courses .front-page-courses-list .individual-course:hover .individual-course-title {
  color: #f3b71c;
}

.front-page-courses .front-page-courses-list .individual-course .arrow {
  flex: 1 1 35px;
  width: 35px;
  max-width: 35px;
  min-width: 35px;
}

.front-page-courses .front-page-courses-list .individual-course .arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  text-align: center;
  background-color: transparent;
  background-image: url("../images/arrow.png");
  background-size: 35px;
  border-radius: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-courses p {
    width: 90%;
  }

  .front-page-courses .front-page-courses-list {
    width: 85%;
    margin-left: 15%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-courses p {
    width: 100%;
  }

  .front-page-courses .front-page-courses-list {
    width: 90%;
    margin-left: 10%;
  }
}

@media (max-width: 991px) {
  .front-page-courses {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .front-page-courses p {
    width: 95%;
    margin-right: 5%;
  }

  .front-page-courses .photo {
    height: 400px;
    margin-top: 1rem;
    margin-left: 1rem;
  }

  .front-page-courses .photo:after {
    top: -1rem;
    left: -1rem;
    background-size: 125%;
  }

  .front-page-courses .front-page-courses-list {
    width: 100%;
    margin-left: 0;
  }
}

/* front page testimonials */

.front-page-testimonials {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffaee;
}

.front-page-testimonials h3 {
  margin-bottom: 3rem;
  font-family: "Coolvetica Rg";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.front-page-testimonials h3 span {
  color: #f3b71c;
}

.front-page-testimonials p {
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}

.front-page-testimonials .individual-testimonial {
  padding: 3rem 2rem;
  background-color: #eaebe5;
  border-radius: 20px;
}

.front-page-testimonials .individual-testimonial p:first-child {
  min-height: 152px;
}

.front-page-testimonials .individual-testimonial.individual-testimonial-orange {
  background-color: #f9e8b7;
}

.front-page-testimonials .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.front-page-testimonials .dots span {
  width: 20px;
  height: 20px;
  background-color: #eaebe5;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-testimonials .dots span.active,
.front-page-testimonials .dots span:hover {
  background-color: #f3b71c;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-testimonials .individual-testimonial p:first-child {
    min-height: 195px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-testimonials .individual-testimonial p:first-child {
    min-height: 195px;
  }
}

@media (max-width: 991px) {
  .front-page-testimonials {
    padding-top: 1.5rem;
  }

  .front-page-testimonials h3 {
    margin-bottom: 2.25rem;
  }
}

/* front page consultations */

.front-page-consultations {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.front-page-consultations h3 {
  margin-bottom: 3rem;
  font-family: "Coolvetica Rg";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.front-page-consultations h3 span {
  color: #f3b71c;
}

.front-page-consultations .front-page-consultations-separator {
  width: 400px;
  margin-left: auto;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-consultations .individual-info-block p {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-consultations .individual-info-block p {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 991px) {
  .front-page-consultations {
    padding-top: .5rem;
    padding-bottom: 3rem;
  }

  .front-page-consultations h3 {
    margin-bottom: 2.25rem;
  }

  .front-page-consultations .front-page-consultations-separator {
    width: 300px;
  }
}

/* front page cta */

.front-page-cta {
  padding-bottom: 6rem;
  background-color: #fffaee;
}

.front-page-cta h3 {
  margin-bottom: 2.25rem;
  font-family: "Coolvetica Rg";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.front-page-cta h3 span {
  color: #f3b71c;
}

.front-page-cta p {
  width: 80%;
  margin-bottom: 3rem;
  font-size: .9rem;
  font-weight: 500;
}

.front-page-cta .partners-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  height: 400px;
  padding: 2rem;
  background-color: #f9e8b7;
  border-radius: 20px;
}

.front-page-cta .partners-logos .individual-logo {
  flex: 1 1 calc(100% / 2);
  width: calc(100% / 2);
  max-width: calc(100% / 2);
  min-width: calc(100% / 2);
  text-align: center;
}

.front-page-cta .partners-logos .individual-logo img {
  width: 75%;
  height: auto;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-cta p {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-cta p {
    width: 100%;
  }

  .front-page-cta .partners-logos {
    height: 340px;
  }
}

@media (max-width: 991px) {
  .front-page-cta {
    padding-bottom: 3rem;
  }

  .front-page-cta p {
    width: 95%;
    margin-right: 5%;
  }

  .front-page-cta .partners-logos {
    height: 300px;
    margin-top: 3rem;
    padding: 1.5rem;
  }

  .front-page-cta .partners-logos .individual-logo img {
    width: 80%;
  }
}

/* footer */

footer {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #eaebe5;
}

footer p {
  font-size: .8rem;
  font-weight: 500;
}

footer a {
  position: relative;
  color: #000;
  text-decoration: none;
}

footer a:hover{
  color: #000;
}

footer a:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f3b71c;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer a:hover:before {
  width: 100%;
}

footer img {
  width: 250px;
}

footer ul {
  margin-top: 3rem;
  margin-bottom: 0;
  list-style-type: none;
  padding-inline-start: 0;
}

footer ul.social-icons {
  margin-top: 1.5rem;
}

footer ul li {
  padding-top: .25rem;
  padding-bottom: .25rem;
  font-size: .85rem;
  font-weight: 600;
}

footer ul li span {
  margin-right: .3rem;
}

footer ul.social-icons li {
  display: inline-block;
  margin-right: .5rem;
}

footer ul.social-icons li:last-child {
  margin-right: 0;
}

footer ul li a {
  position: relative;
  color: #000;
  text-decoration: none;
}

footer ul li a:hover{
  color: #000;
}

footer ul li a:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #f3b71c;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer ul li a:hover:before {
  width: 100%;
}

footer ul.social-icons li a {
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer ul.social-icons li a:hover {
  opacity: .7;
}

footer ul.social-icons li a:before {
  display: none;
}

footer ul.social-icons li img {
  width: 35px;
}

footer ul li:first-child {
  padding-top: 0;
}

footer ul li:last-child {
  padding-bottom: 0;
}

@media (max-width: 991px) {
  footer {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  footer ul {
    margin-top: .5rem;
  }
}


















/* */
