@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;800&family=Lato:wght@900&family=Poppins:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&family=Poppins&display=swap');
*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    font-family: 'poppins', sans-serif; transition: .2s linear;
    outline: none; border: none; text-decoration: none;
}

:root{
    --main-color: #050913;
    --main2-color:  #6600ff;
    --black-color: #1b1b1b;
    --dark-black-color: #000;
    --white-color: #fff;
    --gray-color: gray;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    overflow-x: hidden;
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: transparent;
}

::-webkit-scrollbar-thumb{
    border-radius: 5rem;
    background-color: var(--main2-color);
}

/*Start navbar and home page*/
#home{
    overflow: hidden!important;
}
#toggle{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--main2-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.logo img{
    height: 6rem;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
}

#toggle::before{
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  transform: translateY(-5px);
  transition: .3s all;
}

#toggle::after{
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  transform: translateY(5px);
  transition: .3s all;
}

#toggle.active::before{
  transform: translateY(0px) rotate(-45deg);
}

#toggle.active::after{
  transform: translateY(0px) rotate(45deg);
}

#sidebar{
  width: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(90deg,#1904345e, var(--main-color)), url(../img/spooky-scene-with-man-floating-outside.jpg);
  background-size: cover; background-position: center; 
  transition: .4s all;
  transform: scale(0);
  z-index: 1000;
  box-shadow: -5px 0 5px -5px #333;
}

#sidebar.active{
  left: 0px;
  transform-origin: left;
  transform: scale(1);
}

#sidebar ul{
  position: relative;
  margin-top: 50px!important;
}

#sidebar ul li{
  list-style: none; 
  width: 100%;
  padding: 20px 5px;
  border-top-left-radius: 33px;
  border-bottom-left-radius: 33px;
}

#sidebar ul li:hover{
  background: linear-gradient(45deg, #ffffff42, transparent);
  border-top-left-radius: 33px;
  border-bottom-left-radius: 33px;
  color: var(--white-color);
  transition: .5s ease all;
}

#sidebar ul a{
  color: var(--white-color);
  display: flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  font-family: 'lato', sans-serif;
  font-size: 1.6rem;
}

.home-text h2:hover .cursor{
 width: 100px;
 height: 100px;
}

#sidebar ul li a ion-icon{
    margin: 0 .8rem;
}

#sidebar ul li a:hover{
  color: var(--white-color);
}

.sidebar-img-sec{
  text-align: center;
  background: white;
  border-bottom-left-radius: 20%;
  border-bottom-right-radius: 20%;
  box-shadow: var(--box-shadow);
}

.sidebar-img-sec img{
  width: 150px;
  height: 150px;
}

.sidebar-img-sec h6{
  font-weight: 500;
  font-size: 22px;
  margin: 4px auto!important;
}

.sidebar-icons ion-icon{
  background: #03a9f4;
  padding: 4px!important;
  border-radius: 50%;
  color: var(--white-color);
  margin: 5px 3px!important;
}

.sidebar-icons ion-icon:hover{
  background: var(--white-color);
  color: var(--main-color);
  box-shadow: var(--box-shadow);
  transition: .5s ease-in-out;
}

