<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*google fonts*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;1,500&amp;display=swap');

*{
    margin: 0;
    padding: 0;
}



body {
    font-family: 'Poppins', sans-serif;
   /*background: #121211;*/
   /*place-items: center;*/
   display: grid;
}

header {
    position: relative;
    width: 100%;
    height: 126%;
    /*border: 1px solid #fff;*/
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
  }

header .menu_side , .song_side {
    width: 25%;
    /*border: 1px solid #fff;*/
    background:#d9dbdf;
    color: #2d0909;
}
header .song_side {
  width: 75%;
  background: #d9dbdf;
}

header .master_play {
   width: 100%;
    height: 70px;
    border: 2px solid #1e1d1d;
    background: #d9dbdf;
/*box-shadow: 0px 3px 8px #111727;*/
}

header .menu_side h1 {

    margin: 15px 100px 0px 25px;
    font-style: oblique;
    margin-right: 5px;
}
header .menu_side h1 span {
    color: red;
}

header .menu_side .playlist {
   margin: 40px 0px 0px 30px;
}

header .menu_side .playlist h4 {
    padding-bottom: 10px;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .3s linear infinite;
    text-align: center;
}

header .menu_side .playlist h4:hover {
    color:#a51303;

}

header .menu_side .playlist h4 span {
    position: relative;
    margin-right: 35px;
}

header .menu_side .playlist h4 span::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #4c5262;
    border-radius: 50%;
    top: -5px;
    transition: .3s linear;
}

header .menu_side .playlist h4 :hover span::before {
    border: 2px solid #fff;
}

header .menu_side .playlist h4 .bi {
    display: none;
}

header .menu_side .playlist .active {
    color: black;
}

header .menu_side .playlist .active span {
    display: none;
}

header .menu_side .playlist .active .bi {
    display: flex;
    margin-right: 20px;
}

header .menu_side .menu_song {
    width: 100%;
    height:420px;
    /*border: 1px solid #fff;*/
    margin-top: 40px;
    overflow: auto;
}

header .menu_side .menu_song::-webkit-scrollbar {
    display: none;
}

header .menu_side .menu_song li {
    list-style-type: none;
    position: relative;
    padding: 5px 0px 5px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s linear;
}

header .menu_side .menu_song li:hover {
    background: rgb(105, 105, 105, .1);
}

header .menu_side .menu_song li span {
    font-size: 12px;
    font-weight: 600;
    color: #4c5262;
}

header .menu_side .menu_song li img {
    width:32px;
    height: 32px;
    margin-left: 25px;
}

header .menu_side .menu_song li h5 {
    font-size: 13px;
    margin-left: 15px;
    width: 170px;
    /*border: 1px solid #fff;*/
    overflow: hidden;
    text-overflow: ellipsis;
}

header .menu_side .menu_song li h5 .subtitle {
    font-size: 10px;
    color: #4c5262;
}

header .menu_side .menu_song li .bi {
    position: absolute;
    right: 15px;
}

header .master_play {
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

header .master_play .wave {
    width: 30px;
    height: 30px;
    /*border: 1px solid #fff;*/
    padding-bottom: 5px;
    display: flex;
    align-items: flex-end;
    margin-right: 10px;
}

header .master_play .wave .wave1 {
    width: 3px;
    height: 10px;
    background: black;
    margin-right: 3px;
    border-radius: 10px 10px 0px 0px;
    animation:unset
}

header .master_play .wave .wave1:nth-child(2) {
    height: 13px;
    margin-right: 3.5px;
}

header .master_play .wave .wave1:nth-child(3) {
    height: 8px;
}

/*=============================================JAVASCRIPT CLASSES========================================================================*/

header .master_play .active1 .wave1 {
    animation: wave .5s linear infinite;
}

header .master_play .active1 .wave1:nth-child(2) {
    animation-delay: .4s;
}

header .master_play .active1 .wave1:nth-child(3) {
    animation-delay: .8s;

}




@keyframes wave {
    0%{
        height: 10px;
    }
    50%{
        height: 15px;
    }
    100%{
        height: 10px;
    }
   
}

header .master_play img {
    width: 40px;
    height: 40px;
}

header .master_play h5 {
    width: 130px;
    /*border: 1px solid #fff;*/
    margin-left: 15px;
    color: black;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1px;
}

header .master_play h5 .subtitle {
   font-size: 11px;
   color: black; 
   width: 100%;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}


/*==================================================PLAY BAR==============================================================================*/



header .master_play .icon {
    font-size: 25px;
    color: black;
    margin: 0px 20px 0px 40px;
    outline: none;
    display: flex;
    align-items: center;
}

header .master_play .icon .bi {
    cursor: pointer;
    outline: none;
}

header .master_play .icon .shuffle {
    font-size: 17px;
    margin-right: 10px;
    width: 17.5px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

header .master_play .icon #download_music {
    font-size: 20px;
    margin-left: 10px;

}

header .master_play .icon .bi:nth-child(3) {
    border: 1px solid rgb(105, 105, 105, .1);
    border-radius: 50%;
    padding: 1px 5px 0px 7px;
    margin: 0px 5px;
}

header .master_play span {
    color: black;
    width: 32px;
    /*border: 1px solid #fff;*/
    font-size: 11px;
    font-weight: 400;
}

header .master_play #currentStart {
    margin: 0px 0px 0px 20px;
}

