h1 {font-size:1.9rem;}
h2 {font-size:1.7rem;}
h3 {font-size:1.5rem;}
h4 {font-size:1.2rem; display:inline;}
/* TOP MENU BAR STYLE STARTS */

.button {
padding:0.06rem 0.6rem 0.07rem 0.6rem; 
font-size:1.9vmin; 
background:linear-gradient(#74e3f3,#74e3f3,#74e3f3);	
border:0; 
color:#052035; 
cursor: pointer;
border-radius:2px;
letter-spacing:0.05rem;
}

.button:hover{
   background:#fff;
   color:#000;
}
.button:active {
  background:linear-gradient(#b57ffb,#7243af,#502982);
  transform: translateY(2px);
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.top-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.2vw 1.5vw 0.2vw 1.5vw;
    background:linear-gradient(#072944,#041b2d);
	min-height:30px;
	
}
.top-bar span{
	color: #ddd;
    font-size:calc(4px + 0.6vw);
}
.top-bar ul{
	list-style: none;
	display: flex;
}
.top-bar li{
	margin: 0px 0.5vw;
}
.top-bar a{
	color: #ddd;
}
.top-bar a:hover{
	color: #74e3f3;
}

/* TOP MENU BAR STYLE ENDS */


hr.hr-1 {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255,255,255, 0), rgba(255,255,255, 0.6),rgba(255,255,255, 1),rgba(255,255,255, 0.6), rgba(255,255,255, 0));
  width:100%;
}


/*DEFAULT*/
*{
box-sizing:border-box;
}

:root{
--white:#fff;
--darkred:#cd2027;
--darkblue:#061221;
}

body{
margin: 0;
overflow-x: hidden;
color:#fff;
font-family: 'Source Sans Pro', sans-serif;
}

a,li,button,i,.button{
text-decoration: none;
outline: none !important;
list-style: none;
transition: 0.5s;
}

.title{
font-family: 'Merriweather', serif;
font-size:2em;
font-weight:600;
}

.sub-title{
font-size:1.3em;
font-weight:200;
}

.btn1{
display:inline-block;
text-align:center;
border-radius:40px;
padding:20px 40px;
}

.btn1{
background-color:var(--darkblue);
color:var(--white);
}

.btn1:hover{
background:var(--white);
color:var(--darkred);
}


@media (max-width:920px){
.title{
font-size:1.3em;
}
.sub-title{
font-size:1em;
}
.btn1{
padding:15px 30px;
}
}

/*TOP NAVIGATION*/
header{
position:fixed;
top:2.5rem;
width:100%;
z-index:99999;
transition:0.5s;
}

.topnav {
overflow: hidden;
background-color: rgba(95,227,243, 0.8);
width:95%;
margin:auto; 
box-shadow:0px 6px 16px -6px rgba(95,227,243,0.4);
transition:0.5s;

}

.topnav a {
float: left;
display: block;
color: #fff;
text-align: center;
padding: 1.7vw 0.9vw;
margin:auto 1rem;
text-decoration: none;
font-size: 0.80rem;
font-weight:700;
position:relative;
letter-spacing:0.05rem;
}

.logo{
width:13vw;
position:absolute;
top:0.25rem;
border-radius:5px;
}

#icon{
float:right;
}

#active{
display:flex;
font-weight:bold;
font-family: 'Titillium Web', sans-serif;
}

#active:hover{
color:#fff;
}

.topnav .icon {
display: none;

}

.dropdown {
float: left;
overflow: hidden;

}

.dropdown .dropbtn {
font-size: 15px;    
border: none;
outline: none;
color: white;
padding: 24px 16px;
background-color: inherit;
font-family: inherit;
margin:auto 1rem;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-top:2px solid #2e72ef;
}

.dropdown-content a {
float: none;
color: black;
padding: 8px 16px;
margin:auto 0rem;
text-decoration: none;
display: block;
text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
color: #052035;
}

.dropdown-content a:hover {
background-color: #ddd;
color: black;
}

.dropdown:hover .dropdown-content {
display: block;
}

@media screen and (max-width: 1120px) {
.logo{
width:90px;
padding:0.8vw 0 0 0;
}
.dropdown .dropbtn {
padding: 14px 16px;
}
.topnav a:not(:first-child), .dropdown .dropbtn {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
#active{
display:none;
}
}

@media screen and (max-width: 1120px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
padding: 13px 16px;
}
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {
display: block;
width: 100%;
text-align: left;
}
}