.cursor{
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    z-index: 10000000;
    transition: .5s;
    pointer-events: none;
    transform: translate(-50%.-50%);
    box-shadow: 0px 10px 20px 2px var(--main2-color);
    mix-blend-mode: difference!important;
}
/*HOME*/
.home-section{
    padding: 2rem 7%;
    background: linear-gradient(355deg,#0509139e,#050913), url(../img/home-bg6.png) no-repeat 50% 50%;
    background-size: cover;
    width: 100%; min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden!important;
    animation: scale 10s linear infinite;
}


@keyframes scale {
  50%{
    background-position: revert;
  }
}


.home-text{
    text-align: center;
}

.home-text h2{
    font-size: 6.5rem;
    font-weight: 800;
    color: var(--white-color);
}

.home-text h2 span{
    color: var(--main2-color);
}

.home-text p{
    color: var(--white-color);
    font-size: 1.2rem;
    max-width: 40rem;
    margin: auto;
    padding: 1.4rem 0;
}


.home-btn a{
    background: var(--main2-color);
    border-radius: 50px;
    color: var(--white-color);
    cursor: pointer;
    display: flex;*/
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 16px 34px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    max-width: 200px;
}

.home-btn a:hover{
    color: var(--main2-color);
    background-color: var(--white-color);
}

.home-btn a i{
    margin: 0 .6rem;
}

/*Animation*/
.glowing {
  position: relative;
  min-width: 100%;
  height: 100%;
  transform-origin: right;
  animation: colorChange 5s linear infinite;
}

.glowing:nth-child(even) {
  transform-origin: left;
}

@keyframes colorChange {
  0% {
    filter: hue-rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
    transform: rotate(360deg);
  }
}

.glowing span {
  position: absolute;
  top: calc(80px * var(--i));
  left: calc(80px * var(--i));
  bottom: calc(80px * var(--i));
  right: calc(80px * var(--i));
}

.glowing span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 15px;
  height: 15px;
  background: #f00;
  border-radius: 50%;
}

.glowing span:nth-child(3n + 1)::before {
  background: rgba(134,255,0,1);
  box-shadow: 0 0 20px rgba(134,255,0,1),
    0 0 40px rgba(134,255,0,1),
    0 0 60px rgba(134,255,0,1),
    0 0 80px rgba(134,255,0,1),
    0 0 0 8px rgba(134,255,0,.1);
}

.glowing span:nth-child(3n + 2)::before {
  background: rgba(255,214,0,1);
  box-shadow: 0 0 20px rgba(255,214,0,1),
    0 0 40px rgba(255,214,0,1),
    0 0 60px rgba(255,214,0,1),
    0 0 80px rgba(255,214,0,1),
    0 0 0 8px rgba(255,214,0,.1);
}

.glowing span:nth-child(3n + 3)::before {
  background: rgba(0,226,255,1);
  box-shadow: 0 0 20px rgba(0,226,255,1),
    0 0 40px rgba(0,226,255,1),
    0 0 60px rgba(0,226,255,1),
    0 0 80px rgba(0,226,255,1),
    0 0 0 8px rgba(0,226,255,.1);
}

.glowing span:nth-child(3n + 1) {
  animation: animate 10s alternate infinite;
}

.glowing span:nth-child(3n + 2) {
  animation: animate-reverse 3s alternate infinite;
}

.glowing span:nth-child(3n + 3) {
  animation: animate 8s alternate infinite; 
}

