/* FONTS
=========================== */
@font-face {
  font-family: 'sansserifexbflf-italic';
  src: url('./font/sansserifexbflf-italic.otf');
}

/* GENERAL
=========================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

ion-icon {
  font-size: 25px;
}

/* NAVBAR
=========================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  padding: 0 30px;
  font-size: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
}

.navbar > div {
  padding: 0 30px;
}

.logo {
  margin: 0 auto 0 38%;
  font-family: 'sansserifexbflf-italic';
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTENT
=========================== */
.content {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* Split Layout */
.split {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 1s all cubic-bezier(.87, .76, .33, .98);
  text-align: center;
  padding: 20px;
}

.split.left {
  background: #1c4767;
}

.split.right {
  background: #00BFFF;
}

/* TEXT CONTENT */
.text {
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.text img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.text .button {
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  padding: 15px 50px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
  border-radius: 100px;
  margin-top: 20px;
}

.customestyles {
  font-size: 50px;
  color: #fff;
  font-weight: 400;
  font-family: 'sansserifexbflf-italic';
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 10px;
 
}

a{
	 text-decoration:none;
}

/* RESPONSIVE DESIGN
=========================== */
@media screen and (max-width: 768px) {
  .content {
    flex-direction: column;
    height: auto;
  }

  .split {
    width: 100%;
    height: auto;
    padding: 60px 20px;
  }

  .customestyles {
    font-size: 36px;
  }

  .text .button {
    width: 100%;
    padding: 15px;
  }
}
