/*Basic CSS*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

a:focus, input:focus, textarea:focus, button:focus{outline: 0 solid;}
a:hover{text-decoration: none;}
img{max-width: 100%; height: auto;}
h1,h2,h3,h4,h5,h6{margin:0 0 15px; font-weight: 700;}
html, body{
	height: 100%;
}
body{font-family: 'Open Sans', sans-serif; color:#222; font-weight: 400; font-size: 18px;}

.left-side h2 {
    position: relative;
    color: #fff;
    z-index: 2;
    text-align: center;
    margin-top: 40px;
    padding: 0px;
    font-weight: 600;

}
.left-side h2:after {
       position: absolute;
    top: 50%;
    left: 50%;
    height: 110px;
    width: 110px;
    background: #FFCD43;
    content: "";
    opacity: .1;
    border-radius: 50%;
    z-index: -1;
    margin-left: -55px;
    margin-top: -55px;
}

.left-side{
position: fixed;
height: 100%;
width: 20%;
background-color: #222;
}
.left-side ul{
	margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: block;
    margin-top: 16vh;
}
.left-side ul li{
	padding-bottom: 2%;
}


.right-side{
	background-image: url(../img/bgsky.jpg);
	background-position: center;
	background-size: cover;
	background-color: #666;
	position: relative;
	z-index: 2;
margin-left:20%;
width: 80%;
height: 100%;
display: table;

}
.right-side:after{
	content: "";
	height: 100%;
	width: 100%;
	background-color: #000;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .5;
}

.right-side span,.copyright-area span{color:#FFCD43;}
.right-side h1{
	color:#fff;
	font-size: 4rem;
}
.contents{
	display: table-cell;
	vertical-align: middle;
	padding-left:10%;
}

.contents p {
    color: #fff;
}
.left-side ul li a {
    font-weight: 600;
    color: #bbb;
    padding: 4px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
        padding-bottom: 6px;
    margin-bottom: 20px;
}
.active {border-bottom:2px solid #FFCD43; 
	color:#FFCD43; }



.social-links {
   text-align: center;
    margin-top: 8vh;
    
}
.social-links a {
    color: #fff;
    text-align: center;
    padding-right: 15px;font-size: 13px;
}

.copyright-area {
    text-align: center;
    color: #ddd;    font-size: .9rem;
    padding: 20px 0px;
}

.contents h1 span{
    position: relative;
    z-index: 2;

}

.contents h1 span:after {
    content: "";
    bottom: 13px;
    right: -12%;
    background: #FFCD43;
    height: 4px;
    width: 30px;
    position: absolute;
    z-index: -1;
}
.transparent-btn{
	    display: inline-block;
    background-color: hsla(0, 0%, 100%, 0.6);
    padding: 10px 25px;
    margin-top: 60px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #444;
    transition:.5s;
    border:none;
}
.transparent-btn:hover {
    color: #383326;
    background: #fff;
}

.modal-header button.close {
    color: red;
}

.popover-body {
    padding: .5rem .75rem;
    color: #212529;
    background: skyblue;
    border-radius: 1px;
}