@keyframes animate {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-reverse {
  0% {
    transform: rotate(360deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  100% {
    transform: rotate(0deg);
  }
}

.shape-1{
    position: absolute;
    top: 230px;
    left: 8rem;
    width: 100px;
    animation: rotate-animation 10s linear infinite;
}

.shape-2{
    position: absolute;
    top: 150px;
    left: 3rem;
    width: 50px;
    animation: rotate-animation 10s linear infinite;
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
  }
  50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
}
}


/*Start user section*/
.user-section{
  padding: 1.5rem 5%;
  background: var(--main2-color);
  width: 100%; height: auto;
}

.user-box{
  display: flex;
  margin: 1rem auto;
}

.user-box i{
  font-size: 4.5rem;
  color: var(--white-color);
  border: 2.5px dashed var(--white-color);
  width: 90px;
  border-radius: 50px 0 50px 50px;
  height: 90px;
  display: flex; justify-content: center;
  align-items: center;
}

.user-box .user-box-text{
  margin: 1.2rem 1.5rem;
}

.user-box .user-box-text h2{
  font-size: 3rem;
  color: var(--white-color);
  font-family: 'lato', sans-serif;
  font-weight: 700;
}

.user-box .user-box-text p{
  font-size: 1.4rem;
  color: var(--white-color);
}
/*End user section*/

/*End navbar and home page*/

/*Start movie section*/
.movie-section{
    padding: 2rem 5%;
    background: url(../img/movie-bg2.jpg);
    background-size: cover; background-position: center;
    width: 100%; min-height: 100vh;
}

.movie-section .nav{
    justify-content: end;
    align-items: center;
}

.nav-pills .nav-link{
    border-radius: 50px;
    background: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    color: #e3dfdf;
    border: 2px solid #ffffff52;
    padding: 14px 27px;
    margin: 0 .5rem;
    width: 120px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    border-radius: 50px;
    background: var(--main-color);
    font-size: 1.4rem;
    font-weight: 600;
    color: #e3dfdf;
    border: 2px solid var(--main2-color);
    padding: 14px 27px;
    margin: 0 .5rem;
    width: 120px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.movie-section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1.3rem;
    flex-wrap: wrap;
}

.movie-section-header .movie-section-header-heading p{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    display: flex;
    letter-spacing: .5px;
    font-family: 'lato', sans-serif;
    background: linear-gradient(45deg, var(--main2-color), transparent);
    padding: 1rem;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.movie-section-header .movie-section-header-heading h3{
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    font-family: 'lato', sans-serif;
}

/*...Tab-Body...*/
.movieCard-inner-box{
    padding: 0 1.3rem;
}

.movieCard-inner-box:hover img{
    filter: brightness(.6);
}

.movieCard-inner-box img{
    width: 100%;
    border-radius: 6px;
    transition: .5s;
}

.movieCard-inner-box .movieCard-inner-box-body .movieCard-inner-box-body-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.movieCard-inner-box-body-heading h4{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white-color);
    font-family: 'lato', sans-serif;
}

.movieCard-inner-box-body-heading p{
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--main2-color);
    font-family: 'lato', sans-serif;
    margin: 0;
}

.movieCard-inner-box-body .duration{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.movieCard-inner-box-body .duration h3{
    font-size: 1rem;
    border: 2px solid #e5e5e580;
    padding: .4rem .7rem;
    color: var(--white-color);
    font-family: 'lato', sans-serif;
}

.movieCard-inner-box-body .duration .rating{
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.movieCard-inner-box-body .duration .rating p{
    font-size: 1rem;
    color: var(--white-color);
    font-family: 'lato', sans-serif;
    letter-spacing: .4px;
    font-weight: lighter;
}

.movieCard-inner-box-body .duration .rating p i{
    color: var(--white-color);
}
/*End movie section*/

/*Start 3d card section*/
.wrapper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--main-color);
}

.card {
  position: relative;
  width: 600px;
  height: 350px;
  margin: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(#6600ffad,#6600ffa8),url(../img/card-bg.png);
  background-size: 100%; background-position: center;
  animation: scroll-zoom 15s linear infinite;
}

@keyframes scroll-zoom{

    50%{
        background-size: 160%;
        background-position: inherit;
    }
}

.card img {
  position: absolute;
  bottom: 0;
  left: 80%;
  transform: translateX(-50%);
  height: 500px;
  transition: 0.5s;
}

.card:hover img {
  left: 80%;
  height: 500px;
}

.card .content {
  position: relative;
  padding: 2rem 3%;
  opacity: 1;
  width: 65%;
  visibility: visible;
  transition: 0.5s;
  left: -16%;
  top: 4rem;
}

.card:hover .content {
  left: -16%;
  top: 4rem;
  opacity: 1;
  visibility: visible;
}

.card .content h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-family: 'lato', sans-serif;
  line-height: 1em;
}

.card .content p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7;
}

.card .content a {
  position: relative;
  display: inline-block;
  color: #111;
  padding: 10px 20px;
  border-radius: 10px;
  background: #fff;
  margin-top: 10px;
  text-decoration: none;
}
/*End 3d card section*/

/*Start service section*/
.service-section{
    padding: 4rem 5%;
    width: 100%;
    min-height: 100vh;
    background: url(../img/service-bg.jpg);
    display: flex; align-items: center;
    background-size: cover; background-position: center;
}

