.cursor{cursor:pointer;}
.text-white{color: #fff;}
body, html {
    height: 100%;
}
.logo{
  width: 80px;
  height: 80px;
  max-width: 100%;
}
.masthead {
    /* The image used */
    background-image: url("img/header-bg-5.jpg");

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}
/*about section*/
.icon{
  font-size: 140px;
  background-color: #FED136;
  color: #3C3431;
  border-radius: 100px;
}
.special-text{
  background-color: #3C3431;
  color: #fff;
}
/*Courses Section */
#portfolio{
  background-color: #3C3431;
}

/* Register Section */
#call-to-action {
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)), url(../img/contact.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1dc8cd;
  border: 2px solid #1dc8cd;
}
/*End of Register section*/
/*gallery section*/
#gallery {
  background-color: #3C3431;
  color: #FED136;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}
.myImg{
  border-radius:5px;
  cursor:pointer;
  transition:0.3s;
}
#myImg:hover{
    opacity:0.7;
}
 .mymodal{
    display:none;
    position:fixed;
    z-index:1;
    padding-top:100px;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:auto;
    background-color:rgb(0,0,0);
    background-color:rgba(0,0,0,0.9);
}
 .modal-content{
    margin:auto;
    display:block;
    width: 50%;
    min-height: 80px;
    height: auto;
    max-height: 100%;
    max-width:100%;
}
 #model-caption{
    margin:auto;
    display:block;
    width:80%;
    max-width:700px;
    text-align:center;
    color:#ccc;
    font-size:18px;
    padding:10px 0;
    height:150px;
}
 .slideanim{
    visibility:hidden;
}
 .slide{
    animation-name:slide;
    -webkit-animation-name:slide;
    animation-duration:1s;
    -webkit-animation-duration:1s;
    visibility:visible;
}
 @keyframes slide{
    0%{
        opacity:0;
        transform:translateY(70%);
    }
     100%{
        opacity:1;
        transform:translateY(0%);
    }
}
 @-webkit-keyframes slide{
    0%{
        opacity:0;
        -webkit-transform:translateY(70%);
    }
     100%{
        opacity:1;
        -webkit-transform:translateY(0%);
    }
}
 .modal-content, #model-caption{
    -webkit-animation-name:zoom;
    -webkit-animation-duration:0.6s;
    animation-name:zoom;
    animation-duration:0.6s;
}
 @-webkit-keyframes zoom{
    from{
        -webkit-transform:scale(0)
    }
     to{
        -webkit-transform:scale(1)
    }
}
 @keyframes zoom{
    from{
        transform:scale(0)
    }
     to{
        transform:scale(1)
    }
}
 .close{
    position:absolute;
    top:10vh;
    right:35px;
    color:#f1f1f1;
    font-size:40px;
    font-weight:bold;
    transition:0.3s;
}
 .close:hover, .close:focus{
    color:#bbb;
    text-decoration:none;
    cursor:pointer;
}
 @media only screen and (max-width:700px){
    .modal-content{
        width:100%;
    }
}

/*end of gallery section*/
