:root {
  color-scheme: only light;
}

* {
    margin: 0;
    top: 0%;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
/*The popup menu*/
.popup{
width: 300px;
height: auto;
background: #1D1A2B;
border-radius: 15px;
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%) scale(0.1);
text-align: center;
padding: 0 30px 30px;
color: #333;
visibility: hidden;
transition: transfrom 0.4s, top 0.4s; 
}

.open-popup{
visibility: visible;
top: 50%;
transform: translate(-50%, -50%) scale(1);

}

.popup img{
width : 100px;
height: 100px;
margin-top: -50px;
border-radius: 60%;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);

}
.popup h2{
font-size: 30px;
font-weight: bold;
color: white;
margin: 30px 0 10px;
}
.popup p{
color :white;
}

#bt23{
width: 250px;
margin-bottom: 100px;
padding: 10px 10px;
background: #EC615C;
color: #fff;
border: 0;
outline: none;
font-size: 18px;
border-radius: 25px;
cursor: pointer;
box-shadow: 0 5px 5px rgba(0,0,0,0.2);

}
#bt2 {

    border: none;
    outline: none;
    width: 310px;
    height: 80px;
    background-color: #EC615C;
    color: #fff;
    margin: 20px;
    padding: 18px 32px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1),
    0 15px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: opacity 0.9;
}

#bt2:hover {
    opacity: 0.9;
}


/*End of popup menu*/
/*Begining of Navigation bar styling*/
.navbar{
padding : 10px;
display : flex;
justify-content: space-between;
align-items: center;
background-color: #1D1A2B;
color: white;
}
.brand-title{
font-size: 1.5rem;
margin: 0.5rem;
}

.navbar-links ul{
margin: 0;
padding: 0;
display: flex;
}

.navbar-links li{
list-style: none;
}

.navbar-links li a{
text-decoration: none;
color: white;
padding: 1rem;
display: block;
}

.navbar-links li:hover{
background-color: #EC615C;
}

.toggle-button{
position: absolute;
top: 1rem;
right: 1rem;
display: none;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 21px; 
}
.toggle-button .bar{
height: 3px;
width: 100%;
text-decoration: none;
background-color: white;
border-radius: 10px;
}
/*End of navbar*/

.main {
    flex: 1;
    display: flex;
    align-items: center;
}

.right img {
    width: 100%;
}

.left {
    max-width: 45%;
    align-items: left;
    padding: 40px 64px;
}

.right {
    padding: 40px 48px;
    margin: auto;
    justify-content: center;
     align-content: center;
}

.title {
    color: #ff5360;
    font-size: 18px;
    font-weight: 1000;
    width: 80%;
    text-align: left;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 48px;
}

.msg {
    color:  #1D1A2B;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0.7px;
    line-height: 32px;
    margin-bottom: 48px;
}

button.cta {

    border: none;
    outline: none;
    width: 310px;
    height: 80px;
    background-color: #EC615C;
    color: #fff;
    font-size: 11px; 
    margin: 5px;
    padding: 18px 32px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1),
    0 15px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: opacity 0.9;
}

button.cta:hover {
    opacity: 0.9;
}

/*  -----    RESPONSIVENESS    -----  */

@media (max-width:900px) {
    header,
    .left,
    .right {
        padding-left: 40px;
        padding-right: 40px;
    }
    .toggle-button{
	display: flex;
	}
	
	.navbar-links{
	display:none;
	width: 100%;
	}
	
	.navbar{
	flex-direction: column;
	align-items: flex-start;
	}
	.navbar-links ul{
	width: 100%;
	flex-direction: column;
	}
	.navbar-links li{
	text-align: center;
	}
	.navbar-links li a {
	padding: 0.5rem 1rem;
	}
	.navbar-links.active{
	display: flex;
	}
}

@media (max-width: 900px) {

    .main {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
        max-width: 100%;
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .left {
        font-size: 0.8em;
    }

    .left * {
        width: 95%;
        margin-bottom: 32px;
        text-align: center;
    }

    button.cta {
        max-width: 60%;
    }

    .right img {
        width: 80%;
    }

    /* Nav Menu Responsiveness */

    
}
.social{
display: flex;
}

