/* General Reset */
body {
  font-family: "Montserrat", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.inputparent{
  width: 100%;
  display: inline-block;
}
.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.header {
  background-color: #f2f2f2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 10px; /* Add some gap between items */
}

.logo {
  max-width: 200px;
  order: 1; /* Ensure logo comes first on smaller screens */
}

.logo img {
  width: 100%;
  height: auto;
}

.school-logos {
  display: flex;
  gap: 20px;
  order: 2; /* Ensure school logos come after logo */
}

.school-logo {
  max-width: 150px;
}

.school-logo img {
  width: 100%;
  height: auto;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .header {
      justify-content: center; /* Center items horizontally */
  }

  .logo {
      max-width: 150px; /* Reduce logo size */
  }

  .school-logos {
      flex-direction: column; /* Stack logos vertically */
      align-items: center; /* Center logos horizontally */
  }

  .school-logo {
      max-width: 100px; /* Reduce school logo size */
  }
}

/* Content Container: Introduction and Gallery */
.content-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 20px;
}

.introduction {
  font-size: 1rem;
  line-height: 1.6;
  width: 56%;
  padding-top: 0px;
}

.introduction h1, .introduction h2 {
  margin: 0;
}

.introduction h2 {
  font-size: 30px;
  font-weight: normal;
  line-height: normal;
}

.introduction h1 {
  font-size: 50px;
  line-height: normal;
  margin-bottom: 10px;
}

.introduction p {
  max-width: 62%;
}

.gallery {
  flex: 1.5;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-left: -45%;
}

.image-grid > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-grid img {
  width: 100%;
}

.image-grid > div:nth-child(1) {
  justify-content: flex-end;
  padding-top: 220px;
}

.image-grid > div:nth-child(2) {
  padding-top: 100px;
}

