
body{
	background: url('../images/background.png');
	padding: 0;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

@font-face {
  font-family: 'Kapak-Demo';
  src:  url('fonts/Kapak-Demo.otf') format('opentype'),
        url('fonts/Kapak-Demo.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Inika&display=swap');

/* === */

/* header */
.headerSection h1{
	font-family: 'Kapak-Demo', sans-serif;
	margin: 35px auto;
	text-transform: uppercase;
	background-image: linear-gradient(45deg, #408CBC 45%, #9B3CD4 50%, #330434 75%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 48px;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: auto;
}

.mainSection{
  margin-top: 35px;
}

.mainSection p {
	text-align: center;
    font-size: 25px;
    background: #f1f1f169;
    padding: 50px 0;
    border-radius: 10px;
}
 
.aboutUs {
  margin: 50px 0;
}

/*===========================*/

.footerSection{
  padding: 50px 0 15px 0;
  background: rgb(255 255 255 / 65%);
  color: #0e1327;
  margin-top: auto;
}

.footerSection hr{
  /*width: 100px;*/
  background: #f5f5f5;
  height: 2px!important;
  opacity: 1;
}

.footerBottom, .footerTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: lighter;
  font-size: 15px;
}

.footerTop h2{
  font-size: larger;
}

.footerTop ul{
  list-style: none;
  padding-left: 15px;
}

.footerTop ul li a{
  color: #0e1327;
  text-decoration: none;
  cursor: pointer;
}

.footerTop ul li a:hover{
  color: #6c757d!important;
}

.footerTop .siteMap{
  display: flex;
}

.footerBottom p{
  margin: 0;
}

.footerBottom p a{
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  color: #0e1327;
}

.socialIcons i{
  font-size: 20px;
  color: #0e1327;
  margin-left: 10px;
  border-radius: 80px;
  background: #f5f5f5;
  padding: 14px 14px;
  /*border: 1px solid #04070a;*/
}

.socialIcons i:hover{
  opacity: 0.7;
}

/* ========= */

@media screen and (max-width: 767px){
  .footerBottom, .footerTop{
    flex-direction: column;
  }

  .socialIcons{
    margin-top: 10px;
  }
}
 
