@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital@0;1&display=swap');
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Header all css */
.navigation{
    width: 100%;
    background: #273746;
}
.navigation .row{
    display: flex;
    max-width: 1240px;
    margin: 0 auto;
}
.navigation .row .logo{
    width: 30%;
}
.navigation .row .logo h2{
    font-size: 29px;
    color: #fff;
}
.navigation .row .menu{
    width: 70%;
    text-align: right;
}
.navigation .row .menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    float: right;
}
.navigation .row .menu ul li{
    float: left;
}
.navigation .row .menu ul li a{
    text-decoration: none;
    display: inline-block;
    padding: 30px 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 5px solid transparent;
    transition: .5s;
}
.navigation .row .menu ul li .active{
    border-bottom: 5px solid #5DADE2;
}
.navigation .row .menu ul li a:hover{
    border-bottom: 5px solid #5DADE2;
}

/* Slider Section all css */
.slider{
    width: 100%;
    height: 600px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.slider .cover{
    width: 100%;
    height: 600px;
    background: rgba(0,0,0,0.6);
}
.slider .cover .caption{
    width: 800px;
    margin: 0 auto;
    padding-top: 145px;
    text-align: center;
}
.slider .cover .caption h1{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}
.slider .cover .caption p{
    color: #fff;
    font-size: 20px;
    line-height: 1.5em;
}

.slider .cover .caption a{
    text-decoration: none;
    display: inline-block;
    margin: 0 auto;
    padding: 20px 40px;
    color: #fff;
    font-size: 20px;
    border: 3px solid #fff;
    border-radius: 5px;
    transition: .5s;
}
.slider .cover .caption a:hover{
    background: #fff;
    color: #000;
}
.section{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}
.section .row{
    display: flex;
}
.section .row .column{
    width: 50%;
    
}
.section .row .details-column{
    padding: 0 20px;
}
.section .row .details-column h2{
    font-size: 30px;
    margin: 0;
}
.section .row .details-column p{
    font-size: 16px;
    line-height: 1.5em;
}
.section .row .img-column{
    text-align: center;
}
.section .row .img-column img{
    width: 95%;
    border-radius: 10px;
} 

/* Footer all css */
footer{
    width: 100%;
    background: #273746;
}
footer .row{
    display: flex;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 0;
}
footer .row .copyright{
    width: 33%;
}
footer .row .copyright p{
    font-size: 18px;
    color: #fff;
    margin: 0;
    padding: 55px 0;
}
.subscribe{
    width: 33%;
}
.subscribe h3{
    margin: 0 auto 15px auto;
    width: fit-content;
    font-size: 16px;
    color: #fff;
}
.subscribe input{
    background-color: white;
    display: block;
    margin: 10px 0;
    border-radius: 30px;
    height: 40px;
    border: none;
    padding: 0 20px;
    width: 400px;
    outline: none;
}
.subscribe button{
    display: block;
    width: 200px;
    margin: 15px auto;
    background-color: #5DADE2;
    color: white;
    border: none;
    border-radius: 30px;
    outline: none;
    font-size: 1.5em;
    height: 30px;
    cursor: pointer;
}
footer .row .social-logo{
    width: 33%;
    
}
footer .row .social-logo .social-item{
    float: right;
}
footer .row .social-logo a{
    display: inline-block;
    font-size: 20px;
    margin: 45px 10px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    background: #5DADE2;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    text-align: center;
    transition: .5s;
}
footer .row .social-logo a:hover{
    background: #2E86C1;
}
footer .row .social-logo a .fab{
    padding: 2px;
}


/* Gallery page all css */
.gallery-section{
    width: 100%;
}

.gallery-section .heading{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}
.gallery-section .row{
    display: flex;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.gallery-section .row .column{
    width: 30%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 250px;
    margin-right: 20px;
    cursor: pointer;
}
.gallery-section .row .column:last-child{
    margin-right: 0;
}
.gallery-section .row .cover{
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 250px;
    opacity: 0;
    transition: .5s;
}
.gallery-section .row .column:hover .cover{
    opacity: 1;
}
.gallery-section .row .column h3{
    font-size: 25px;
    color: #fff;
    margin: 0;
    padding-top: 200px;
    text-align: center;
    transition: .5s;
}
.gallery-section .row .column:hover h3{
    padding-top: 100px;
}


/* Personalities Page all css */
.personalities-section{
    width: 100%;
}
.personalities-section .heading{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}
.personalities-section .row{
    display: flex;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.personalities-section .row .column{
    width: 30%;
    border: 1px solid #D0D3D4;
    margin-right: 20px;
    overflow: hidden;
}
.personalities-section .row .column .image{
    height: 220px;
    overflow: hidden;
}
.personalities-section .row .column img{
    width: 100%;
    height: 240px;
    cursor: pointer;
    transition: .5s;
}
.personalities-section .row .column img:hover{
    transform: scale(1.3);
}
.personalities-section .row .column .details{
    padding: 10px;
}
.personalities-section .row .column .details h4{
    margin: 0;
    padding: 0;
    font-size: 22px;
}

/*Media page */
.media-page{
    width: 100%;
}
.media-page .heading h2{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}
.media-page .video-section .row{
    display: flex;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.media-page .video-section .row .column{
    width: 50%;
    margin-right: 20px;
    overflow: hidden;
    border: 1px solid #F4F6F6;
    box-shadow: 1px 2px 10px #d7dbdd;
}
.media-page .video-section .row .column iframe{
    width: 100%;
}
.media-page .video-section .row .column .details{
    padding: 15px;
}
.media-page .music-section .row{
    display: flex;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.media-page .music-section .row .column{
    width: 30%;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #F4F6F6;
    box-shadow: 1px 2px 10px #d7dbdd;
    transition: .2s;
}

.media-page .music-section .row .column:hover{
    border: 1px solid #F4F6F6;
    box-shadow: 1px 2px 15px #566573;
}
.media-page .music-section .row .column img{
    border-radius: 50%;
    height: 200px;
    width: 200px;
}
.media-page .music-section .row .column a{
    text-decoration: none;
    color: #000;
}
.media-page .music-section .row .column h3{
    font-size: 25px;
}
.media-page .music-history{
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    background: #F8F9F9;
    padding: 10px;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.media-page .music-history h2{
    font-size: 25px;
    text-align: center;
}



.event-heading h2{
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 30px;
}


/* Contact page all css */

#contact {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 100px;
}
 
#contact .section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 300 60px 'Oswald', sans-serif;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 6px;
}

#contact .contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
}

/* Left contact page */
#contact .form-horizontal {
  /*float: left;*/
  max-width: 400px;
  font-family: 'Lato';
  font-weight: 400;
}

#contact .form-control, 
textarea {
  max-width: 400px;
  background-color: #F7F9F9;
  color: #2C3E50;
  letter-spacing: 1px;
}

#contact .send-button {
  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

#contact .alt-send-button {
  width: 400px;
  height: 34px;
  transition: all .2s ease-in-out;
}

#contact .send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px 'Lato', sans-serif;
  letter-spacing: 2px;
}