.service-box{
    text-align: center;
    padding: 1rem;
    transition: .6s all;
    margin: 2rem auto;
}

.service-box.active{
    background: var(--main2-color);
}

.service-box.active ion-icon{
    transition: .5s all;
    color: var(--white-color);
}

.service-box:hover{
    background: var(--main2-color);
}

.service-box:hover ion-icon{
    color: var(--white-color);
}

.service-box ion-icon{
    font-size: 7rem;
    color: var(--main2-color);
    transition: .5s all;
}

.service-box h3{
    font-size: 2rem;
    color: var(--white-color);
    padding: 1rem 0;
    font-weight: 400;
    letter-spacing: .2px;
}

.service-box p{
    font-weight: lighter;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--light-gray);
}

.service-section-heading h3{
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    font-family: 'lato', sans-serif;
}

.service-section-heading p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    display: flex;
    letter-spacing: .5px;
    font-family: 'lato', sans-serif;
    background: linear-gradient(45deg, var(--main2-color), transparent);
    padding: 1rem;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*End service section*/

/*Start subscribe section */
.price-section{
    padding: 4rem 5%;
    width: 100%; min-height: 100vh;
    background: var(--main-color);
}
 .basic .pricing-header {
     background: linear-gradient(45deg, #6600ff, #0600ff);
}
 .basic .price-circle {
     border: 10px solid var(--main2-color);
     transition: all 0.4s;
}
 .basic:hover .price-circle {
}
 .basic .buy-now:hover {
     background-image: none !important;
     background-color: #4b7bec !important;
     box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
}
 .eco .pricing-header {
     background: linear-gradient(45deg, #f7b731, #e79b00);
}
 .eco .price-circle {
     border: 10px solid #f7b731;
     transition: all 0.4s;
}
 .eco:hover .price-circle {
     border-width: 5px;
}

 .eco .buy-now{
     background-image: none !important;
     background-color: #f7b731!important;
     box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
}
 .pro .pricing-header {
     background: linear-gradient(45deg, #00ff52, #26de81);
}
 .pro .price-circle {
     border: 10px solid #26de81;
     transition: all 0.4s;
}
 .pro:hover .price-circle {
     border-width: 5px;
}
 .pro .buy-now{
     background-image: none !important;
     background-color: #26de81 !important;
     box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
}
 .business .pricing-header {
     background-color: #a55eea;
}
 .business .price-circle {
     border: 10px solid #a55eea;
     transition: all 0.4s;
}
 .business:hover .price-circle {
     border-width: 5px;
}
 .business .buy-now:hover {
     background-image: none !important;
     background-color: #a55eea !important;
     box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
}
/* Card Themes - End */
 
 .container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     text-align: center;
}
 .column {
     flex: 25%;
     padding: 10px;
     width: calc(33.3% - 30px);
     box-sizing: border-box;
}

 .pricing-card {
     -webkit-transition: 0.4s background-color ease;
     -ms-transition: 0.4s background-color ease;
     transition: 0.4s background-color ease;
     height: 500px;
     background-color: #0d111a;
     position: relative;
     transition: all 0.4s;
}
 .pricing-card:hover {
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
     transform: scale(1.05);
}
 .pricing-card .popular {
     position: absolute;
     top: 0;
     right: 5%;
     width: auto;
     padding: 10px;
     background-color: #eb3b5a;
     color: white;
     font-size: 12px;
     z-index: 1;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
 .pricing-card .badge-box {
     padding: 0 40px;
     margin-top: 80px;
}
 .pricing-card .badge-box span {
     display: inline-block;
     border: 1px solid #fff;
     padding: 4px 12px;
     border-radius: 25px;
     overflow: hidden;
     color: #fff;
}
 .pricing-card .pricing-header {
     width: 100%;
     height: 116px;
     position: relative;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}
 .pricing-card .pricing-header .plan-title {
     font-size: 24px;
     color: white;
     position: relative;
     top: 25%;
}
 .pricing-card .pricing-header .price-circle {
     width: calc(33.3% - 30px);
     width: 120px;
     height: 120px;
     border-radius: 100%;
     left: calc(50% - 60px);
     top: 50%;
     background-color: white;
     position: absolute;
}
 .pricing-card .pricing-header .price-circle .info {
     display: block;
     font-size: 12px;
     font-weight: bold;
     color: gray;
}
 .pricing-card .pricing-header .price-circle .price-title {
     display: block;
     font-size: 2rem;
     padding: 28px 0 0;
     font-weight: 600;
     color: var(--black-color);

}
 .pricing-card .pricing-header .price-circle .price-title small {
     font-size: 18px;
}
 .pricing-card .pricing-header h2 {
     position: relative;
     top: 40%;
     color: #fff;
}
 .pricing-card ul {
     margin: 10px 0 0 0;
     padding: 0;
}
 .pricing-card ul li {
     list-style-type: none;
     display: block;
     padding: 10px 0 15px 0;
     margin: 0;
     font-size: 1.4rem;
     color: var(--white-color);
}
 .pricing-card .buy-button-box {
     width: 100%;
     float: left;
     margin-top: 30px;
}
 .pricing-card .buy-button-box .buy-now {
     color: white;
     padding: 15px 30px;
     width: 87%;
     background: var(--main2-color);
     display: block;
     margin: auto;
     border-radius: 6px;
     font-size: 1.4rem;
}
 
/*End subscribe section*/

/*start download section*/
.download-section{
    padding: 4rem 5%;
    width: 100%; min-height: 100vh;
    background: url(../img/download-bg.jpg);
    background-size: cover; background-position: center;
    display: flex; align-items: center;
}

.download-section .download-text h2{
    font-size: 5rem;
    color: var(--white-color);
    font-weight: 700;
    padding-bottom: 2rem;
    font-family: 'lato', sans-serif;
}

.download-text p{
    font-size: 1.6rem;
    color: var(--main2-color);
    font-weight: 400;
    font-family: 'lato', sans-serif;
}

.download-icon{
    display: flex;
    align-items: center;
}

.download-icon i{
    border: 1.6px dashed var(--white-color);
    color: var(--white-color);
    padding: 2rem;
    font-size: 3.5rem;
    border-radius: 50%;
    display: flex; justify-content: center;
    align-items: center;
    width: 80px; height: 80px;
}

.download-icon-text{
    padding: 2.4rem 2rem;
}

.download-icon-text h4{
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'lato', sans-serif;
    padding-bottom: .3rem;
    color: var(--white-color);
}

.download-icon-text p{
    color: var(--white-color)!important;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: lighter;
    font-family: 'poppins', sans-serif;
}

.download-img img{
    width: 100%;
    height: auto;
    animation: UpDown 3s linear infinite;
}

@keyframes UpDown{
    0%, 100% {
    transform: translateY(0);
}

50% {
    transform: translateY(-2.5rem);
}
}

.download-btn a{
    width: 80%;
    background: var(--main2-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.8rem;
    font-size: 1.4rem;
    color: var(--white-color)!important;
    border-radius: 5px;
}
/*End download section*/

/*Start contact section*/
.contact-page-sec{
    padding: 4rem 5%;
    width: 100%; min-height: 100vh;
    background: url(../img/contact-bg.png);
    background-size: cover; background-position: center;
}

.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.contact-info-icon {
 margin-bottom: 15px;
}
.contact-info-item {
  background: #0d111a;
  padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: var(--main2-color);
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #999999;
  font-size: 16px;
  /* font-weight: ; */
  display: block;
  width: 100%;
  padding: 0px 30px;
}

.contact-page-form input {
  background: #0d111a none repeat scroll 0 0;
  margin-bottom: 20px;
  padding: 1.4rem;
  width: 100%;
}

:placeholder{
    color: var(--white-color);
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}
.single-input-field textarea {
  background: #0d111a none repeat scroll 0 0;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
  background: var(--main2-color); none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}
/*End contact section*/

/*Start footer*/
.footer {
  padding: 0 5%;
  padding-top: 4rem;
  background: var(--main-color);
}

.footer_section ul li a{
  text-decoration: none;
  text-align: left;
}

.footer_section h4,
.social_media h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'lato', sans-serif;
    text-transform: uppercase;
    text-align: left;
    font-size: 2rem;
}

.footer_section p{
  font-size: 1.4rem;
  color: var(--white-color);
  line-height: 1.7;
  text-align: left;
  padding-right: 2rem;
}

.footer_section h4::after,
.social_media h4::after {
    content: "";
    display: block;
    height: 4px;
    width: 40px;
    background: var(--main2-color);
    margin-top: 20px;
}

.footer_section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}


.footer_section ul li a {
    color: #fff;
    transition: all .3s ease 0s;
    line-height: 36px;
    font-size: 1.4rem;
    text-align: left;
    text-transform: capitalize;
}

.footer_section ul li i{
   font-size: 1.4rem;
   color: var(--white-color);
}

.footer_section ul li a:hover {
  border-bottom: 1px solid var(--main2-color);
  padding-bottom: .2rem;
  transition: .4s all;
  color: var(--main2-color);
}

.footer_section_contact ul li {
    color: #fff;
}

.new{
  display: block!important;
}

.social_media ul{
    display: flex;
}

.social_media ul li {
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white-color);
    transition: all .5s ease;
    margin: 0 .8rem;
    list-style: none;
}

.social_media ul li:hover {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background-color: transparent;
}

.social_media ul li a {
    font-weight: 100;
    color: var(--main-color);
    text-decoration: none;
}

.second-footer{
  padding: 1.5rem 0;
  border-top: 1.2px solid #ffffff38;
}

.second-footer h3{
  font-size: 1.2rem;
  text-align: center;
  color: var(--white-color);
  font-family: 'lato', sans-serif;
}

.second-footer h3 a{
  font-size: 1.4rem;
  color: var(--main2-color);
  font-family: 'lato', sans-serif;
}

/*End footer*/



















/*Media quaries*/
@media screen and (max-width: 991px){
html{
    font-size: 55%;
}
.shape-1{
    display: none;
}

.card {
    position: relative;
    width: auto;
    max-width: 600px;
    transition: 0.5s;
    align-items: flex-start;
  }

  .card:hover .content {
      left: 0%;
      top: 4rem;
      opacity: 1;
      visibility: visible;
    }

  .card:hover {
    height: 450px;
  }

  .card:hover img{
    left: 50%;
    height: 350px;
  }

  .card .content {
    width: 100%;
    left: 0;
    padding: 40px;
  }
}

@media screen and (max-width: 991px){
 
   
}

@media screen and (max-width: 768px){
    .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
        width: 90px;
        padding: 1rem;
    }

    .nav-pills .nav-link{
        width: 90px;
        padding: 1rem;
    }

    .movie-section .nav {
        padding: 1rem 0;
    }

    .movie-section .nav{
        justify-content: start;
    }

    .download-icon{
        display: block;
    }

    .download-icon-text{
        padding: 2.4rem 0;
    }

    .download-btn a{
        width: 100%;
    }

    .download-icon i {
        padding: 1.2rem;
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
}

 @media screen and (max-width: 980px) {
     .column {
         flex: 50%;
         display: block;
    }
}
 @media screen and (max-width: 700px) {
     .column {
         flex: 100%;
         display: block;
    }
}

@media screen and (max-width: 600px){
    .home-text h2{
        font-size: 5.5rem;
    }
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

.home-text h2{
    font-size: 4rem;
}

.home-btn a{
    max-width: 170px;
    padding: 1.5rem 1rem;
}

#toggle{
    width: 40px;
    height: 40px;
}

#toggle:before{
    width: 20px;
}

#toggle:after{
    width: 20px;
}

.card .content {
    padding: 30px;
  }
  .card:hover img{
    height: 300px;
  }

}

@media screen and(max-width:400px) {
    
}

/*Design created by Lucky Mehra 82*/
/*Develop by Ayush singh*/