header .master_play .bar {
    position: relative;
    width: 43%;
    height: 2px;
    background: rgb(105, 105, 107, .1);
    margin: 0px 15px 0px 10px;
}

header .master_play .bar .bar2 {
    position: absolute;
    background: black;
    width: 0%;
    height: 100%;
    top: 0;
    transition: 1s linear;
}

header .master_play .bar .dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: black;
    border-radius: 50%;
    left: 0%;
    top: -1.5px;
    transition: 1s linear;
}

header .master_play .bar .dot::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid black;
    border-radius: 50%;
    left: -7px;
    top: -6.5px;
    box-shadow: inset 0px 0px 3px black;
}

header .master_play .bar input {
    position: absolute;
    width: 100%;
    top: -7px;
    left: 0;
    cursor: pointer;
    z-index: 99999999999999999999999999999999999999;
    opacity: 0;
}

/*========================================================VOLUME==========================================================================*/

header .master_play .vol {
    position: relative;
    width: 100px;
    height: 2px;
    background: rgb(105, 105, 107, .1);
    margin-left: 50px;
}

header .master_play .vol .bi {
    position: absolute;
    color: black;
    font-size: 25px;
    top: -17px;
    left: -30px;
}

header .master_play .vol input {
    position: absolute;
    width: 100%;
    top: -6px;
    left: 0;
    cursor: pointer;
    z-index: 99999999999999999999999;
    opacity: 0;
}

header .master_play .vol .vol_bar {
    position: absolute;
    background: black;
    width: 50%;
    height: 100%;
    top: 0;
    transition: 1s linear
}

header .master_play .vol .dot { 
    position:absolute;
    width: 5px;
    height: 5px;
    background: black;
    border-radius: 50%;
    left: 0%;
    top: -1.5px;
    transition: 1s linear;
}

header .master_play .vol .dot::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid black;
    border-radius: 50%;
    left: -7px;
    top: -6.5px;
    box-shadow: inset 0px 0px 3px black;
}
header .song_side {
    z-index: 2;
}

header .song_side::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 260px;
    background: url();
    z-index: -1;
}
 
/*==================================================================NAVBAR=================================================================*/

