@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
section
{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-height: 100vh;
	background: url(bg.jpg),url(mask.jpg);
	background-blend-mode: screen;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px 50px;
	display: flex;
	justify-content: space-between;
	align-itmes: center;
	z-index: 1000;
}
header .logo{
	position: relative;
	color: hotpink;
	text-decoration: none;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 2px;
}
header .toggle{
	position: relative;
	width: 40px;
	height: 40px;
	background: url(menu.png);
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
header .toggle.active{
	background: url(close-menu.png);
	background-size: 25px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.play{
	position: absolute;
	bottom: 40px;
	left: 50px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.play img{
	max-width: 40px;
}
.play span{
	font-weight: 600;
	color: #015b75;
	margin-left: 10px;
	letter-spacing: 1px;
}
.sci{
	position: absolute;
	bottom: 40px;
	right: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.sci li{
	list-style: none;
}
.sci li a{
	display: inline-block;
	text-decoration: none;
	transform: scale(0.6);
}
.content{
	padding: 50px;
}
.content h2{
	font-size: 9em;
	line-height: 1em;
	color: hotpink;
}
.navigation{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	transition: 0.2s;
}
.navigation.active{
	opacity: 1;
	visibility: visible;
}
.navigation ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.navigation ul li{
	list-style: none;
}
.navigation ul li a{
	display: inline-block;
	color: hotpink;
	font-size: 2em;
	text-decoration: none;
	font-weight: 300;
}
.navigation ul li a:hover{
	color: #ff286f;
}
.trailer{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10000;
	background: rgba(255,255,255,0.95);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}
.trailer.active{
	opacity: 1;
	visibility: visible;
}
.trailer video{
	max-width: 900px;
	outline: none;

}
.trailer .close{
	position: absolute;
	top: 50px;
	right: 55px;
	cursor: pointer;
	max-width: 25px;
}
@media (max-width: 991px)
{
	section
	{
		background-size: 200%;
	}
	.content h2{
		font-size: 15vw;
		color: hotpink;
		text-shadow: 0 5px 15px rgba(0,0,0,0.2);
	}
	.trailer video{
		max-width: 90%;
	}
}
.content{
  position: relative;
  width: 100%;
  display: flex;
}
.content .textBox
{
  position: relative;
  max-width: 600px;
}
.content .textBox h1{
  color: #fff;
  font-size: 4em;
  line-height: 1.2em;
  font-weight: 700;
}
.content .textBox p{
  color: #fff;
  margin-top: 20px;
}
.content .textBox a{
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #fff;
  color:  #333;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
}
.content .imgBox
{
  position: relative;
  z-index: 1;
  width: 600px;
  display: flex;
  justify-content: flex;
}
.content .imgBox img
{
  max-width: 500px;
}
.thumb
{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
}
.thumb li{
list-style: none;
display: inline-block;
margin: 0 10px;
cursor:pointer;
transition: 0.5s;
height: 70px;
background: rgba(255,255,255,0.25);
padding: 5px;
border: 2px solid rgba(255,255,255,0.25);
}
.thumb li.active
{
  border: 2px solid rgba(255,255,255,1);
}
.thumb li::before
{
  position: absolute;
  top: -200px;
  left: -100px;
  content: attr(data-text);
  white-space: nowrap;
  color: rgba(0,0,0,0.5);
  font-size: 8em;
  color: rgba(0,0,0,0.1);
  opacity: 0;
  font-weight: 700;
  pointer-events: none;
}
.thumb li.active::before
{
  opacity: 1;
}
.thumb li img{
  max-width: 60px;
}
.sci li{
  list-style: none;
}
.sci li a{
  display: inline-block;
  margin: 5px 0;
  transform: scale(0.6);
  filter: invert(1);
}

@media (max-width: 991px)
{
  .bg::before
  {
    display: none;
  }
  header{
    padding: 20px;

  }
  section{
    padding: 20px;
    padding-bottom: 120px;
  }
  .content{
    margin-top: 100px;
    flex-direction: column;
  }
  .content .textBox{
    max-width: 100%;

  }
  .content .textBox h1
  {
    font-size: 2.5em;
    margin-bottom: 15px;
    
  }
  .content .imgBox
  {
    max-width: 100%;
    justify-content:center;
  }
  .content .imgBox img{
    max-width: 300px;
  }
  .thumb li{
    margin: 0 3px;
    height: 55px;
  }
  .thumb li img{
    max-width: 40px; 
  }
  .thumb li::before{
    position: absolute;
    top: -150px;
    left: 0;
    font-size: 6em;
  }
}}


.wrapper{
  display: grid;
  margin: 20px 90px auto;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media (max-width: 700px) {
  .wrapper{
    margin: 200px auto;
  }
}
.wrapper .box{
  width: 350px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
   text-align: center;
}
.wrapper .box .front-face{
  background: #fff;
   text-align: center;
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .front-face .icon{
  height: 80px;
   text-align: center;
}
.box .front-face .icon i{
  font-size: 65px;
   text-align: center;
}
.box .front-face span,
.box .back-face span{
  font-size: 22px;
   text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.box .front-face .icon i,
.box .front-face span{
   text-align: center;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box .back-face{
   text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  width: 100%;
  padding: 30px;
  color: #fff;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .back-face p{
  margin-top: 10px;
   text-align: center;
}
.box:hover .back-face{
  opacity: 1;
   text-align: center;
  transform: rotateX(0deg);
}
.box:hover .front-face{
  opacity: 0;
   text-align: center;
  transform: translateY(-110px) rotateX(90deg);
}
.stats
{
  background: #000;
  padding-top: 250px;
  margin-top: -250px;
}
.stats h3,
.stats p
{
  color: #fff;
}
.statsBox
{
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  max-width: 100%;
  margin-top: 40px;
}
.statsBox h2
{
  color: #fff;
  font-size: 36px;
}
.statsBox h4
{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html{
  scroll-behavior: smooth;
}

section
{
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.bg
{
  position: absolute;
  top: 0;
  left:  0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.bg::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: rgba(0,0,0,0.1);
}

.content{
  position: relative;
  width: 100%;
  display: flex;
}
.content .textBox
{
  position: relative;
  max-width: 600px;
}
.content .textBox h1{
  color: #fff;
  font-size: 4em;
  line-height: 1.2em;
  font-weight: 700;
}
.content .textBox p{
  color: #fff;
  margin-top: 20px;
}
.content .textBox a{
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #fff;
  color:  #333;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
}
.content .imgBox
{
  position: relative;
  z-index: 1;
  width: 600px;
  display: flex;
  justify-content: flex;
}
.content .imgBox img
{
  max-width: 500px;
}
.thumb
{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
}
.thumb li{
list-style: none;
display: inline-block;
margin: 0 10px;
cursor:pointer;
transition: 0.5s;
height: 70px;
background: rgba(255,255,255,0.25);
padding: 5px;
border: 2px solid rgba(255,255,255,0.25);
}
.thumb li.active
{
  border: 2px solid rgba(255,255,255,1);
}
.thumb li::before
{
  position: absolute;
  top: -200px;
  left: -100px;
  content: attr(data-text);
  white-space: nowrap;
  color: rgba(0,0,0,0.5);
  font-size: 8em;
  color: rgba(0,0,0,0.1);
  opacity: 0;
  font-weight: 700;
  pointer-events: none;
}
.thumb li.active::before
{
  opacity: 1;
}
.thumb li img{
  max-width: 60px;
}
.sci li{
  list-style: none;
}
.sci li a{
  display: inline-block;
  margin: 5px 0;
  transform: scale(0.6);
  filter: invert(1);
}

@media (max-width: 991px)
{
  .bg::before
  {
    display: none;
  }
  header{
    padding: 20px;

  }
  section{
    padding: 20px;
    padding-bottom: 120px;
  }
  .content{
    margin-top: 100px;
    flex-direction: column;
  }
  .content .textBox{
    max-width: 100%;

  }
  .content .textBox h1
  {
    font-size: 2.5em;
    margin-bottom: 15px;
    
  }
  .content .imgBox
  {
    max-width: 100%;
    justify-content:center;
  }
  .content .imgBox img{
    max-width: 300px;
  }
  .thumb li{
    margin: 0 3px;
    height: 55px;
  }
  .thumb li img{
    max-width: 40px; 
  }
  .thumb li::before{
    position: absolute;
    top: -150px;
    left: 0;
    font-size: 6em;
  }
  header .navigation
  {
    display: none;
  }
  header .navigation.active
  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    z-index: 10;
  }
  header .navigation li a{
    font-size: 1.2em;
    margin: 5px 0;
  }
  .toggle{
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
    background:url(menu-new.png);
    backgrund-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100000;
  }
  .toggle.active{
    position: fixed;
    right: 20px;
    background: url(close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;

  }

}
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.wrapper{
  display: grid;
  margin: 20px 90px auto;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media (max-width: 700px) {
  .wrapper{
    margin: 200px auto;
  }
}
.wrapper .box{
  width: 350px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
   text-align: center;
}
.wrapper .box .front-face{
  background: #fff;
   text-align: center;
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .front-face .icon{
  height: 80px;
   text-align: center;
}
.box .front-face .icon i{
  font-size: 65px;
   text-align: center;
}
.box .front-face span,
.box .back-face span{
  font-size: 22px;
   text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.box .front-face .icon i,
.box .front-face span{
   text-align: center;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box .back-face{
   text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  width: 100%;
  padding: 30px;
  color: #fff;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .back-face p{
  margin-top: 10px;
   text-align: center;
}
.box:hover .back-face{
  opacity: 1;
   text-align: center;
  transform: rotateX(0deg);
}
.box:hover .front-face{
  opacity: 0;
   text-align: center;
  transform: translateY(-110px) rotateX(90deg);
}
.stats
{
  background: #000;
  padding-top: 250px;
  margin-top: -250px;
}
.stats h3,
.stats p
{
  color: #fff;
}
.statsBox
{
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  max-width: 100%;
  margin-top: 40px;
}
.statsBox h2
{
  color: #fff;
  font-size: 36px;
}
.statsBox h4
{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.header{
  font-size: 5vw;
  color: magenta;
  font-family: "poppins";
  text-align: center;
  align-content: center;
  margin-top: 5vw;
  margin-bottom: 2vw;
}

.gallery{
  display: flex;
}

.column{
  display: block;
  margin-right: .5vw;
  width: 100%;
}

.item{
  overflow: hidden;
  position: relative;
  margin-bottom: .5vw;
  box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
  border-radius: 1%;
}

.imginfo{
  opacity: 0;
  bottom: -.78vw;
  left: .6vw;

  padding: .35vw;
  color: black;
  position: absolute;
  font-size: .65vw;
  font-family: "Quicksand";
  transition: .2s;
  background-color: white;
}

.imglink:hover + .imginfo, .imginfo:hover{
  opacity: 1;
    bottom: .78vw;
}

.imgdesc{
  font-size: .58vw;
  color: dimgray;
  display: block;
}

.img{
  display: block;
  position: relative;
  transition: .2s;
  width: 100%;
  height: 100%;
}
*{
  padding:0;
  margin:0;

}

.menu-wrap{
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
}
.menu-wrap .toggler{
    position:absolute;
    top:0;
    left:0;
    z-index:2;
    cursor:pointer;
    width:80px;
    height:80px;
    opacity:0;
}
.menu-wrap .hamburger{
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    width:60px;
    height:80px;
    padding:1rem;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content: center;
}

.menu-wrap .hamburger>div{
    position:relative;
    width:100%;
    height:2px;
    background-color:#481dcc;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.4s ease;
}
.menu-wrap .hamburger >div:before,
.menu-wrap .hamburger >div:after{
    content:'';
    position:absolute;
    z-index:1;
    top:-10px;
    width:100%;
    height:2px;
    background:inherit;
}
.menu-wrap .hamburger>div:after{
    top:10px;
}
.menu-wrap .toggler:checked +.hamburger > div{
    transform:rotate(135deg);
}
.menu-wrap .toggler:checked +.hamburger > div:before,
.menu-wrap .toggler:checked +.hamburger > div:after {
    top:0;
    transform:rotate(90deg);
}
.menu-wrap .toggler:checked:hover+.hamburger>div{
    transform:rotate(225deg);
}
.menu-wrap .menu{
    position:fixed;
    font-size: 5px;
    top:0;
    left:0;
    width:100%;
    height:100%;
    visibility: hidden;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content: center;
}
.menu-wrap .menu>div{
    background:#48d1cc;
    border-radius:50%;
    width:60vh;
    height:60vh;
    display:flex;
    flex:none;
    z-index: 1000;
    align-items:center;
    justify-content: center;
    transform:scale(0);
    transition:all 000000001s ease;
}
.menu-wrap .menu > div>div{
    text-align:center;
    max-width:90vw;
    max-height:100vh;
    opacity:0;
    transition:opacity 0.4s ease;
}
.menu-wrap .menu>div>div>ul>li{
    list-style:none;
    color:#fff;
    font-size:1.5rem;
    padding:1rem;
    width:100%;
    height:100%;
}
.menu-wrap .menu>div>div>ul>li>a{
    color:inherit;
    text-decoration: none;
    transition:color 0.4s ease;
}
/*show menu*/
.menu-wrap .toggler:checked~ .menu{
    visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu>div{
    transform:scale(1);
    transition-duration: 0.4s ease;
}
.menu-wrap .toggler:checked ~ .menu>div>div{
    opacity:1;
    transition:opacity 0.4s ease;
}

.container{
  margin: 20px 40px;
  color:white;
}
.profiles{
  display:flex;
  justify-content: space-around;
  margin:20px 80px;
}
.profile{
  flex-basis:260px;
  margin-bottom:50px;
}
.profile .profile-img{
  height:260px;
  width:100px;
  border-radius:50%;
  filter: grayscale(100%);
  
  transition:400ms;

}
.profile:hover .profile-img{
  filter:grayscale(0);
}
.user-name{
  margin-top:30px;
  font-size:35px;
}
.profile p{
  font-size:16px;
  margin-top:20px;
  text-align: center;
}
@media only screen and (max-width: 1150px) {
  .profiles{
    flex-direction:column;
  }
  .profile{
    display:flex;
    flex-direction:column;
    align-items:center;

  }
}
@media only screen and (max-width:900px) {
  .heading{
    font-size:40px;
    color:white;
    text-align:center;
  }
  .heading span{
    font-size: 45px;
  }
  .profiles{
    margin:20px 0;
  }
  .profile p{
    margin:20px 10px 80px 10px;
  }
}
}

*::before,
*::after
{
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
.accordian-item{
  background-color: deeppink;
  border-radius: .4rem;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: .5rem 2px .5rem rgba(0,0,0,.1);
}
.accordian-link{
  font-size: 1.6rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.accordian-link i{
  color: pink;
  padding: .5rem;
}
.accordian-link .ion-md-remove{
  display: none;
}
.answer{
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: hotpink;
  transition: max-height 650ms;
}
.answer::before{
  content: "";
  position: absolute;
  width: .6rem;
  height: 90%;
  background-color: mediumpurple;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.answer p{
  color: rgba(255,255,255,1);
  font-size: 1.4rem;
  padding: 2rem;
}
.accordian-item:target .answer{
  max-height: 20rem;
}
.accordian-item:target .accordian-link .ion-md-add{
  display: none;
}
.accordian-item:target .accordian-link .ion-md-remove{
  
}


.container1{
  position: relative;
  display: flex;
  justify-content:center;
  align-items: center;
}
.container1 .card1{
  position: relative;
  width: 400px;
  height: 350px;
  margin: 20px;
  display: flex;
  transition: 0.5s;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(45deg,#1a2f3f,#7094ce);
}

.container1 .card img{
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  height: 400px;
  transition: 0.5s;

}

.container1 .card1:hover img{
  left: 75%;
  height: 500px;
}
.container1 .card1 .content1{
  position: relative;
  width: 50%;
  left: 20%;
  padding: 20px 20px 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
.container1 .card1:hover .content1{
  left: 0;
  opacity: 1;
  visibility: visible;
}
.container1 .card1 .content1 h2{
  color: white;
  text-transform: uppercase;
  font-size: 2.2em;
  line-height: 1em;
}
.container1 .card1 .content1 p{
  color: #fff;
}
.container1 .card1 .content1 a{
  position: relative;
  color: #111;
  background: #fff;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 991px)
{
  .container1 .card1{
    width: auto;
    max-width: 600px;
    align-items: flex-start;

  }
  .container1 .card1:hover
  {
    height: 600px;
  }
  .container1 .card1:hover img
  {
    left: 50%;
    height: 350px;
  }
  .container1 .card1 .content1
  {
    width: 100%;
    left: 0;
    padding: 40px;

  }

}
@media (max-width: 767px)
{
  .container1
  {
    flex-direction: column;
  }
  .container1 .card1 
  {
    margin: 40px 20px;
  }
}
@media (max-width: 420px)
{
  .container1 .card1 .content1
  {
    padding: 30px;
  }
  .container1 .card1:hover img{
    height: 300px;
  }
  }
}



section h2{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 25vw;
  text-align: center;
  font-weight: 000;
  line-height: .85rem;
  color: #fff;
  
  background: rgba(0,0,0,.9);
  mix-blend-mode: multiply;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.heading-container {
  text-align: center;
}

.heading {
  font-weight: 600;
}

.credit {
  margin: 10px 0px;
  color: #888888;
  font-size: 25px;
  transition: all 0.5s;
}

.credit a {
  color: inherit;
}

a,
.card__exit,
.card__icon {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

a::after {
  position: absolute;
  top: 25px;
  left: 0;
  content: "";
  width: 0%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
}

a:hover::after {
  width: 100%;
}

.main-container {
  padding: 30px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  margin: 20px;
  padding: 20px;
  width: 500px;
  min-height: 200px;
  display: grid;
  grid-template-rows: 20px 50px 1fr 50px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
}

.card:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

.card__exit {
  grid-row: 1/2;
  justify-self: end;
}

.card__icon {
  grid-row: 2/3;
  font-size: 30px;
}

.card__title {
  grid-row: 3/4;
  font-weight: 400;
  color: #ffffff;
}

.card__apply {
  grid-row: 4/5;
  align-self: center;
}

.card-1 {
  background: radial-gradient(#1fe4f5, #3fbafe);
}

.card-2 {
  background: radial-gradient(#fbc1cc, #fa99b2);
}

.card-3 {
  background: radial-gradient(#76b2fe, #b69efe);
}

.card-4 {
  background: radial-gradient(#60efbc, #58d5c9);
}

.card-5 {
  background: radial-gradient(#f588d8, #c0a3e5);
}

@media (max-width: 1600px) {
  .card-container {
    justify-content: center;
  }
}

.footer{
    background:linear-gradient(rgba(0,0,250,0.9),rgba(0,5,250,0.8));
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 15px;
}
.footer .footer-top{
    padding: 60px 0 30px 0;
}
.footer .footer-top .footer-des{
    margin-top: -90px;
    margin-bottom: 15px;
    background:#4973ff;
    color:#fff;
    border-top: 4px solid #4973ff;
    text-align: center;
    padding:30px 20px;
}
.footer .footer-top .footer-des h3{
    font-size:24px;
    margin: 0 0 2px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: bold;
}
.footer .footer-top .footer-des p{
    font-size:14px;
    line-height: 24px;
    margin-bottom: 0;
}
.footer .footer-top .social-links a{
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color:#4973ff;
    line-height:1;
    padding:8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align:center;
    width: 36px;
    height:36px;
    transition: 0.3s;
}
.footer .footer-top .social-links a:hover{
    background: #4973ff;
    color: #fff;
    text-decoration: none;
}
.footer .footer-top h4{
    font-size:16px;
    font-weight:bold;
    color: #fff;
    position:relative;
    padding-bottom: 12px;
}
.footer .footer-top .footer-links{
    margin-bottom: 30px;
}
.footer .footer-top .footer-links ul{
    list-style: none;
    padding: 0;
    margin:0;
}
.footer .footer-top .footer-links ul i{
    padding-right: 2px;
    color:#fff;
    font-size: 18px;
    line-height: 1;
}
.footer .footer-top .footer-links ul li{
    padding: 10px 0;
    display: flex;
    align-items:center;
}
.footer .footer-top .footer-links ul li:first-child{
    padding-top:0;
}
.footer .footer-top .footer-links ul a{
    color:#fff;
    transition:0.3s;
    display: inline-block;
    line-height: 1;
}
.footer .footer-top .footer-links ul a:hover{
    color: #4973ff;
}
.footer .footer-top .footer-newsletter form{
    margin-top:30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4;
}
.footer .footer-top .footer-newsletter form input[type="email"]{
    border:0;
    padding: 4px;
    width: calc(100% - 110px);
}
.footer .footer-top .footer-newsletter form input[type="submit"]{
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    border:0;
    background: none;
    font-size:16px;
    padding: 0 20px;
    background: #4973ff;
    color:#fff;
    transition: 0.3s;
    border-radius:4;
}
.footer .footer-top .footer-newsletter form input[type="submit"]:hover{
    background: #481dcc;
    color:white;
}
.gallery video {
  position: absolute;
  width: 100%;
  overflow: hidden;
}
.gallery video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.gallery h2{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 25vw;
  text-align: center;
  font-weight: 000;
  line-height: .85rem;
  color: #fff;
  
  background: rgba(0,0,0,.9);
  mix-blend-mode: multiply;
}