.modal-tailored-learning-courses {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: -200px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, 0.7);
  transition: all 0.4s;
  z-index:99999
}

.modal-tailored-learning-courses:target {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  transition: all 0.4s;
}

.modal-tailored-learning-courses .modal__content {
	border-radius: 4px;
    position: relative;
    width: 800px;
    max-width: 90%;
    background: #fff;
    padding: 30px 30px 15px;
    height: auto;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 100%);
}

.modal-tailored-learning-courses .modal__content h3{
	font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
}
 
.modal-tailored-learning-courses .modal__close {
	position: absolute;
    top: 0px;
    right: 20px;
    color: #585858;
    text-decoration: none;
    font-size: 32px;	
}

.modal__content .image {
	height:450px;
}

.modal__content .image img{
	width:100%;
	height:450px;
	object-fit: cover;
}


.modal__content .form-layout-ctn .form-layout {
	height: 40px;
    display: table;
    margin-bottom: 20px;
    position: relative;
}



@media only screen and (max-width: 680px) {
	.modal-tailored-learning-courses .modal__content {
	border-radius: 4px;
    position: relative;
    width: 800px;
    max-width: 94%;
    background: #fff;
    padding: 40px 15px 40px;
    height: auto;
    overflow-y: scroll;
    height: 90vh;
	}
	
}

