:root {
  --body-font: "Noto Sans", serif;
  font-size: 62.5%;
  --text-color: #333;
  --white: #fff;
  --light: #eee;
  --red: #C42C40;
  --black: #000;
  --grey: #ddd;
  --yellow: #FF9800;
  --yellow-2: #F4D01C;
  --blue: #003692;
  --green: #218838;
  --purple: #563D7C;
  --light-1: #e9ecef;
  --shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  scroll-padding-top: 5rem;
}
body {
  font-size: 1.6rem;
  font-family: var(--body-font);
  color: var(--black);
  margin: 0;
  padding: 0;
}
body :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--body-font);
}
img{
    max-width: 100%;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
svg{
  fill: currentColor;
}
.light-bg{
    background: var(--light);
}
.logo img{
  max-height: 10rem;
  background: var(--white);
}
.logo {
  margin-bottom: 4rem;
}
.flex-center {
  display: flex;
  align-items: center;
}
.banner-section {
  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/banner.jpg);
  background-size: cover;
  padding: 8rem 0;
}
h1 {
  font-size: 3rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.5;
}
h1 span{
  font-size: 4.2rem;
}
.banner-text p {
  font-size: 2rem;
  color: var(--white);
}
.focus-text{
  font-size: 1.8rem;
  border: .1rem solid var(--white);
  color: var(--white);
  padding: 1.2rem;
  border-radius: .2rem;
  display: inline-block;
  font-weight: 600;
  font-family: var(--body-font);
  margin-top: 3rem;
}
.feat-section{
  background: var(--blue);
  padding: 6rem 0;
}
.form-container {
  max-width: 45rem;
  margin: 2rem 0 0 auto;
  padding: 2rem;
  background: var(--light);
  border-radius: 1rem;
  box-shadow: 5.1px 10.2px 10.2px hsl(0deg 0% 0% / 0.34);
}
.form-container h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.form-container label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: none;
}
.form-container .form-control {
  height: 4.5rem;
  outline: 0;
  box-shadow: none !important;
  font-size: 1.4rem;
  border-radius: 0.6rem;
  background-color: inherit;
}
.form-container .form-group {
  margin-bottom: 2rem;
}
.action-btn .btn {
  background: var(--red);
  font-size: 1.8rem;
  color: var(--white);
  padding: 0.8rem 1.8rem;
  font-weight: 800;
  border-radius: 0.6rem;
  font-family: var(--body-font);
  text-transform: uppercase;
}

.common {
  padding: 4rem 0;
}
.heading {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 4rem;
}
.blue-bg{
  background: var(--blue);
}
.dream-career-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  column-gap: 4rem;
}
.dream-career-container .career-item {
  text-align: center;
  color: var(--white);
  border-right: .2rem dashed var(--white);
  &:last-child{
    border-right: 0;
  }

}
.career-item .icon {
  margin-bottom: 1.5rem;
  text-align: center;
}
.dream-career-container .career-item h3 {
  font-size: 3.6rem;
  font-weight: 800;
}
.dream-career-container .career-item h3 span {
  font-size: 2.4rem;
}
.course-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 4rem;
}
.course-items a{
  text-decoration: none;
  color: var(--white);
  font-size: 2.2rem;
  display: block;
  text-align: center;
  border: .1rem solid var(--white);
  padding: 1rem;
  border-radius: 1rem;
}

.swiper-wrapper{
  margin-bottom: 4rem;
}
.recruiter-container{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* gap: 2rem; */
}
.recruit-item img{
  max-height: 8rem;
}
.recruit-item{
  padding: 1rem;
  border-bottom: .1rem solid var(--grey);
  border-right: .1rem solid var(--grey);

}
.recruit-item:nth-child(6n){
  border-right: 0;
}

.recruit-item.ey img{
  max-height: 6rem;
}
.apply-btn{
  font-size: 1.6rem;
  color: var(--white);
  background: var(--red);
  border-radius: .4rem;
  padding: .6rem 1.8rem;
  outline: 0;
}
@media (min-width: 768px){
  .recruit-item:nth-child(n + 7):nth-child(-n + 12) {
    border-bottom: 0;
  }
  .footer-btn{
    text-align: right;
  }
  .common{
    padding: 6rem 0;
  }
}

@media (max-width: 767px){
  .banner-section{
    padding: 4rem 0;
  }
  .logo{
    margin-bottom: 2rem;
  }
  .focus-text{
    margin: 1rem 0 3rem;
  }
  h1{
    font-size: 2.4rem;
  }
  .dream-career-container .career-item h3{
    font-size: 3rem;
  }
  h1 span{
    font-size: 3rem;
  }
  .logo img{
    max-height: 6rem;
    
  }
  .banner-text p{
    font-size: 1.8rem;
  }
  .heading{
    font-size: 2.8rem;
  }
  .dream-career-container .career-item{
    border-right: 0;
  }
  .course-list{
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }
  .course-items a{
    font-size: 1.6rem;
  }
  .recruiter-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit-item:nth-child(2n){
    border-right: 0;
  }
  .recruit-item:nth-last-child(-n+2){
    border-bottom: 0;
  }
  .footer-btn{
    text-align: center;
    margin-top: 2rem;
  }
}