@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
@import "compass/css3";

:root {
  --blue: #1159BB;
  --white: #fff;
  --black: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  font-family: "Inter", sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navbar-nav .nav-item:hover {
  background-color: var(--blue);
}

.navbar-right {
  margin-left: 600px;
}

.navbar-toggler {
  font-size: 0.5rem;
  line-height: 1;
  color: var(--gray);
  background-color: var(--white) !important;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-nav li,
.navbar-brand {
  font-size: 28px;
}

.navbar-nav a {
color: var(--white);
}

.wheat {
  color: var(--white);
}

.black {
  background-color: var(--black);
}

.btn1 {
  margin-left: 40px;
  margin-right: 10px;
}

.btn-visible {
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  overflow: hidden;
  outline: none;
}

.active {
  color: var(--blue);
}

.card-subtitle,
.card-text,
a {
  font-family: "Crete Round", sans-serif;
}

h6 {
  font-size: 48px;
}

.centeree {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.second h1 {
  font-size: 72px;
}

.hidden {
  display: none;
}

.bookstore {
  border: 20px solid var(--blue);
}

.fa1 {
  font-size: 28px;
}

h2 {
  font-size: 40px;
}

h5 {
  font-size: 40px;
}

p {
  font-size: 20px;
}

a {
  color: var(--white);
}

a:hover {
  color: var(--blue);
}

.second h4 {
  font-size: 32px;
}

.crete,
.card-text,
p,
form {
  font-family: "Inter", sans-serif;
}

.blue {
  color: var(--blue);
}

.bg-blue {
  background-color: var(--blue);
}

h1 {
  margin: 50px 0 30px;
  text-align: center;
}

.faq-container {
  max-width: 600px;
  margin: 0 auto;
}

.faq {
  background-color: transparent;
  border: 1px solid #9fa4a8;
  border-radius: 10px;
  margin: 20px 0;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.3 ease;
}

.faq.active {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq.active::before,
.faq.active::after {
  content: "\f075";
  font-family: "Font Awesome 5 Free";
  color: #2ecc71;
  font-size: 7rem;
  position: absolute;
  opacity: 0.2;
  top: 20px;
  left: 20px;
  z-index: 0;
}

.faq.active::before {
  top: -10px;
  left: -30px;
  transform: rotateY(180deg);
}

.faq-title {
  margin: 0 35px 0 0;
  color: --blue;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
}

.faq-toggle:focus {
  outline: 0;
}

.faq-toggle .fa-times {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: #fff;
  display: block;
}

.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

.faq.active .faq-toggle {
  background-color: #9fa4a8;
}

.card-img-overlay {
  background-color: rgba(#000, 0.4);
}

#testimonials {
    background-color: var(--blue);
    width: 512px;
    margin: 0 auto;
}

#testimonials .star-wrapper {
    position: relative;
    display: inline-block;
    margin: 0.15rem;
}

#testimonials .star-wrapper i.star {
    font-size: 1.6rem;
    opacity: 0;
    transition-duration: 0.5s;
    color: coral;
    border-radius: 50%;
}

#testimonials .star-wrapper.active i.star {
    opacity: 1;
    transform: rotateY(360deg);
    transition-duration: 0.5s;
}

#testimonials .star-wrapper i.inside-star {
    position: absolute;
    font-size: 0;
    left: 50%;
    top: 50%;
    color: whitesmoke;
    opacity: 1;
}

#testimonials .star-wrapper.active i.inside-star {
    font-size: 3.2rem;
    left: 0;
    top: 0;
    margin-left: -0.9rem;
    margin-top: -0.9rem;
    transition-duration: 0.75s;
    transition-delay: 0.25s;
    opacity: 0;
}

#testimonials .star-wrapper i.star:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    margin-left: 0;
    margin-top: 0;
    background-color: white;
    border-radius: 50%;
    opacity: 1;
    border: 0px solid coral;
}

#testimonials .star-wrapper.active i.star:after {
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
    margin-left: 0;
    margin-top: 0;
    opacity: 0;
    transition-duration: 0.85s;
    transition-delay: 0.15s;
    transform: rotateY(360deg);
    border: 5px solid coral;
}

#testimonials p {
    font-size: 1.15rem;
    opacity: 0;
    color: white;
    transition-duration: 0.5s;
}

#testimonials p.active {
    opacity: 1;
    transition-duration: 0.5s;
}

label,
input,
textarea {
    display: block;
    width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    padding: 0.3em;
}
span {
    font-weight: 700;
    color: var(--blue);
    line-height: 35px;
    line-height: 2.5rem;
    font-size: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}
input[type="submit"] {
    background: var(--blue);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 1.3em;
}

.container {
    width: 460px;
    margin: 5em auto;
}
form {
    background-color: #ffffff;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.required-star {
    color: var(--blue);
}

input,
textarea {
    width: 100%;
    padding: 9px 20px;
    border: 1px solid #e1e2eb;
    background-color: #fff;
    color: var(--blue);
    caret-color: #829ab1;
    box-sizing: border-box;
    font-size: 14px;
    font-size: 1rem;
    line-height: 29px;
    line-height: 2rem;
    box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
    border-radius: 3px;
    line-height: 29px;
    line-height: 2rem;
}

iframe {
  display: block;
  width: 90%;
  max-width: 60rem;
  height: 25em;
  margin: 2rem auto;
  border: 1px solid var(--black);
}

.footer {
  position: relative;
  width: 100%;
  background: var(--blue);
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: var(--white);
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: var(--white);
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  body, html {
    font-size: 80%;
  }

  .centeree {
    top: 30%
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  /* .centeree {
    z-index: 1000;
  }  */

   body, html {
    font-size: 60%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}