* {
  box-sizing: border-box;
}
body {
  padding: 0px;
  font-family: "Rubik";
}

:root {
  --primary: #ea5943;
  --secondary: #1a90d2;
  --textPrimary: #424242;
  --textSecondary: #8e8e8e;
}

.primary {
  color: var(--primary);
}

.bg_primary {
  color: white;
  background-color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.textSecondary {
  color: var(--textSecondary);
}

.textPrimary {
  color: var(--textPrimary);
}

.centerd {
  text-align: center;
}

.font_height_16 {
  line-height: 16px;
}

.font_height_20 {
  line-height: 20px;
}

.font_height_24 {
  line-height: 24px;
}

.font_height_32 {
  line-height: 32px;
}

.font_height_36 {
  line-height: 36px;
}

.containedButton {
  padding: 14px 48px;
  width: 100%;
  background-color: var(--primary);
  height: 52px;
  color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 9px 25px 0 rgba(234, 90, 67, 0.35);
}

.textButton {
  background-color: transparent;
  font-size: 16px;
  font-weight: 500px;
  height: 52px;
  border: none;
  width: max-content;
}

.outlinedButton {
  background-color: transparent;
  font-size: 16px;
  font-weight: 500px;
  height: 52px;
  border: solid 2px #a8d5ee;
  border-radius: 8px;
  width: max-content;
}

.iconButton {
  background-color: white;
  border-radius: 99px;
  border: none;
  width: 52px;
  height: 52px;
}

/* Typo Theme */
h1 {
  font-size: 64px;
  font-weight: 500px;
  margin: 0px;
}

h2 {
  font-size: 48px;
  font-weight: 500px;
  margin: 0px;
}

h3 {
  font-size: 32px;
  font-weight: 500px;
  margin: 0px;
}

h4 {
  font-size: 28px;
  font-weight: 500px;
  margin: 0px;
}

h5 {
  font-size: 24px;
  font-weight: 500px;
  margin: 0px;
}

h6 {
  font-size: 20px;
  font-weight: 500px;
  margin: 0px;
}

.body1 {
  font-size: 16px;
  font-weight: 300;
}

.body2 {
  font-size: 14px;
  font-weight: 300;
}

.subtitle1 {
  font-size: 16px;
  font-weight: 500;
  color: "#6b6b6b";
}

.subtitle2 {
  font-size: 14px;
  font-weight: 500;
  color: "#1a90d2";
}

.caption {
  font-size: 12px;
  font-weight: 400px;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
    font-weight: 500px;
    margin: 0px;
  }

  h2 {
    font-size: 24px;
    font-weight: 500px;
    margin: 0px;
  }
  h3 {
    font-size: 24px;
    font-weight: 500px;
    margin: 0px;
  }
  h4 {
    font-size: 20px;
    font-weight: 500px;
    margin: 0px;
  }
  h6 {
    font-size: 16px;
    font-weight: 500px;
    margin: 0px;
  }
  .body1 {
    font-size: 14px;
    font-weight: 300px;
  }

  .body2 {
    font-size: 12px;
    font-weight: 300px;
  }

  .subtitle1 {
    font-size: 14px;
    font-weight: 500px;
    color: "#6b6b6b";
  }

  .subtitle2 {
    font-size: 12px;
    font-weight: 500px;
    color: "#1a90d2";
  }
}
p {
  margin: 0px;
}

button {
  font-size: 16px;
  font-weight: 500px;
  margin: 0px;
}

body {
  background-image: url("../images/page-pattern.svg");
}

#root {
  background-image: url("../assets/landing.svg");
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 100%;
  min-height: 100vh;
  padding-top: 32px;
}

@media only screen and (max-width: 992px) {
  #root {
    background-image: url("../assets/landing.svg");
    background-repeat: no-repeat;
    background-size: auto;
    min-width: 100%;
    min-height: 100vh;
    padding-top: 0px;
  }
}

.alignWithNavbar {
  margin-left: 8%;
  margin-right: 8%;
}

.section__title {
  border: 2px solid var(--primary);
  border-radius: 16px;
  width: fit-content;
}

@media only screen and (max-width: 992px) {
  .alignWithNavbar {
    margin-left: 6%;
    margin-right: 6%;
  }
}

.mobile-navbar {
  box-shadow: 0 4px 25px 0 rgba(107, 107, 107, 0.08);
  background-color: #fcfcfc;
  margin-bottom: 48px;
  padding: 18px 6%;
}

.mobile-navbar button {
  border: none;
  font-family: Rubik;
  font-size: 14px;
  font-weight: 500;
}

.mobile-navbar a {
  font-family: "Rubik";
  font-size: 16px;
  color: var(--textSecondary);
}

.mobile-navbar .item {
  margin: 7.5px 6%;
  border-bottom: 1px solid #e7e5ea;
}

.mobile-navbar .search {
  margin: 0px 6%;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background-color: #e9e9e9;
}

.mobile-navbar .search input {
  border: none;
  background-color: transparent;
  font-size: 16px;
}

#desktop-nav {
  margin-left: 6%;
  margin-right: 6%;
  margin-bottom: 49px;
  background-color: white;
  padding: 18px 48px;
  border-radius: 12px;
  box-shadow: 0 4px 25px 0 rgba(107, 107, 107, 0.08);
}

