﻿html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
em,
img,
small,
strong,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ol,
ul {
  list-style: none;
}
:focus {
  outline: 0;
}
input,
textarea {
  margin: 0;
  outline: 0;
}
textarea {
  overflow: auto;
  resize: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* End Reset */
/* html5 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/* Default Font Styles
______________________*/
body,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
}
/* Links
______________________*/
a {
  -webkit-transition: 0.1s ease-out 0.1s;
  -moz-transition: 0.1s ease-out 0.1s;
  transition: 0.1s ease-out 0.1s;
}

/* Splash Screen */

#splashscreen {
  display: flex;
}
#splashscreen .screen {
  height: 100vh;
  width: 50%;
  transition: 0.3s ease-out 0.3s;
}
#splashscreen .screenone {
  background: url(../images/screen1-img.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
#splashscreen .screenone::before {
  content: "";
  position: absolute;
  background: #094f02;
  background: linear-gradient(
    335deg,
    rgba(9, 79, 2, 0.85) 25%,
    rgba(15, 100, 0, 0.85) 48%,
    rgba(7, 75, 0, 0.85) 72%
  );
  width: 100%;
  height: 100%;
  left: 0;
}
#splashscreen .screentwo {
  background: url(../images/screen2-img.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
#splashscreen .screentwo::before {
  content: "";
  position: absolute;
  background: #733e0a;
  background: linear-gradient(
    335deg,
    rgba(115, 62, 10, 0.85) 25%,
    rgba(152, 78, 5, 0.85) 48%,
    rgba(115, 62, 10, 0.85) 72%
  );
  width: 100%;
  height: 100%;
  left: 0;
}
#splashscreen .screen:hover {
  width: 60%;
}
#splashscreen .screencontent {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}
#splashscreen .screencontent .comp-logo {
  background: url(../images/gswhite-logo.png) no-repeat;
  background-size: 275px 148px;
  width: 275px;
  height: 148px;
  margin: 0 0 40px 0;
}
#splashscreen .screentwo .screencontent .comp-logo {
  background: url(../images/hassandateswhite.png) no-repeat;
  background-size: 304px 174px;
  width: 304px;
  height: 174px;
  margin: 0 0 40px 0;
}
#splashscreen .screencontent h5 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #d4ffd3;
  margin-bottom: 30px;
  font-size: 18px;
}
#splashscreen .screentwo .screencontent h5 {
  color: #ffdcba;
}
#splashscreen .screencontent > span i {
  display: inline-block;
  color: #d4ffd3;
  font-size: 16px;
  margin-right: 5px;
}
#splashscreen .screentwo .screencontent > span i {
  color: #ffdcba;
}
#splashscreen .screencontent > span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #d4ffd3;
  font-size: 13px;
}
#splashscreen .screentwo .screencontent > span {
  color: #ffdcba;
}
#splashscreen .screencontent .exp-btn {
  margin-top: 30px;
  display: block;
  border-radius: 50px;
  border: 1px solid #447743;
  padding: 20px 30px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #d4ffd3;
  font-size: 16px;
  background: none;
  transition: 0.2s ease-out 0.2s;
  cursor: pointer;
}
#splashscreen .screentwo .screencontent .exp-btn {
  color: #ffdcba;
  border-color: #865f39;
}
#splashscreen .screencontent .exp-btn i {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
#splashscreen .screencontent .exp-btn:hover {
  background: #447743;
  color: #fff;
}
#splashscreen .screentwo .screencontent .exp-btn:hover {
  background: #865f39;
  color: #fff;
}

/* Responsive */
@media (max-width: 800px) {
  #splashscreen .screencontent .comp-logo {
    background-size: 125px 75px;
    width: 125px;
    height: 75px;
    margin: 0 0 20px 0;
  }
  #splashscreen .screencontent h5 {
    margin-bottom: 10px;
    font-size: 13px;
  }
  #splashscreen .screencontent > span {
    font-size: 10px;
  }
  #splashscreen .screencontent > span i {
    display: none;
  }
  #splashscreen .screencontent .exp-btn {
    margin-top: 20px;
    padding: 10px 15px;
    font-size: 12px;
  }
  #splashscreen .screentwo .screencontent .comp-logo {
    background-size: 125px 80px;
    width: 125px;
    height: 80px;
    margin: 0 0 20px 0;
  }
}
