body {
    font-family: "Inter", sans-serif;
}

.white_text{
    color: #FFFFFF;
}
.brown_text{
    color: #900303;
}
.black_text{
    color: #121212 !important;
}
.blue_text{
    color: #072D60 !important;
}
.title_text{
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}
.all_image{
    width: 100%;
}
.border_radius{
    border-radius: 10px;
}

.float_right{
    float: right;
}
.padding_all{
    padding: 0 50px;
}
.padding_top30{
    padding-top: 30px;
}
.padding_top50{
    padding-top: 50px;
}
.margin_top10{
    margin-top: 10px;
}
.margin_top20{
    margin-top: 20px;
}
.margin_top30{
    margin-top: 30px;
}
.margin_top40{
    margin-top: 40px;
}
.margin_top50{
    margin-top: 50px;
}
.text_center{
    text-align: center !important;
}

.header-section {
    padding: 20px 0 20px 0;
    background-image: url(../images/President_Education_banner.png);
    background-size: cover;     
      background-position: center;
      background-repeat: no-repeat;
      width: 100%;
    height: auto !important;
    /* position: relative; */
}

.company-logo {
    width: 100px;
}

.banner_content_title {
    font-weight: 700;
    color: #ffffff;
    font-size: 50px;
  }
  .banner_content{
    color: #ffffff;
    font-size: 25px;
    line-height: 35px;
  }
  .banner_content_details{
    color: #ffffff;
    font-size: 25px;
    line-height: 35px;
  }
  .banner_content_payment{
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
  }

  .candidate-form {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
    /* box-shadow: 10px 10px 0px 3px #FFC30C; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.candidate-form-title {
    font-weight: 600;
    font-size: 19px;
    line-height: 28px;
    color: #242842;
    text-align: center;
}
label{
    display: inline;
}

.input-inside {
    margin-bottom: 10px;
    width: 100%;
}

.input {
    display: block;
    padding: 7px 10px;
    outline: none;
    border: 2px solid transparent;
    background-color: #EFEFEF;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    border-radius: 8px;
}

.input:focus {
    border: none;
    outline: none !important;
  }

.input-label {
    position: absolute;
    top: 8px;
    left: 8px;
    opacity: 0;
    background-color: transparent;
    padding: 0 2px;
    font-size: 1rem;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.input:valid+.input-label {
    opacity: 1;
    top: -11px;
    color: #9e9e9e;
    font-weight: 600;
}

.input:focus+.input-label {
    color: #000;
}

.candidate-form-btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #FFF;
    background-color: #062552;
    padding: 5px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.candidate-form-button {
    text-align: center;
}

.candidate-form-footer {
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    color: #242842;
}

.form-select {
    color: #847f7f;
}

.ranking_section , .university_section{
    padding-top: 50px;
}
.partners_section , .certification_section , .cultural_section , .learn_section{
    padding: 50px 0px;
    background-color: #fff;
}

.program_section {
    padding: 50px 0px;
    background-color: #072D60;
}

.testimonials_section , .snapshot_section , .prof_section , .industry_section{
    padding: 50px 0px;
    background-color: #EDF5FF;
}

.ranking_card{
    background-color: #072D60;
    padding: 20px 20px;
    height: 200px;
}
.ranking_logo{
    width: 45px;
    padding: 5px 0px;
}

  ul {
	padding: 0;
	li {
		list-style: none;
		position: relative;
		padding: 0 0 0 20px;
        margin-bottom: 10px;
	}
}

  ul.round {
	li {
		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 10px;
			width: 10px;
			height: 10px;
			border-radius: 50%;
			-moz-border-radius: 50%;
			-webkit-border-radius: 50%;
      border: 3px solid #072D60;
		}
	}
}

.industry_card{
    background-color: #fff;
    padding: 20px 20px;
}

.content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content .content-overlay {
    background: rgb(25 25 28 / 80%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.1s ease-in-out 0s;
    -moz-transition: all 0.1s ease-in-out 0s;
    transition: all 0.1s ease-in-out 0s;
}

.content:hover .content-overlay {
    opacity: 1;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-title {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.fadeIn-bottom {
    top: 100%;
}

.prof_card{
    background-color: #072D60;
    padding: 20px 20px;
    border-radius: 10px;
    margin: 10px 0px;
}
.prof_content{
    /* color: #ffffff; */
    font-size: 23px;
    line-height: 33px;
  }
  .prof_content_payment{
    /* color: #ffffff; */
    font-size: 14px;
    line-height: 22px;
  }

  .certification_card{
    background-color: #EDF5FF;
    padding: 20px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .certification_image{
    width: 130px;
    height: 150px;
  }
  .program_card{
    background-color: #fff;
    padding: 20px 20px;
    margin-top: 10px;
}
.testimonials_card{
    background-color: #fff;
    padding: 20px 20px;
    margin-top: 10px;
    height: 300px;
}
  .program_icon{
    width: 90px;
  }
  .partners_sectionbg {
    /* padding: 20px 0 0 0; */
    background-image: url(../images/AcademicPartnersbg.png);
    background-size: cover;     
      background-position: center;
      background-repeat: no-repeat;
      width: 100%;
    /* height: 100vh;
    position: relative; */
}
.footer-section {
    padding: 10px 0 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0px;
    background: #072D60;
    width: 100%;
}

.footer-details {
    display: inline-flex;
}

.footer-content {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 0;
    /* padding: 13px 20px; */
}

.footer-apply-btn {
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: #072D60;
    background: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 12px;
}

.footer-contact {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 0;
    padding: 5px 0 0px 0px;
}
.footer-logo{
    height: 25px;
    padding: 5px;
    margin-top: 4px;
}
.footer-social-logo{
    width: 40px;
    padding: 15px 5px;
}

.mobileonly {
    display: none !important;
}

.desktoponly {
    display: block !important;
}

@media only screen and (max-width: 480px) {

    .mobileonly {
        display: block !important;
    }

    .desktoponly {
        display: none !important;
    }

.header-section {
    height: auto !important;
}

    .ranking_card{
        height: auto !important;
        margin-bottom: 10px;
    }
    .industry_card{
        height: auto !important;
        margin-bottom: 10px;
    }
    .program_card{
        height: auto !important;
        padding: 10px 20px;
        /* margin-bottom: 10px; */
    }
    /* .testimonials_card{
        height: auto !important;
    } */
    /* .slick-next .slick-arrow{
        display: none !important;
    }
    .slick-prev:before, .slick-next:before {
        font-family: 'slick';
        font-size: 20px;
        line-height: 1;
        opacity: .75;
        color: white;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        display: none !important;
    } */
}

@media only screen and (max-width: 768px) {

    .float_right{
        float: none;
    }
    .padding_all{
        padding: 0 0px;
    }
    .padding_top30 {
        padding-top: 10px;
    }

    .padding_top50 {
        padding-top: 10px;
    }

    .margin_top50{
        margin-top: 20px;
    }

    .title_text {
        font-size: 24px;
        line-height: 34px;
    }

    .company-logo {
        width: 75px;
    }

    .banner_content_title {
        font-size: 20px;
    }
    .banner_content {
        font-size: 16px;
        line-height: 26px;
    }
    .banner_content_details{
        font-size: 16px;
        line-height: 26px;
    }
    .banner_content_payment{
        font-size: 14px;
        line-height: 24px;
    }
    .prof_content{
        font-size: 16px;
        line-height: 26px;
      }
      .prof_content_payment{
        font-size: 14px;
        line-height: 22px;
      }

    .candidate-form {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        margin: 0 20px;
    }

    .ranking_section , .university_section{
        padding-top: 25px;
    }
    .partners_section , .certification_section , .cultural_section , .learn_section{
        padding: 25px 0px;
        background-color: #fff;
    }
    
    .program_section {
        padding: 25px 0px;
        background-color: #072D60;
    }
    
    .testimonials_section , .snapshot_section , .prof_section , .industry_section{
        padding: 25px 0px;
        background-color: #EDF5FF;
    }
    
    .ranking_card{
        padding: 10px 20px;
    }
    .ranking_logo{
        width: 35px;
        padding: 5px 0px;
    }

    .content {
        margin-bottom: 10px;
    }

    .prof_card{
        padding: 10px 10px;
        margin: 5px 0px;
    }
    .certification_card{
        margin-bottom: 10px;
    }
    .certification_image{
        width: 95px;
        height: 100px;
    }

    .testimonials_card{
        height: 280px;
    }

    .footer-section {
        padding: 10px 0;
    }
    .footer-content {
        font-size: 18px;
        line-height: 28px;
        padding: 0;
    }
    .footer-contact {
        font-size: 14px;
        line-height: 24px;
        padding: 0;
        margin-bottom: 10px;
    }
    .footer-apply-btn {
        margin-bottom: 10px;
    }
    .footer-logo{
        margin-top: 0;
    }

}

.carousel {
    width: 100%;
}

.slick-slide {
    margin: 10px;
    height: auto !important;
    /* min-height: 30 !important; */
}

/* .slick-slide img {
    width: 100%;
} */

.slick-prev,
.slick-next {
    background: #000;
    border-radius: 15px;
    border-color: transparent;
    display: none !important;
}

.slick-dots li button::before {
    /* display: none; */
    color: #FFFFFF;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #072D60 !important;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    border: 1px solid #072D60;
    border-radius: 100%;
}

.slick-dots li button:before {
    color: transparent !important;
    border: 1px solid #072D60;
    border-radius: 100%;
}

#otpSection {
    display: none;
  }

  .already_btn {
    font-size: 16px;
    border: none;
    background-color: transparent;
    margin-top: 10px;
  }

  .already_btn_link {
    font-size: 16px;
    color: #900303;
    text-decoration: underline;
    cursor: pointer;
  }

  .already_btn_link:hover {
    color: #072D60;
  }

  .otp_btn {
    border: none;
    background-color: transparent;
    color: #2f8f1f;
    font-weight: 500;
    float: right;
    margin-top: 10px;
    cursor: pointer;
  }

  .otp-input-fields {
    margin: auto;
    background-color: white;
    /* box-shadow: 0px 0px 8px 0px #02025044; */
    /* max-width: 400px; */
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0px;

    input {
      height: 40px;
      width: 40px;
      background-color: transparent;
      border-radius: 4px;
      border: 2px solid #2f8f1f;
      text-align: center;
      outline: none;
      font-size: 16px;

      &::-webkit-outer-spin-button,
      &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }

      /* Firefox */
      &[type=number] {
        -moz-appearance: textfield;
      }

      &:focus {
        border-width: 2px;
        border-color: darken(#2f8f1f, 5%);
        font-size: 20px;
      }
    }
  }

  .msg {
    margin-bottom: 5px;
  }

  .errorMobile {
    color: red;
    font-size: 0.70rem;
    text-align: start;
    padding-top: 0.3rem;
    padding-left: 5px;
    display: none;
  }

  .errorMobile {
    margin-bottom: 0px;
  }

  .getotpdiv {
    font-size: 13px;
    cursor: pointer;
    color: #FFFFFF;
    background: #072D60;
    padding: 8px 10px 8px 10px;
    border-radius: 5px;
    text-decoration: none;
  }

  .getotpdiv:hover {
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none !important;
  }

  .resendotp {
    color: #000;
  }

  .otpverifieddiv {
    font-size: 13px;
    color: #FFFFFF;
    display: none;
    text-decoration: none;
  }

  .otpverifieddiv:hover {
    font-size: 13px;
    color: #FFFFFF;
    display: none;
    text-decoration: none;
  }

  .form-control:disabled,
  .form-control[readonly] {
    background-color: transparent !important;
    opacity: 1;
  }

  .hight_text {
    /* text-align: center; */
    color: #FFFFFF;
    margin-top: -15px;
    margin-bottom: 5px;
  }

  .footer_section_content_address {
    color: #044976;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer_section_content_address1 {
    color: #044976;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 6px;
  }

  .alert-danger {
    color: #fe5a40;
    background-color: transparent;
    border-color: none;
  }

  .alert-success {
    color: greenyellow;
    background-color: transparent;
    border-color: none;
  }

  .slick-slide {
    height: auto !important;
  }

  /* .form-group{
    margin-bottom: 0;
  } */
  input[type="tel"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
  }