#contact .alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
#contact .direct-contact-container {
  max-width: 400px;
}

/* Location, Phone, Email Section */
#contact .contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}

#contact .list-item {
  line-height: 4;
  color: #2C3E50;
}

#contact .contact-text {
  font: 300 18px 'Lato', sans-serif;
  letter-spacing: 1.9px;
  color: #2C3E50;
}

#contact .place {
  margin-left: 62px;
}

#contact .phone {
  margin-left: 56px;
}

#contact .gmail {
  margin-left: 53px;
}

#contact .contact-text a {
  color: #2C3E50;
  text-decoration: none;
  transition-duration: 0.2s;
}

#contact .contact-text a:hover {
  color: #000;
  text-decoration: none;
}


/* Social Media Icons */
#contact .social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

#contact .social-media-list li a {
  color: #fff;
}

#contact .social-media-list li {
  position: relative; 
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: #2C3E50;
  cursor: pointer; 
  transition: all .2s ease-in-out;
}

#contact .social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all .2s ease-in-out;
}

#contact .social-media-list li:hover {
  background-color: #000; 
}

#contact .social-media-list li:hover:after {
  opacity: 1;  
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}

#contact .social-media-list li:hover a {
  color: #fff;
}

#contact hr {
  border-color: rgba(255,255,255,.6);
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
 #contact .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  #contact .direct-contact-container, .form-horizontal {
    margin: 0 auto;
  }  
  
  #contact .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }    
  #contact .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  #contact .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 569px) {

  #contact .direct-contact-container, .form-wrapper {
    float: none;
    margin: 0 auto;
  }  
  #contact .form-control, textarea {
    color: #2C3E50;
    margin: 0 auto;
  }
 
  
  #contact .name, .email, textarea {
    width: 280px;
  } 
  
  #contact .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }  
  #contact .social-media-list {
    left: 0;
  }
  #contact .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  #contact .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  
}

@media screen and (max-width: 410px) {
  #contact .send-button {
    width: 99%;
  }
}





