@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;

}

body
{
    justify-content: center;
    align-items: center;
    background: #161623;
}

/*menu*/
.main-panel {
	width: 100%;
	float: left;
	padding: 3em;
    background-color: rgba(255, 255, 255, 0.05);   
}

.logo {
	font-size: 40px;
	font-weight: 400;
    color: #fff;
    display: inline-flex;
    
}
.logo h1
{
    font-weight: 300;
    font-size: 28px;
}
.nav 
{
	float: right;
}
.nav a {
    padding: 20px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 400;
	margin-left: 20px;
	color: #fff;
    display: inline;
}
.main-panel a:hover 
{
    color: rgba(165, 143, 226, 0.5);
}

.burger
{
    display: none;
    position: relative;
    z-index: 50;
    align-items: center;
    justify-content: flex-end;
    width: 30px;
    height: 18px;
    cursor: pointer;
}
.burger span
{
    height: 2px;
    width: 100%;
    transform: scale(1);
    background-color: #fff;
}
.burger::before, .burger::after
{
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease 0s;
}
.burger::before
{
    top: 0;
}
.burger::after
{
    bottom: 0;
}
.burger.active span
{
    transform: scale(0);
}
.burger.active::before
{
    top: 50%;
    transform: rotate(-45deg) translate(0, 50%);
}
.burger.active::after
{
    top: 50%;
    transform: rotate(45deg) translate(0, 50%);
}
.open{
    display: flex !important;
}
@media (max-width: 767px)
{
    .burger
    {
        display: flex;
        float: right;
        top: 20px;
        
    }
    .nav
    {
        display: none;
        flex-direction: column;
        position: relative;
        height: 50%;
        width: 50%;
        top: 20px;
        z-index: 5;
        overflow-y: auto;
        animation: burgerAnimation 0.4s;
        opacity: 1;
        text-align: center;
        float: left;
    }
    .nav a
    {
        flex-direction: column;
        row-gap: 30px;
        font-size: 14px;
    }
    .logo
    {
        float: left;
    }
    .logo img
    {
        height: 40px;
    }
    .logo h1
    {
        font-size: 18px;       
    }
}
@keyframes burgerAnimation {
    from {opacity: 0}
    to {opacity: 1}
}



/*End menu*/

.container
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
}
.container .card
{
    position: relative;
    width: 300px;
    height: 420px;
    margin: 40px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}
.container .card .content
{
    padding: 20px;
    text-align: center;
    transform: translateY(100px);
    opacity: 0.2;
    transition: 0.5s;
}
.container .card:hover .content
{
    transform: translateY(100px);
    opacity: 0.5;
}
.container .card h3
{
    position: absolute;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8em;
    font-weight: 400;
    color: #fff;
    z-index: 1;
}
.container .card .content img
{
    position: relative;
    height: 620px;
    text-align: center;
   
}
.container .card a
{
    position: absolute;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 300px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.container .card a:hover
{
    background: #161623;
    color: #fff;
    opacity: 1;
}

/* card 2 */
.container .card2
{
    position: relative;
    width: 1200px;
    height: 500px;
    margin: 40px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}
.container .card2 .content
{
    padding: 20px;
    text-align: center;
    transform: translateY(100px);
    opacity: 0.2;
    transition: 0.5s;
}
.container .card2:hover .content
{
    transform: translateY(0px);
    opacity: 0.5;
}
.container .card2 .content h2
{
    position: absolute;
    transform: translateY(100px);
    top: -80px;
    right: 30px;
    font-size: 8em;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.container .card2 h3
{
    position: absolute;
    margin-bottom: 300px;
    text-align: center;
    font-size: 2em;
    font-weight: 400;
    color: #fff;
    z-index: 1;
}
.container .card2 p
{
    position: absolute;
    font-size: 1.4em;
    color: #fff;
    font-weight: 300;
    text-align: center;
    padding: 20px;
    z-index: 1;

}
.container .card2 .content img
{
    position: relative;
    width: 1200px;
    text-align: center;

}
.container .card2 a
{
    position: absolute;
    padding: 8px 20px;
    margin-top: 300px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 400;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.container .card2 a:hover
{
    background: #161623;
    color: #fff;
}
@media(max-width: 574px){
    .container .card2 h3
{
    margin-bottom: 380px;
}
.container .card2 a
{  
    margin-top: 380px;
}
}

/* end card 2 */

/* title */
.about
{
    position: relative;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
}
.title
{
    text-align: center;   
}
.title h2
{
    color: white;
    font-size: 1.8em;
    margin-top: 30px;
    font-weight: 400;
}
.text
{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}
.text p
{ 
    font-weight: 200;
    font-size: 1.1em;
    color: white;
    text-align: justify;
    padding: 10px;
}
@media(max-width: 820px){
    .text p
    {
        font-size: 14px;
    }
}
.title1
{
    position: relative;
    text-align: center;
    width: 100%;
    
}
.title1 h2
{
    color: white;
    font-size: 1.8em;
    margin-top: 30px;
    font-weight: 400;
}
.title1 .text p
{
    color: white;
    font-size: 1.4em;
    margin: 20px;  
    max-width: 1200px;

}

/* end title */

/* Form */

.contactform
{
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin: auto;
    padding: 30px;
}
input[type=text], select, textarea {
    width: 700px; 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 10px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}
input[type=email], select, textarea {
    width: 700px; 
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}
input[type=submit] {
    padding: 8px 20px;
    margin-top: 10px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    cursor: pointer;
}
input[type=submit]:hover {
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(165, 143, 226, 0.5);
}
.contactform h2
{
    color: white;
    font-size: 1.8em;
    font-weight: 400;
    padding: 30px;   
}
.check
{
    color: #fff;
    font-size: 12px;
    padding: 20px;
    font-weight: 300;
}
input[type=checkbox], a
{
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}

@media(max-width: 765px){
    input[type=text], select, textare
    {
        width: 100%;
    }
    input[type=email], select, textarea
    {
        width: 100%;
    }
  }

/* End form */

/* footer */


.row1{
	display: flex;
	flex-wrap: wrap;
    margin: auto;
}
ul{
	list-style: none;
}
.footer{
    
    padding: 40px;
    
    
}
.footer-col{
    padding-left: 170px; 
}
.footer-col h4{
	font-size: 14px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 20px;
	font-weight: 400;
	position: relative;
}

.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: rgba(165, 143, 226, 0.5);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 12px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;

}
.footer-col ul li a:hover{
	color: #ffffff;
}
.footer-logo img
{
    width: 50px;
}

/* .footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: left;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
} 
*/

.f_copyright {
    text-align: center;
    margin-top: 25px;
}

.copyright {
  font-size: 10px;
  color: #bbbbbb;
}


@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    padding-left: 20px;
}
}

/*end  footer */



