body {
    font-family: "Inter", sans-serif;
    background-image: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url(./bg.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main-section-area{
    min-height: 92vh;
    align-content: center;
}
#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: none;
}
@media(min-width: 768px){
    .main-content-container{
        width: calc(100% - 250px);
        float: right;
    }
}

/* Side nav start */
#side_nav{
    background: #000;
    min-width: 250px;
    max-width: 250px;
    transition: all 0.3s;
    position: fixed;
    height: 100vh;
    z-index: 99;
}
.content{
   min-height: 100vh;
   width: 100%;
}
.sidebar li.active{
   background: #eee;
   border-radius: 8px;
}
.sidebar li.active a, .sidebar li.active a:hover {
 color: #000;
}
.sidebar li a{
 color: #fff;
}
@media(max-width: 767px){
    #side_nav{
        margin-left: -250px;
    }
    #side_nav.active{
        margin-left: 0;
    }
}
/* Side nav end */

/* Thank you page start */
.thank{
    width:100%;
    height:100vh;
    display: flex;
    flex-direction: column;
}
.thank .wrapper-2{
    padding :30px;
    text-align:center;
    background-color: #000;
}
.thank h1{
    font-family: 'Kaushan Script', cursive;
    font-size:4em;
    letter-spacing:3px;
    color:#ffffff ;
    margin:0;
    margin-bottom:20px;
}
.thank .wrapper-2 p{
    margin:0;
    font-size:1.3em;
    color:#aaa;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing:1px;
}
.thank .go-home{
    color:#fff;
    background:#5892FF;
    border:none;
    padding:10px 50px;
    margin:30px 0;
    border-radius:30px;
    text-transform:capitalize;
    box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}

@media (min-width:360px){
    .thank h1{
        font-size:4.5em;
    }
    .thank .go-home{
        margin-bottom:20px;
    }
}

@media (min-width:600px){
    .thank{
        height: initial;
        max-width:620px;
        margin:0 auto;
        margin-top:50px;
        box-shadow: 4px 8px 40px 8px rgb(88 146 255 / 40%);
    } 
}
/* Thank you page end */