#desktop-nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
#desktop-nav li {
  display: inline;
  float: left;
}

#desktop-nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--textSecondary);
  padding-right: 32px;
}

#hero {
  margin-right: 8%;
  margin-left: 8%;
}

#hero h1 {
  font-size: 54px;
  font-weight: 400;
  margin-bottom: 1rem;
}

#hero h4 {
  font-weight: 400;
  margin-bottom: 1.5rem;
}

#hero .box {
  width: fit-content;
  border: 2px solid var(--textPrimary);
  padding: 0.75rem 2rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  margin-left: 1rem;
  position: relative;
}

#hero .box img {
  border-radius: 100px;
  position: absolute;
  background-color: white;
}

#hero .box .calender {
  width: 42px;
  height: 42px;
  left: -1.5rem;
  top: 0.5rem;
}

#hero .box .location {
  width: 36px;
  height: 36px;
  left: -1.3rem;
  top: 1rem;
}

#hero .box h6 {
  font-weight: 400;
  color: var(--textPrimary);
  line-height: 28px;
}

@media only screen and (max-width: 992px) {
  #hero h1 {
    font-size: 36px;
  }
  #hero .box {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

#indicators {
  background-color: #fdefed;
  padding: 2rem;
  border-radius: 16px;
}

#indicators .item {
  display: flex;
  justify-content: start;
  align-items: center;
}

#indicators .item h6 {
  font-weight: 400;
}

#indicators .item .image {
  margin-right: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 100px;
  border: 3px solid var(--primary);
  display: flex;
  padding: 0.5rem;
}
#indicators .item .image img {
  object-fit: fill;
  color: var(--textPrimary);
  fill: var(--textSecondary);
}

@media only screen and (max-width: 992px) {
  #indicators {
    padding: 1rem;
  }
  #indicators .item {
    margin-bottom: 2rem;
  }

  #indicators .item:last-child {
    margin-bottom: 0px;
  }
}

#photos .photoContainer {
  height: 400px;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 0.5rem;
  transition: transform 0.2s ease-in-out;
}

#photos .photoContainer:hover {
  transform: translateY(-16px);
}

#photos .photoContainer img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 16px;
}

@media only screen and (max-width: 992px) {
  #photos .photoContainer {
    margin-bottom: 2rem;
  }
}
#testimonials .testimonials_card {
  border-radius: 20px;
  background-color: #fdefed;
  padding: 1.75rem;
  height: 250px;
  transition: transform 0.2s ease-in-out;
}

#testimonials .testimonials_card:hover {
  transform: translateY(-10px);
}

#testimonials .testimonials_card p {
  text-overflow: ellipsis;
}

@media only screen and (max-width: 992px) {
  #testimonials .testimonials_card {
    margin-bottom: 2rem;
  }
}
#instractors {
  background-color: rgba(234, 89, 67, 0.9);
  padding: 2rem 3rem;
  border-radius: 25px;
  color: white;
}

#instractors .title {
  border: 2px solid white;
  border-radius: 16px;
  width: fit-content;
  color: white;
  padding: 0.5rem 3rem;
}

#instractors .title h3 {
  font-weight: 400 !important;
}

#instractors .contained {
  background-color: white;
  border-radius: 14px;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border: 0px;
  box-shadow: none;
  color: var(--primary);
}

#instractors .outlined {
  background-color: transparent;
  border-radius: 14px;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border: 1.5px solid white;
  box-shadow: none;
  color: white;
  margin-left: 2rem;
}

@media only screen and (max-width: 992px) {
  #instractors {
    padding: 2rem 2rem;
  }
  #instractors .title {
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: center;
  }
  #instractors .contained {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 1rem;
  }
  #instractors .outlined {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 1rem;
  }
}
#instractors .profile {
  padding: 0.5rem;
  border: 1px solid white;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
}

#instractors .profile img {
  object-fit: contain;
  width: 100%;
  border-radius: 100px;
  background-color: white;
}
#enroll .title__primary {
  width: fit-content;
  background-color: var(--primary);
  color: white;
  border-radius: 16px;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
#enroll .title__secondary {
  width: fit-content;
  background-color: #fdefed;
  color: var(--primary);
  border-radius: 16px;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

#enroll .price__card {
  padding: 2rem;
  margin: 0rem 0.25rem;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px;
  transition: transform 0.2s ease-in-out;
}

#enroll .price__card:hover {
  transform: translateY(-10px);
}

#enroll .outlined {
  border: 2px solid #605d5e;
  color: #605d5e;
}

#enroll .contained {
  border: 2px solid #605d5e;
  background-color: #605d5e;
  color: white;
}

@media only screen and (max-width: 992px) {
  #enroll .price__card {
    width: 240px;
    margin-bottom: 2rem;
  }
  #enroll .title__primary {
    width: 100%;
    padding: 1rem;
  }

  #enroll .title__secondary {
    width: 100%;
    padding: 1rem;
  }
}

#footer {
  padding: 80px 135px;
}

#footer .icon {
  margin-right: 16px;
}

#footer .copyRights {
  border-top: solid 1px #e7e5ea;
}

@media only screen and (max-width: 992px) {
  #footer {
    padding: 32px;
  }
}