header .song_side nav {
    width: 90%;
    height: 10%;
    /*border: 1px solid #fff;*/
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .song_side nav ul {
    display: flex;
}

header .song_side nav ul li {
    list-style: none;
    position: relative;
    font-size: 20px;
    font-weight: bolder;
    color: black;
    margin-right: 25px;
    cursor: pointer;
    transition: .3s linear;
    transition: font-size 0.5s ease-in-out;

}
header .song_side nav ul li:hover {
    transform: translateY(-6px);
    transition: 0.6s;
    color: red;
    animation: color-change 1s;
    animation-fill-mode: backwards;
}
/* 
header .song_side nav ul li:nth-child(1) {
    color: black;

} */
header .song_side nav ul li span {
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: red;
    bottom: -4px;
    left: 0;
    border-radius: 20px;
}
header .song_side nav ul li span .no-underline {
    text-decoration: none;
}

/*===================================================================SEARCH==================================================================*/


header .song_side nav .search {
    position: relative;
    /*width: 40%;*/
    padding: 1px 10px;
    border-radius: 20px;
    color: black;
}

header .song_side nav .search::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(184, 184, 184, .1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: -1;
}

header .song_side nav .search input {
   background: none;
   border: none;
   outline: none;
   padding: 0px 10px;
   color: black;
   font-size: 15px;
}

header .song_side nav .user {
    position: relative;
    width: 50px;
    height: 50px;
    /*border: 1px solid #fff;
    border-radius: 50%;*/
}

header .song_side nav .user i {
    font-size: 30px;
}
/*=========================================================CONTENT============================================================================*/

header .song_side .content {
    width: 90%;
    height: 30%;
    /*border: 1px solid #fff;*/
    margin: auto;
    padding-top: 20px;
}

header .song_side .content h1 {
    font-size: 25px;
    font-weight: 600;
}

header .song_side .content p {
    font-size: 14px;
    font-weight: 400;
    color: black;
    margin: 5px;
}

/*=====================================================Buttons=============================================================================*/

header .song_side .content .buttons {
    margin-top: 15px;
}

header .song_side .content .buttons button {
    width: 130px;
    height: 30px;
    border: 2px solid red;
    outline: none;
    border-radius: 20px;
    background: red;
    font-weight: bold;
    color: black;
    cursor: pointer;
    transition: .3s linear;
}

header .song_side .content .buttons button:hover {
    background: transparent;
    color: red;
    
}

header .song_side .content .buttons button :nth-child(2) {
    background: none;
    color: #36e2ec;
}

header .song_side .content .buttons button :nth-child(2):hover {
    background: #36e2ec;
    color: #fff;
}
/*===================================================POPULAR SONGS=====================================================================*/

header .song_side .popular_songs {
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 15px;
    /*border: 1px solid #fff;*/
}

header .song_side .popular_songs .h4 {
    display: flex;
    font-size: 25px;
    align-items: center;
    justify-content: space-between;
    color: #a51303;
}

header .song_side .popular_songs .h4 .bi {
    color: #a4a8b4;
    cursor: pointer;
    transition: .3s linear;
}

header .song_side .popular_songs .h4 .bi:hover {
    color: black;
}

header .song_side .popular_songs .pop_song {
    width: 100%;
    height: 150px;
    margin-top: 15px;
    display: flex;
    /*border: 1px solid #fff;*/
    overflow: auto;
    scroll-behavior: smooth;
}

header .song_side .popular_songs .pop_song::-webkit-scrollbar {
    display: none;
}



header .song_side .popular_songs .pop_song li {
    min-width: 100px;
    height: 140px;
    list-style-type: none;
    margin-right: 10px;
    transition: .3s linear;
}

header .song_side .popular_songs .pop_song li:hover {
    background: rgb(105, 105, 170, .1);
}

header .song_side .popular_songs .pop_song li .img_play {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .song_side .popular_songs .pop_song li .img_play img {
    width: 100%;
    height: 100%;
}

header .song_side .popular_songs .pop_song li .img_play .bi {
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    transition: .3s linear;
    opacity: 0;
}

header .song_side .popular_songs .pop_song li:hover .img_play .bi {
    opacity: 1;
}

header .song_side .popular_songs .pop_song li h5 {
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 10px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

header .song_side .popular_songs .pop_song li h5 .subtitle {
    font-size: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #4c5262;
}

/*================================================================POPULAR ARTIST===========================================================*/

header .song_side .popular_artists {
    width: 90%;
    height: auto;
    /*border: 1px solid #fff;*/
    margin: auto;
    margin-top: 15px;
}

header .song_side .popular_artists .h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #a51303;
    font-size: 19px;
}

header .song_side .popular_artists .h4 .bi {
    color: #a4a8b4;
    cursor: pointer;
    transition: .3s linear;
}

header .song_side .popular_artists .h4 .bi:hover {
    color: black;
}

header .song_side .popular_artists .item {
    width: 100%;
    height: auto;
    margin-top: 15px;
    display: flex;
    /*border: 1px solid #fff;*/
    overflow: auto;
    scroll-behavior: smooth;
}

header .song_side .popular_artists .item::-webkit-scrollbar {
  display:none;
}

header .song_side .popular_artists .item li {
    list-style-type: none;
    position: relative;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    cursor: pointer;
}

header .song_side .popular_artists .item li img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
/*=======================================================FOOTER STYLING================================================*/

footer {
    background-color: #d9dbdf;
    color: black;
    padding: 40px 0;
    margin-top: 40px;
  }
  
  footer h2 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: red;
  }
  
  footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  footer ul li {
    margin-bottom: 10px;
  }
  
  footer ul li a {
    color: #fff;
  }
  
  .social-icons {
    margin-top: 5px;
    margin-bottom: 10px;
    height: 20px;
  }
  
  .social-icons li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .social-icons li:last-child {
    margin-right: 10px;
  }
  
  .social-icons li a {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: #333;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
  }
  
  .social-icons li a:hover {
    background-color: #333;
    color: #fff;
  }
  
   /* footer hr {
    border-top: 1px solid black;
    margin-top: 20px;
    margin-bottom: 20px;
  }  */
  
  footer p {
    font-size: 14px;
    margin-bottom: 0;
  }
  footer .row{
    text-align: center;
  }
  .contact{
	background: #d9dbdf;
	padding:0px 0px;
    margin-bottom: 10px;
 }
/*  ================================================ Contact Form  ================================================================= */
.section {
	clear: both;
	padding: 5px;
	margin: 5px;
}
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1;
}
.col{
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}
.col:first-child{
	margin-left:0;
}	
.span_2_of_3 {
	width: 63.1%;
	padding:1.5%; 
}
.span_1_of_3 {
	width: 29.2%;
	padding:1.5%; 
}
.span_2_of_3  h3,
.span_1_of_3  h3 {
	display: block;
	padding: 0px 0px 0px 0px;
	font: bold 18px/16px "Arial";
	color: #000;
    margin-bottom: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	text-transform: uppercase;
}
.contact-form{
	position:relative;
	padding-bottom:10px;
}
.contact-form div{
	padding: 7px 0;
}
.contact-form span{
	display:block;
	font-size:0.8125em;
	color: #333;
	padding-bottom:5px;
	font-family :verdana, arial, helvetica, helve, sans-serif;
}
.contact-form input[type="text"],.contact-form textarea{
		    padding:8px;
			display:block;
			width:98%;
			background: rgb(184, 184, 184, .3);
            backdrop-filter: blur(10px);
            border-radius: 15px;
			border: none;
			outline:none;
			color:black;
			font-size:0.9em;
			font-family:Arial, Helvetica, sans-serif;
			box-shadow: inset 0px 0px 3px #d9dbdf;
			-webkit-box-shadow: inset 0px 0px 3px #d9dbdf;
			-moz-box-shadow: inset 0px 0px 3px #d9dbdf;
			-o-box-shadow: inset 0px 0px 3px #d9dbdf;
			
}
.contact-form textarea{
		resize:none;
		height:120px;		
}
.contact-form input[type="submit"]{
	padding: 10px 20px;
	display: block;
	background: url(../images/head1.png)repeat-x;
	border: none;
	font: bold 12px "Arial"!important;
	color: white;
	text-align: center;
	cursor: pointer;
    background-color: black;
	/* -moz-transition: background 0.5s ease;
	-o-transition: background 0.5s ease;
	-webkit-transition: background 0.5s ease; */
	margin-bottom: 1em;
	margin-right: 3px;
	border-radius: 3em; 
	cursor:pointer;
	border:none;
}
.contact-form input[type="submit"]:hover{
	background: url(../images/head1h.png)repeat-x;
	text-decoration: none !important;
	/* -moz-transition:  all 0.2s ease;
	-o-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease; */
    background-color: black;
}
.contact-form input[type="submit"]:active{
	background-position: left bottom;
	text-decoration: none !important;
	-moz-transitionbackground: 0.2s ease;
	-o-transitiobackground: 0.2s ease;
	-webkit-transitionbackground: 0.2s ease;
    background-color: red;
}
.company_address{
	padding-top:26px;
}
.company_address p{
	font-size: 0.9125em;
	color: black;
	line-height: 1.6em;
	font-family: verdana, arial, helvetica, helve, sans-serif;
}
.company_address p span{
	text-decoration:underline;
	color:#FC3019;
	cursor:pointer;
}
.map{
	border:1px solid #C7C7C7;
	margin-bottom:15px;
}
/*****=============================================== Media Quries ============================================================*****/




