@import url("https://fonts.googleapis.com/css2?family=Spline+Sans:wght@400;500;600;700&display=swap");

body {
  font-family: "Spline Sans", sans-serif;
  color: #777;
  line-height: 1.7;
}

:root {
  --primary: #83955a;
  --sec: #607234;
  --dark: #21252f;
  --body: #888;
  --white: #ffffff;
  --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
}


img {
  width: 100%;
}


section {
  padding-top: 100px;
  padding-bottom: 100px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #222;
}

.nav-item {
  margin-left: 12px;
}


.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: var(--primary);
}


.nav-link {
  color: var(--dark);
}


a {
  color: var(--sec);
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 500;
}


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


.custom-card {
  transition: all 0.6s ease;
}


.custom-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-8px);
}


/* Btn */
.btn {
  padding: 14px 38px;
  border-radius: 0;
}

.btn-brand {
  font-weight: 500;
  color: #fff;
  border-radius: 28px;
  background-color: var(--primary);
}

.btn-brand:hover {
  box-shadow: var(--box-shadow);
  background-color: var(--sec);
  color: #fff;
}

.section-intro {
  margin-bottom: 34px;
  text-align: center;
}

.section-intro p {
  max-width: 500px;
  margin: auto;
}

a.custom-link {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Slider */

#heroSlider {
  padding-bottom: 120px;
}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.slide-1 {
  background: linear-gradient(rgba(58, 87, 64, 0.8), rgba(0, 0, 0, 0.5)),
    url(../images/cover-1.jpg);
}

.slide-2 {
  background: linear-gradient(rgba(58, 87, 64, 0.8), rgba(0, 0, 0, 0.5)),
    url(../images/cover-2.jpg);
}

.slide-about {
  background: linear-gradient(rgba(76, 125, 86, 0.8), rgba(0, 0, 0, 0.5)),
    url(../images/cover-2.jpg);
}

#heroSlider h6::after,
#heroSlider h6::before {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #fff;
  display: inline-block;
  margin: 10px;
  vertical-align: middle;
}

.carousel-control-next,
.carousel-control-prev {
  background-color: rgba(0, 0, 0, 0.6);
  width: 40px;
  height: 70px;
  margin: auto;
}

/* About */

.about-img {
  /* width: 100%;
    height: auto; */
  border-radius: 8px;
}

#about .divider {
  width: 150px;
  height: 2px;
  display: block;
  background-color: var(--primary);
}

/* Testimonials */
#testimonial {
  background: linear-gradient(rgba(74, 113, 81, 0.8), rgba(0, 0, 0, 0.8)),
    url(../images/cover3.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#testimonial .section-intro h1,
#testimonial .section-intro p {
  color: white;
}

.review {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 28px;
}

.review .stars {
  color: #d1e5a1;
}

.review p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  margin-bottom: 16px;
}

.review h6,
.review small {
  color: rgb(255, 255, 255);
}

.review span {
  color: var(--primary);
}

.review .profile-picture {
  width: 75px !important;
  border-radius: 100px;
}

#testimonial .owl-dot span {
  background-color: var(--primary);
  border: 1px solid white;
  width: 12px;
  height: 12px;
  transition: all 0.6s ease;
}

#testimonial .owl-dot.active span {
  width: 30px;
  background-color: var(--primary);
  border-color: var(--primary);
}

/* CLASSES */

.table-topic {
  text-transform: uppercase;
}

#class .divider {
  /* width: 1600px; */
  height: 1px;
  display: block;
  background-color: var(--primary);
}

#class h6 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile .profile-picture {
  width: 60px !important;
  border-radius: 100px;
}

/* milestone */
#milestone {
  padding: 90px 0;
  background: linear-gradient(rgba(43, 89, 51, 0.8), rgba(0, 0, 0, 0.5)),
    url(../images/cover-1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

#milestone p {
  letter-spacing: 1px;
}

.counter h1,
.counter p {
  color: #fff;
}

.counter h1 {
  line-height: 1;
}

#cta h5,
#cta p {
  color: #fff;
}

/* Contact */
#contact input.gotm-control {
  height: 49px;
}

#contact .form-control {
  background-color: white;
  border-color: white;
}

#contact .form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

#contact .map {
  width: 100%;
  height: 100%;
}

/* Social Links */
.social-links a {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  transition: all 0.8s ease;
  margin-right: 8px;

}

.social-links {
  display: flex;
  margin-top: 0;
  margin-bottom: 16px;
}

.social-links a:hover {
  background-color: transparent;
  color: white;
  border-radius: 100px;
  border: 2px solid white;
}

/* .social-icons {
  display: flex;
  justify-content: center;
}

.social-icons i {
  width: 34px;
  height: 34px;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin-left: 5px;
  border: 2px solid var(--primary);
  transition: all 0.4s ease;
}

.social-icons i:hover {
  background-color: transparent;
  color: var(--primary);
} */

.logo-here {
  color: white;
  margin-bottom: 16px;
}

/* Blog */

.blog-post {
  text-align: center;
}

.blog-post img {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.blog-post .tag {
  padding: 4px 12px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  background: var(--primary);
  color: white;
  border-radius: 3px;
  transition: all 0.6s ease;
}

.blog-post .tag:hover {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 3px;
}

.blog-post-content {
  padding: 28px;
}

.blog-post h4 {
  margin-top: 12px;
}


/* Footer */
footer ul {
  list-style: none;
  padding: 0;
}

footer ul li,
footer ul li a {
  color: rgba(255, 255, 255, 0.8);
}


footer h5 {
  color: #fff;
  margin-bottom: 16px;
}

/* Footer Top */
.footer-top {
  background: linear-gradient(rgba(33, 67, 39, 0.8), rgba(0, 0, 0, 0.8)),
    url(../images/cover-4.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 150px;
  padding-bottom: 150px;
}

.footer-top p {
  margin-bottom: 10px;
}

/* Footer-Bottom */
.footer-bottom {
  background-color: #63733d;
  padding-top: 8px;
  padding-bottom: 8px;
}

.footer-top p {
  color: white;
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.footer-bottom p {
  color: white;
  font-size: 15px;
}

#about-page {
  padding-top: unset;
}

.my-tag {
  color: white;
}

.my-tag:hover {
  color: var(--dark);
}

/* Blog */
.video-wrapper {
  aspect-ratio: 16/9;
}

.frame-size {
  height: 100%;
  width: 100%;
}