@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

ul li {
  list-style-type: none;
}

.logo img {
  width: 100%;
}

.item {
  background-color: green;
}

/*Header Top*/
.header-top {
  background-color: #1D4A83;
  padding: 5px 0;
}

.header-top input[type=text] {
  display: block;
  width: 100%;
  padding: 20px;
  margin-top: 12px;
  font-size: 16px;
}

.header-top a {
  color: #ffffff;
  display: block;
  text-align: right;
  margin-right: 5px;
  margin-top: 20px;
  font-size: 16px;
}

/*Banner*/
.banner .btn {
  padding: 10px 25px;
  font-size: 16px;
}

.banner p {
  color: #A9A9B5;
  font-size: 18px;
}

.martopa {
  margin-top: 50px;
}

/* Positions */
#position-available h2 {
  background-color: #1D4A83;
  color: #ffffff;
  padding: 8px;
  font-size: 22px;
  font-weight: 500;
}

#position-available a {
  color: orangered;
}

.teacher-box {
  border: 1px solid #2B5CA4;
  padding: 12px;
  margin-top: 20px;
  overflow: hidden;
}

.teacher-box img {
  width: 100px;
  height: 80px;
}

.bold {
  font-weight: 700;
}

.secyello {
  background-color: #FBBA11;
  padding: 14px 18px;
  box-sizing: border-box;
  margin: 10px 0;
}

/* Search Box */
.search {
  width: 100%;
  position: relative;
  margin-top: -15px;
}

.searchTerm {
  width: 100%;
  border: 3px solid #1D4A83;
  padding: 10px;
  height: 40px;
  border-radius: 5px;
  outline: none;
  color: #333;
  font-size: 18px;
}

.searchTerm:focus {
  color: #00B4CC;
}

.searchButton {
  position: absolute;
  right: 10px;
  width: 130px;
  height: 40px;
  border: 1px solid #1D4A83;
  background: #1D4A83;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  top: 17px;
}

/* Description */
#desc h1 {
  margin: 15px 0 8px;
  font-size: 28px;
}
#desc h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

/* Main Content */
#main-content h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

#main-content h3 {
  color: #1D4A83;
  border-bottom: 1px solid #1D4A83;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 20px;
}

.overview {
  overflow: hidden;
  margin-bottom: 30px;
}
.overview img {
  width: 100%;
}

.more-lg {
  font-size: 40px;
}

/* Sidebar */
.sidebar ul {
  background-color: #F9F0D6;
  padding: 15px;
  border: 1px solid gray;
}
.sidebar ul li {
  margin-left: -10px;
  font-size: 20px;
}

.close-date {
  background-color: #FBBA11;
  width: 100%;
  padding: 8px 10px;
  float: right;
}

.header-desc {
  border-bottom: 1px solid #1D4A83;
  margin-bottom: 10px;
}

/* Application Form */
#application-form h3 {
  background-color: #2459A3;
  padding: 10px 5px;
  color: #ffffff;
  font-size: 22px;
}

.appcontent a {
  display: block;
  margin-bottom: 20px;
  color: orangered;
  font-size: 18px;
}

.logintext {
  font-size: 20px;
}

.personal-details form h4 {
  color: #2459A3;
  border-bottom: 1px solid #2459A3;
  padding-bottom: 5px;
  font-size: 20px;
}

/* Twitter */
.twitter-section {
  border: 1px solid #59ADEE;
  text-align: center;
  margin-bottom: 12px;
}
.twitter-section h2 {
  background-color: #59ADEE;
  padding: 8px 4px;
  text-align: left;
  color: #ffffff;
  font-size: 22px;
}

/* Facebook */
.facebook-section {
  border: 1px solid #39569D;
  text-align: center;
}
.facebook-section h2 {
  background-color: #39569D;
  padding: 8px 4px;
  color: #ffffff;
  font-size: 22px;
}

/* Application Page */
.append-section-new {
  border-top: 1px solid black;
  padding-top: 10px;
}

.section-title {
  background-color: #B7CCE3;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 6px 5px;
  margin: 12px 0;
  font-size: 20px;
  font-weight: 500;
}

form {
  background-color: #f2f2f2;
  padding: 8px 12px;
  overflow: hidden;
  margin-top: 12px;
  font-size: 18px;
}

/* Footer */
footer {
  background-color: #1D4A83;
  text-align: center;
  padding: 8px;
  margin-top: 15px;
}
footer p {
  color: #ffffff;
  font-size: 18px;
}
footer a:hover {
  color: orchid;
}

/* =====================================
   RESPONSIVE DESIGN
===================================== */

/* Tablets */
@media (max-width: 992px) {
  body {
    font-size: 16px;
  }

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 20px; }

  .sidebar ul li {
    font-size: 18px;
  }

  .searchButton {
    width: 100px;
    font-size: 16px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  h1 { font-size: 22px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }

  .header-top input[type=text] {
    padding: 10px;
    font-size: 14px;
  }

  .searchTerm {
    height: 36px;
    font-size: 14px;
  }

  .searchButton {
    width: 80px;
    height: 36px;
    font-size: 14px;
    top: 10px;
  }

  .teacher-box img {
    width: 80px;
    height: 60px;
  }

  .sidebar ul li {
    font-size: 16px;
  }

  footer p {
    font-size: 14px;
  }
}
