@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

body {
  font-family: 'Questrial', cursive;
  font-size: 1.2rem;
  margin: 0;
}

/* Header */
.header_top {
  background-color: #1c1c1c;
  display: flex;
  justify-content: space-around;
  color: #b7990f;
  padding: 3rem;
  font-size: 0.8em;
}

.header_top a {
  color: #b7990f;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .call_text {
    display: none;
  }
}

/*Navigation Bar*/
.navbar {
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
}

.navbar a {
  color: #666666;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:active {
  color: #ab40dd !important;
}

.navbar .icon {
  display: none;
}
.current{
  background-color: #df3e23;
}
@media screen and (max-width: 600px) {
  .navbar a:not(:first-child) {
    display: none;
  }

  .navbar a.icon {
    float: left;
    display: block;
    border: 2px solid rgb(203, 193, 193);
    height: 20px;
  }
}

@media screen and (max-width: 600px) {
  .navbar.responsive {
    position: relative;
  }

  .navbar.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/*Banner Section*/
.banner_section_container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background-color: #1c1c1c;
  align-items: center;
}

.banner_section_container img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .banner_section_container {
    display: block;
    max-width: auto;
  }
}

.banner_section_text {
  padding: 2rem;
}

.yellow-text {
  color: #dcb916;
}

.white-text {
  color: #ffffff !important;
}

.banner_section_btn {
  width: 40%;
  color: #1c1c1c;
  background-color: #c2a20e;
  text-align: center;
  text-transform: uppercase;
  padding: 14px 0px;
  cursor: pointer;
}

/* Join section */
.join_section {
  background-color: #d0ac07;
  color: #f8f8f9;
  padding: 1rem;
  text-align: center;
}

.join_section_btn {
  color: white;
  background-color: #1c1c1c;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  cursor: pointer;
}

.join_section_text {
  font-size: 1.2rem;
}

/*Footer*/
.footer_section {
  padding: 5rem;
  background-color: #1c1c1c;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  justify-content: center;
}

.footer-map {
  max-width: 100%;
  height: auto;
}

.social_icon li {
  list-style: none;
  display: inline-block;
}

.footer-text {
  padding: 1rem;
  text-align: center;
  color: white;
}

/* Degree Page */
.services {
  background-image: url(../images/service-bg.png);
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 3rem;
}


.services_container {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.services_container-button {
  font-size: 16px;
  color: #1c1c1c;
  background-color: #c2a20e;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: 1rem;
}

/*About Page*/
.about_section {
  display: grid;
  grid-gap: 1rem;
  background-image: url(../images/about-bg.png);
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 20px;
}

.about-section-image {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width:700px) {
  .about_section {
    display: block;
    max-width: auto;
  }
}

/* Pricing Page */
.discount_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/client-bg.png);
}

.discount_bg {
  display: grid;
  grid-gap: 1rem;
  margin: 0 auto;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  padding: 20px;
  background-color: #dab509;
  width: 70%;
  line-height: 3rem;
}

@media screen and (max-width:600px) {
  .discount_bg {
    display: block;
    max-width: auto;
  }
}

.horizontal-line {
  border-top: 3px solid #c2a20e;
  width: 50%;
}

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

.client-section {
  font-style: italic;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 30px;
}

.client-section-text {
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 1rem;
}

@media screen and (max-width: 600px) {
  .client-section {
    display: block;
  }
}

.client-section-text hr {
  border-top: 1px solid #c2a20e;
  width: 50%;
  float: left;
}

/* Contact Us Page */
.contact_section {
  padding-bottom: 90px;
  background-image: url(../images/contact-bg.png);
  height: auto;
  background-size: 100%;
}

.contact_section_container {
  display: grid;
  grid-gap: 3rem;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px;
  width: 70%;
}

@media screen and (max-width:600px) {
  .contact_section_container {
    display: block;
    width: auto;
  }
}

.contact_section_icons {
  line-height: 5rem;
}

.mail_text {
  color: #989999;
  border: 0px;
  border-bottom: 1px solid #dab509;
  background-color: transparent !important;
  padding: 50px 30px 0px 0px;
  width: 100%;
}

.mail-textarea {
  color: #696868;
  height: 110px;
  font-size: 18px;
  border-bottom: 1px solid #dab509 !important;
  background-color: transparent !important;
  padding: 75px 30px 0px 0px;
  border: 0px;
}