@media only screen and (max-width: 1024px) {
	.wrap{
		width:95%;
	}	
}
/*  GO FULL WIDTH AT LESS THAN 800 PIXELS */

@media only screen and (max-width: 800px) {
	.wrap{
		width:95%;
	}
	.span_2_of_3 {
		width:94%;
		padding:3%; 
	}
	.col{ 
		margin: 1% 0 1% 0%;
	}
	.span_1_of_3 {
		width:94%;
		padding:3%; 
	}
}

/*  GO FULL WIDTH AT LESS THAN 640 PIXELS */

@media only screen and (max-width: 640px) and (min-width: 480px) {
	.wrap{
		width:95%;
	}
	.span_2_of_3 {
		width:94%;
		padding:3%; 
	}
	.col{ 
		margin: 1% 0 1% 0%;
	}
	.span_1_of_3 {
		width:94%;
		padding:3%; 
	}
   
   .contact-form input[type="text"],.contact-form textarea{
		width:97%;
	}
}
/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.wrap{
		width:95%;
	}
	.span_2_of_3 {
		width:90%;
		padding:5%; 
	}
	.col { 
		margin: 1% 0 1% 0%;
	}
	.span_1_of_3 {
		width:90%;
		padding:5%; 
	}
	.contact-form input[type="text"],.contact-form textarea{
		width:92%;
	}
}