/* Login Section */
.login {
  margin-top: -80px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

/* .login-container {
  background-color: #002f9e;
  border-radius: 50px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 688px;
  max-width: 100%;
} */

.login-container {
  position: relative;
  width: 688px;
  max-width: 100%;
}

.login-form {
  background-color: #2452ce;
  border-radius: 50px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: white;
  z-index: 1;
}

.login-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  background: #2452ce;
  padding: 10px 35px;
  border-radius: 30px;
  position: absolute;
  top: -30px;
  left: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.input-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.input-grid-container .input-field {
  width: 100%;
}

.input-grid-container .form-action .submit-button {
  width: auto;
  padding: 0 15px;
  border-radius: 30px;
  font-family: "Montserrat", serif;

  
}

.input-grid-container .form-action {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.input-field {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  outline: none;
  font-size: 14px;
}

.submit-button {
  background-color: #ffb742;
  border: none;
  color: white;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.account-button {
  position: absolute;
  bottom: -31px;
  left: 50px;
  background-color: #a9d56f;
  border-radius: 30px;
  padding: 12px 25px 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.account-button a {
  text-decoration: none;
  color: #2452ce;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.account-button svg {
  color: #ffffff;
  width: 20px;
  height: auto;
  transform: rotate(45deg);
}

/* Navigation Bar */
.navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 30px;
  gap: 15px;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  background-color: #f6f7fc;
  padding: 8px 10px 8px 22px;
  border-radius: 44px;
  border: 1px solid #cacfde;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 330px;
  
}

.nav-link img {
  transition: margin 0.3s ease;
}

.nav-link:hover {
  box-shadow: 0 4px 8px #cacfde;
}

.nav-link:hover img{
  position: relative;
  margin-right: -20px;
}

.campus-container {
  background: #f4f5f9;
  padding-top: 60px;
  padding-bottom: 60px;
}

.campus-container h2 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 60px;
}

/* .campus-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /
  gap: 40px;
  margin-left: 32%;
} */
 .campus-inner-wrapper {
    display: grid;
    gap: 40px;
    width: 70%;
    margin-left: 203px;
    
}


.campus-box {
    border-radius: 15px;
    background: #ffffff;
    padding: 25px;
    -webkit-box-shadow: -1px 3px 20px -7px rgba(0, 0, 0, 0.77);
    -moz-box-shadow: -1px 3px 20px -7px rgba(0, 0, 0, 0.77);
    box-shadow: -1px 3px 20px -7px rgba(0, 0, 0, 0.77);
    height: 457px;
}

.campus-box h3 {
  margin-top: 0;
}

/* .map-container {
  width: 100%;
  height: 300px; 
  overflow: hidden;
  margin-bottom: 10px;
} */

.map-container {
    width: 50%;
    height: 415px;
    overflow: hidden;
    margin-bottom: 10px;
    float: left;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .campus-content {
  padding: 20px 39px 0;
} */

.campus-content {
    padding: 0px 39px 0;
    width: 50%;
    float: right;
    font-size: 12px;
}

.campus-name {
  color: #1945b0;
  font-size: 20px;
  position: relative;
}

/*.campus-name::before {
  content: '';
  width: 30px;
  height: 40px;
  background: url(icon-map.png) no-repeat center top;
  position: absolute;
  background-size: 100% auto;
  left: -36px;
}*/
.wrapper2col{
  margin-top:15px;
}
.emptycol {   
    width: 16.5%;
    display: inline-block;
}
.filledcol2{
   width: 33%;
    display: inline-block;
    margin: 15px;
}
.campus-address {
  font-size: 18px;
  margin-top: 3px;
  font-weight: 500;
}

.campus-pill {
  margin-top: 3px;
  background: #ffffff;
  padding: 5px 15px 0 0;
  border-radius: 20px;
  color: #4e4a4a7d;
  width: max-content;
}

.info-grid__right {
  /*border-left: 1px solid #000000;
  padding-left: 20px;*/
}

.info-grid {
  display: grid;
  align-items: start;
  gap: 10px;
  /*grid-template-columns: 60% 40%;*/
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  padding-top: 20px;
}

.info-grid > div * + * {
  margin-top: 5px;
}

.info-grid span {
  display: block;
  font-weight: 600;
}

.info-grid a {
  display: block;
  text-decoration: none;
  color: #2E77BB;
}

.info-grid a.info-tel {
  color: #000000;
}

.info-grid * + strong {
  display: block;
  margin-top: 20px;
}

.info-grid p {
  margin-top: 15px;
}

.forgot-password-button {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  box-shadow: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.forgot-password-button:hover {
  text-decoration: underline;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
 .campus-inner-wrapper {
    width: 100%;
    display: block !important;
}
 .campus-content {
    float: none;
    width: 100%;
padding:15px !important;
}
.map-container {
    height: auto;
    width: 100%;
    flex: none;
}
  .filledcol2 {
      width: 100%;
      margin: 15px 0 15px 0;
  }
  .emptycol {
      display: none;
  }
  .campus-box {
        padding: 15px;
        min-height: 1000px;
    }
  }

@media screen and (max-width: 990px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content-container {
    flex-direction: column;
  }

  .navigation {
    padding: 40px 15px 30px;
  }

  .nav-link {
    width: 100%;
  }

  .introduction {
    width: 100%;
    padding-top: 20px;
  }

  .introduction h2 {
    font-size: 20px;
  }

  .introduction h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .introduction p {
    max-width: 100%;
  }

  .image-grid {
    margin-left: 0;
  }

  .login {
    margin-top: 0;
  }

  .input-container {
    flex-direction: column;
    align-items: unset;
  }

  .submit-button {
    margin-left: auto;
  }

  .input-grid-container .form-action .submit-button {
    margin: 0;
  }

  .campus-container {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .campus-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-grid__right {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #000000;
    padding-top: 20px;
  }

  .campus-name {
    font-size: 23px;
  }

  .campus-address {
    font-size: 18px;
  }

  .campus-pill {
    font-size: 14px;
  }
}

/* Welcome screen */
.welcome-screen-wrapper .welcome-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.welcome-top {
  background-image: url('../images/welcome.png');
  background-size: 100%;
  background-position: right top;
  min-height: 500px;
  background-repeat: no-repeat;
}

.welcome-container br {
  line-height: 15px;
}

.welcome-container .welcome-top-left {
  padding: 50px 0 0;
}

.welcome-container .welcome-top-right {
  padding: 50px 0 0;
  position: relative;
}

.welcome-container .welcome-top-right .welcome-logo {
  margin: 0 auto;
  position: relative;
}
/* //2e77bb
 */
 .welcome-user-box {
  background-color: #0d4fad;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  margin-top: 20px;
  /*position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -65%);*/
}
.hide {
  display: none !important;
}
.popup-text {
  color: #fff;
  padding: 5px 10px;
  text-align: center;
}

/*.welcome-user-box.welcome-login-popup {
  top: initial;
  left: 30%;
  bottom: 40px;
  transform: translateX(-30%);
}*/

/*.welcome-user-box.welcome-login-popup.welcome-register-popup {
  top: 50%;
  bottom: initial;
  transform: translate(-30%, -50%);
}*/

.welcome-user-box .welcome-user-popup-top {
  padding: 20px 20px;
  border-radius: 15px;
  background-color: #2e77bb;
  min-height: 350px;
}

.welcome-user-box h4 {
  margin: 0 0 22px;
  font-size: 24px;
  font-family: "Montserrat", serif;
  text-align: center;
  color: #fff;
}

.welcome-user-box .welcome-user-popup-top h3 {
  color: #fff;
  margin: 0 0 15px;
  font-size: 18px;
  font-family: "Montserrat", serif;
}

.welcome-user-box .welcome-user-popup-top p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Montserrat", serif;
}
.welcome-screen-wrapper form {
  margin-bottom: 0;
}

.welcome-screen-wrapper form input {
  border: 1px solid #fff;
  color: #fff;
  font-family: "Montserrat", serif;
  background-color: transparent;
  font-size: 13px;
  width: 100%;
  display: block;
  margin-bottom: 12px;
  padding: 14px 15px;
  ;
  border-radius: 5px;
}

.welcome-screen-wrapper form input::placeholder,
.welcome-screen-wrapper form input::-webkit-input-placeholder {
  color: #fff;
}

.form-field {
  position: relative;
}

input.input_pass {
  padding-right: 20px;
}

.pass_visible {
  position: absolute;
  right: 15px;
  top: 16px;
  background-image: url('../images/visibility_white.svg');
  background-repeat: no-repeat;
  background-size: 17px;
  display: block;
  width: 17px;
  height: 15px;
  cursor: pointer;
}

.pass_visible.pass_visible_off {
  background-image: url('../images/visibility_off_white.svg');
}

.welcome-screen-wrapper form input.errorField {
  border-color: #8a0a0a;
}

.imp-text {
  color: #3279BA;
  font-size: 15px;
  line-height: 22px;
}
/* //df3535
 */
.welcome-screen-wrapper form .errorFieldMsg,
.welcome-screen-wrapper form .invalidFieldMsg {
  
  color: #8a0a0a;
  font-size: 12px;
  font-family: "Montserrat", serif;
  margin-bottom: 10px;
  margin-top: -8px;
  display: block;
  max-width: 300px;
}

.api-error {
  font-size: 15px;
  background: #efd2d2;
  border: 1px solid #df3535;
  color: #df3535;
  padding: 5px;
  border-radius: 5px;
  font-family: "Montserrat", serif;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.api-success {
  font-size: 15px;
  background: #d4edda;
  border: 1px solid #155724;
  color: #155724;
  padding: 5px;
  border-radius: 5px;
  font-family: "Montserrat", serif;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.send_msg:not(.hide) {
  font-size: 15px;
  background: #d4edda;
  border: 1px solid #155724;
  color: #155724;
  padding: 5px;
  border-radius: 5px;
  font-family: "Montserrat", serif;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.api-error:empty {
  display: none !important;
}

.api-success:empty {
  display: none !important;
}

.welcome-screen-wrapper form input::placeholder {
  color: #fff;
}

/* //#3479BA; */
.welcome-screen-wrapper .wl-btn {
  padding: 15px;
  min-width: 135px;
  background: #69C08D;
  border: 1px solid #2e77bb;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
}
.welcome-screen-wrapper .wl-btn:hover {
  background: #fff;
  border: 1px solid #2e77bb;//#3479BA;
  color: #2e77bb;
}

.welcome-screen-wrapper .wl-btn.change-pass-trigger {
  font-size: 14px;
  padding: 7px 12px;
}

.wl-forgot-password {
  color: #fff;text-decoration: none;font-size: 14px;
}
.wl-forgot-password:hover {
  color:#000;
}
.text-right {
    text-align: right;height: 45px;
}
.form-field {
    position: relative;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wl-footer a {
  font-size: 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  text-transform: unset;
  font-family: "Montserrat", serif;
  padding: 20px;
  text-align: center;
}
.wl-footer-btn-register:hover, .wl-footer-btn-login span:hover {
    color: #000 !important;
}
.welcome-bottom {
  background-color: #f4f4f4;
  padding-bottom: 50px;
  position: relative;
}
.register {
    width: 48%;
    float: left;
    margin-right: 5px;
}

.welcome-logo-row {
  justify-content: space-between;
  max-width: 530px;
}

.welcome-logo {
  width: 230px;
  display: none !important;
}

.welcome-logo img {
  width: 100%;
}

.col {
  padding: 0 15px;
  width: 100%;
}

.welcome-top-right {
  position: relative;
}

.welcome-top-right:before {
  /* content: '';
  display: block;
  z-index: 0;
  width: 0%;
  height: 0;
  top: 0;
  position: absolute;
  border-left: 583px solid #fff;
  border-top: 443px solid transparent; */
}

.welcome-top {
  background-color: #e6e6e6;
}

.welcome-box {
  text-align: left;
  margin-top: 0;
}

.welcome-box h1 {
  text-align: left;
  color: #000;
  margin-left: 0;
  font-size: 50px;
  margin-bottom: 40px;
  font-family: "Montserrat", serif;
}


.welcome-box h1 span {
  color: #69C08D;
  font-size: 45px;
}

.welcome-box p {
  color: #4B4B4B;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-family: "Montserrat", serif;
}

.welcome-terms-wrap {
  margin-top: 30px;
}

.welcome-terms-wrap label {
  color: #4B4B4B;
  font-size: 18px;
}

.welcome-terms-wrap input {
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: text-top;
}


.welcome-bottom-contact .contact-btn {
  color: #3279BA;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #3279BA;
  text-decoration: none;
  margin-bottom: 40px;
  display: block;
  text-align: center;
  padding: 15px;
}

.welcome-top-second-row {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.welcome-contact-btn-wrap {
  box-shadow: 0 0 0 0 rgb(90 113 208 / 11%), 0 4px 16px 0 rgb(167 175 183 / 33%);
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  max-width: 400px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.welcome-contact-btn-wrap .leadership-btn {
  color: #fff;
  background-color: #69C08D;
  text-decoration: none;
  display: block;
  font-size: 14px;
  padding: 14px 15px;
  margin: 10px auto;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 5px;
  text-align: center;
}


.welcome-contact-btn-wrap .contact-btn {
  background: #fff;
  border: 1px solid #3479BA;
  color: #3479BA;
  font-size: 14px;
  border-radius: 5px;
  font-family: "Montserrat", serif;
  padding: 14px 15px;
  text-decoration: none;
  width: 100%;
  display: block;
  text-align: center;
}


.welcome-bottom-info .col {
  padding: 0 10px;
}

.welcome-bottom-contact {
  margin: 20px 0;
}
.register-now {
  display: inline-block;
  background: #3279BA;
  color: #fff;
  margin: 15px 0 0;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", serif;
}


.loader-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 82px;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
}

.loader-wrap img {
  width: 35px;
  height: auto;
}

@media screen and (min-width: 768px) {
   .welcome-bottom-info {
    text-align: center;
    justify-content: center;
  }

  .welcome-loggedIn .welcome-page-top {
    padding-bottom: 60px;
  }

  .welcome-loggedIn .welcome-contact-btn-wrap {
    margin-bottom: -30px;
  }

  .welcome-loggedIn .begin-app-col {
    margin-top: -70px;
  }

  .welcome-bottom-info .proceed-section {
    display: flex;
    align-items: center;
  }

  .welcome-top {
    overflow: hidden;
    /* min-height: 900px; */
  }

  .welcome-top.general-top {
    min-height: 600px;
  }

  .welcome-container .welcome-top-right {
    min-height: 735px;
  }

  .general-top .welcome-container .welcome-top-right {
    min-height: initial;
  }
}


@media screen and (max-width: 1440px) {
  .welcome-box h1 {
    font-size: 3.47vw;
  }

  .welcome-box h1 span {
    font-size: 3.3vw;
  }

}

@media screen and (max-width: 1300px) {
  .welcome-user-box form input {
    font-size: 15px;
    padding: 14px 15px;
  }

  .welcome-user-box form button {
    padding: 15px;
    font-size: 15px;
  }
}


@media (max-width: 767px) {
  .welcome-user-box,
  .welcome-user-box.welcome-login-popup,
  .welcome-user-box.welcome-login-popup.welcome-register-popup {
    position: relative;
    left: initial;
    top: initial;
    transform: none;
    bottom: initial;
  }

  .welcome-container .welcome-top-left,
  .welcome-container .welcome-top-right {
    padding: 40px 0 0;
  }

  .welcome-logo {
    padding: 10px 0;
  }

  .welcome-box {
    margin-top: 40px;
  }

  .welcome-box h1 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 30px;
  }

  .general-top .welcome-box h1 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 0;
  }

  .welcome-box h1 span {
    font-size: 18px;
  }

  .welcome-box p {
    font-size: 16px;
  }

  .welcome-user-box h4 {
    font-size: 20px;
  }

  .welcome-user-box form input {
    font-size: 15px;
    padding: 14px 15px;
  }

  .welcome-user-box form button {
    font-size: 15px;
    padding: 15px;
  }


  .welcome-top {
    background-image: none !important;
    padding-bottom: 50px;
    min-height: auto;
  }
  .welcome-bottom {
    padding-top: 40px;
  }

  .welcome-container .welcome-top-right .welcome-logo {
    margin: 0 0 30px;
  }
  .welcome-bottom-contact {
    order: 2;
  }

  .welcome-bottom-contact .contact-btn {
    margin-bottom: 30px;
  }


  .welcome-bottom .col {
    padding: 0;
  }

}
.errorMsg,
.class_err_message {
  color: #df3535;
  font-size: 11px;
  position: absolute;
  right: 25px;
  bottom: -15px;
}

.otp_error {
  color: #df3535;
  font-size: 11px;
  position: absolute;
  right: 25px;


}

a.old_admission_input.btn.btn-success {
  margin-top: 30px;
}

.ex_resend_otp {

  margin: 0 10px;
}


.verify-otp {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}


.wl-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}


.wl-popup .wl-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  width: 100%;
  height: 100%;
}

.wl-popup .wl-popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #69C08D;
  max-width: 92%;
  min-width: 350px;
  transform: translate(-50%, -50%);
  padding: 25px;
  border-radius: 19px;
}

.wl-popup .wl-popup-inner h4 {
  font-size: 23px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Gotham-Bold';
  text-align: center;
}

.wl-popup .wl-popup-inner p {
  color: #fff;
  font-family: 'Gotham-Medium';
}

.lt-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lt-logo-wrap a {
  display: block;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 200px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.lt-logo-wrap a:first-child {
  margin-right: 20px;
}

.lt-logo-wrap a img {
  width: 100%;
}

