@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}
.over-lay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
}
.banner-heading-content {
    text-align: center;
    padding: 80px 0px;
}
.banner-heading-content h2 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
   
}

.paper-submit-first-section {
    height: 222px;
    /* width: 100%; */
    position: relative;
    background: url(assets/images/about-college/all-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: revert;
}

.abstract-fullpaper-first-section {
    background-color: #eeeeee;
    padding: 50px 0px;
}
.full-paper-guidelines {
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 25px;
}
.full-paper-guidelines h2 {
    font-size: 20px;
    font-weight: 600;
       color: #3b89c9;
    line-height: 29px;
    /* font-family: 'Oswald', sans-serif; */
    border-bottom: 1px dashed #000000;
    padding-bottom: 10px;
}
.full-paper-guidelines p {
    font-size: 15px;
    color: #000;
    line-height: 28px;
    font-weight: 500;
    /* font-family: 'Roboto', sans-serif; */
}
.full-paper-guidelines ol li {
    font-size: 15px;
    color: #000;
    line-height: 33px;
    font-weight: 500;
    /* font-family: 'Roboto', sans-serif; */
}
.full-paper-guidelines-form {
    margin-top: 20px;
    background-color: #fff;
    padding: 25px;
    border: none;
    border-radius: 5px;
}
.full-paper-guidelines-form h2 {
    font-size: 20px;
    font-weight: 600;
        color: #3b89c9;
    line-height: 29px;
    /* font-family: 'Oswald', sans-serif; */
    border-bottom: 1px dashed #000000;
    padding-bottom: 10px;
}
.full-paper-guidelines-form .btn-primary , .exhibitor-registration-form .btn-primary , .contact-page-form .btn-primary{
    color: #fff;
    background-color: #ef3a41 !important;
    border-color: #f0595f !important;
    font-size: 17px !important;
    margin-top: 18px;
}
.full-paper-guidelines-form .btn-primary:hover , .exhibitor-registration-form .btn-primary:hover , .contact-page-form .btn-primary:hover{
    color: #fff;
    background-color: #f0595f;
    border-color: #f0595f;
}




/* modal work */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1, 1);
    transition: 0.5s;
  }
  
  body.open .modal-container {
    visibility: visible;
    opacity: 1;
    animation: modal-container-in 1s both;
    background: #020202ab;
  }
  
  .modal-window {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #ffffff;
    color: #000000;
    padding: 48px 40px;
    width: 90%;
    border-radius: 12px;
    translate: -50% -50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    height: 90vh;
    overflow-y: scroll;
    border: 2px solid transparent;
    scrollbar-width: thin;

  }
  
  body.open .modal-window {
    opacity: 1;
    visibility: visible;
    animation: modal-window-in 1s;
  }
  
  body.closed .modal-window {
    opacity: 0;
    visibility: hidden;
    translate: -50% -50%;
  }
  
  h2 {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 21px;
  }
  
  p {
    margin: 0;
  }
  
  @keyframes modal-container-in {
    0% {
      scale: 0 0.005;
    }
    33% {
      scale: 1 0.005;
    }
    66%,
    100% {
      scale: 1 1;
    }
  }
  
  @keyframes modal-window-in {
    0%,
    66% {
      opacity: 0;
      visibility: hidden;
      translate: -50% -30%;
    }
    100% {
      opacity: 1;
      visibility: visible;
    }
  }


.underline-terms{
    color: blue;
    cursor: pointer;
}
  