/* Styles for the GALLERY page================================================================================= */


.gallery-section {
  margin:  0;
  padding: 0 ;
}
.gallery-section h2{
    background: #f64f3d;
    text-align: center;
    border-radius: 15px;
    padding: 5px;
}
.artists-section {
  display:flex;
  flex-wrap:wrap;
  margin:  0;
  padding: 0;
}

.artist {
  /*background-color: #f5f5f5;
  border: 1px solid #ccc;*/
  border-radius: 0.5rem;
  flex-basis: calc(33.33% - 2rem);
  margin-bottom: 2rem;
  padding: 1rem;
}

.artist img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 200px;
}

.artist h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  /*text-align: center;*/
}

.artist span{
	display:block;
	font-size:0.8125em;
	color: #333;
	padding-bottom:9px;
	font-family :verdana, arial, helvetica, helve, sans-serif;
}

.artist input[type="text"] {
    padding:8px;
    display:block;
    width:93%;
    background: rgb(184, 184, 184, .3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: none;
    outline:none;
    color:black;
    font-size:12px;
    font-family:Arial, Helvetica, sans-serif;
    box-shadow: inset 0px 0px 3px #d9dbdf;
    -webkit-box-shadow: inset 0px 0px 3px #d9dbdf;
    -moz-box-shadow: inset 0px 0px 3px #d9dbdf;
    -o-box-shadow: inset 0px 0px 3px #d9dbdf;
    
}


/*=====================================================LOGIN&amp;REGISTER=====================================================*/

.wrapper {
   Position: relative ;
    width: 400px;
    height: 440px;
    background: transparent;
    border: 1px solid rgb(255, 255, 255, .5);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
   transition: height .2s ease;
   margin-top: 12%;
   margin-left: 20%;
}




.wrapper.active {
    height: 520px;
}

.wrapper .form_box {
    width: 90%;
    padding: 40px;
    }    

.wrapper .form_box.login {
    
    transition: transform .18s ease;
    transform: translateX(0);
}

.wrapper.active .form_box.login {
    transition: none;
    transform: translateX(-400px);
} 

.wrapper .form_box.register {
    position: absolute;
    transition: none;
    transform: translateX(400px);
}

.wrapper.active .form_box.register {
    transition: transform .18s ease;
    transform: translateX(0);
}


.wrapper .icon-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #162938;
    font-size: 1.5em;
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    border-bottom-left-radius: 20px;
    cursor: pointer;
    z-index: 1;
}

.form_box h2 {
    font-size: 2em;
    color: #a51303;
    text-align: center;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #162938;
    margin: 30px 0;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #162938;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: -5px;
}


.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color:#162938;
    font-weight: 600;
    padding: 0 35px 0 5px;
}

.input-box .icon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #162938;
    line-height: 57px;
}

.remember-forgot {
    font-size: .9em;
    color: #162938;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input {
    accent-color: #162938;
    margin-right: 3px;
}

.remember-forgot a {
    color: #162938;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 45px;
    background: #162938;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
}

.login-register {
    font-size: .9em;
    color: #162938;
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;

}

.login-register p a {
    color: #162938;
    text-decoration: none;
    font-weight: 600;
}

.login-register p a:hover {
    text-decoration: underline;
}




/*==========================================================ABOUT CSS==========================================================*/

.about-section h1{
    color: red;
    text-align: center;
    font-size: 45px;
}

.about-section h1:hover{
    color: black;
    text-align: center;
    font-size: 45px;
    transition: 0.5s;
}
.about-section p {
    font-size: 20px;
    margin-top: 80px;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}
/*.about-section img {
        position: absolute;
        margin-top: 25px;
        display: block;
        /* top: 50%;
        left: 50%; */
        /* transform: translate(-50%, -50%); 
        width: 74%;
        height: 500px;
        margin-top: 100px;
        /* object-fit: cover; 
        /* margin-left: 150px; 
        border-radius: 10px; 
      
} */
/* .text-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
  } */

  /********/
.about__pic img {
    height: 350px;
    width: 40%;
    float: left;
}
.about__text .section-title h2 {
    /* float: right;     */
    text-align: center;
    margin-top: 30px;
}
.section-title .sign img {
    height: 100px;
    width: 100px;
}






</pre></body></html>