* {
  padding: 0;
  margin: 0;
}

#Heading {
  width: 100%;
}

.title-text {
  text-align: center;
  padding-bottom: 10px;
}

.title-text p {
  margin: auto;
  font-size: 36px;
  color: #0e77d2cd;
  font-weight: bold;
}

.title-text h1 {
  font-size: 22px;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #2a65c5),
    url("./images/kit.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.logo {
  width: 140px;
  position: absolute;
  top: 4%;
  left: 10%;
}

.hero-text {
  text-align: center;
  color: #fff;
  padding-top: 200px;
}

.hero-text h1 {
  font-size: 42px;
  font-family: "Rubik", sans-serif;
}

.hero-text p {
  font-size: 20px;
  font-style: italic;
  margin-top: 20px;
  font-family: "Rubik", sans-serif;
}

.hero-btn {
  margin: 70 auto 0;
}

.hero-btn a {
  width: 150px;
  text-decoration: none;
  display: inline-block;
  margin: 0 20px;
  padding: 12px 0;
  color: white;
  border: 0.5px solid white;
  margin-top: 2em;
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}

.hero-btn a span {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.hero-btn a:hover span {
  width: 100%;
  color: black;
}

.hero-btn a:hover {
  color: black;
  border: 2px solid black;
}


/*#################### Footer ##################### */
#footer {
  padding: 100px 0 20px;
  background: #efefef;
  position: relative;
}

.footer-row {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-left,
.footer-right {
  flex-basis: 45%;
  padding: 10px;
  margin-bottom: 20px;
}

.footer-right {
  text-align: right;
}

.footer-row h1 {
  margin: 10px 0;
  font-size: 32px;
  font-weight: 600;
}

.footer-row p {
  line-height: 30px;
}

.footer-left .fa,
.footer-right .fa {
  font-size: 20px;
  color: #2a65c5;
  margin: 10px;
}
.footer-img {
  max-width: 370px;
  opacity: 0.1;
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
}

.social-links {
  text-align: center;
}

.social-links .fa {
  height: 40px;
  width: 40px;
  font-size: 20px;
  line-height: 40px;
  border: 1px solid #2a65c5;
  margin: 40px 5px 0;
  color: #2a65c5;
  cursor: pointer;
  transition: 0.5s;
}

.social-links .fa:hover {
  background: #2a65c5;
  color: #fff;
  transform: translateY(-7px);
}

.social-links p {
  font-size: 12px;
  margin-top: 20px;
}
/*----------- other pages ----------- */

.heroSec {
  background: linear-gradient(rgba(0, 0, 0, 0.1), #2a65c5),
    url("./images/kit.jpg");
  height: 60vh;
  background-size: cover;
  background-position: center;
}

.logo {
  width: 140px;
  position: absolute;
  top: 4%;
  left: 10%;
}

.hero-textSec {
  text-align: left;
  color: #fff;
  margin-left: 8em;
  padding-top: 180px;
}

.hero-textSec h1 {
  font-size: 32px;
  font-family: "Rubik", sans-serif;
}

.hero-textSec p {
  font-size: 20px;
  font-style: italic;
  margin-top: 20px;
  font-family: "Rubik", sans-serif;
}

.hero-btnSec {
  margin: 70 auto 0;
}

.hero-btnSec a {
  width: 150px;
  text-decoration: none;
  display: inline-block;
  margin: 0 20px;
  padding: 12px 0;
  color: white;
  border: 0.5px solid white;
  margin-top: 2em;
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}

.hero-btnSec a span {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.hero-btnSec a:hover span {
  width: 100%;
  color: black;
}

.hero-btnSec a:hover {
  color: black;
}

/*#################### SIDE BAR ##################### */
#sidebar {
  width: 220px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -220px;
  background: #0e77d2cd;
  z-index: 2;
  transition: 0.5s;
}

#sidebar nav ul li {
  list-style: none;
  margin: 50px 20px;
}

#sidebar nav ul li a {
  text-decoration: none;
  color: #fff;
}

#menuBtn {
  width: 50px;
  height: 50px;
  background: #0e77d2cd;
  text-align: center;
  position: fixed;
  right: 20px;
  top: 20px;
  border-radius: 3px;
  z-index: 3;
  cursor: pointer;
  border: 1px solid black;
}

#menuBtn img {
  width: 20px;
  margin-top: 15px;
  margin-left: 12px;
}

