@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  min-height: 100vh;
  width: 100%;
  background: #000;
}
/*  */
nav {
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px;
}
.navbar {
  height: 75px;
  width: 100%;
  position: relative;
}

.navbar-header {
  display: inline;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  padding-left: 10%;
  font-weight: bold;
  color: #ffffff;
}

.navbar-responsive-button {
  display: none;
  padding-right: 2%;
}

.navbar-links {
  display: inline;
  float: right;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  padding: 3px;
}

.navbar-links > a {
  display: inline-block;
  padding: 10px 10px 10px 10px;
  text-decoration: none;
  color: #efefef;
  border-bottom: 3px solid #000;
}

.navbar-links > a:hover {
  /* background-color: rgba(105, 105, 105, 0.5); */
  /* border-bottom: 3px solid #f2802e; */
  color: #F2802E;
}

#navbar-checkbox {
  display: none;
}

@media (max-width: 968px) {
  main {
    min-height: 90vh;
  }
  .navbar-responsive-button {
    display: inline-block;
    position: relative;
    float: right;
    top: 50%;
    transform: translate(0, -50%);
  }

  .navbar-responsive-button > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }

  .navbar-responsive-button > label:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: #d3d3d3;
  }

  #navbar-checkbox:checked ~ .navbar-responsive-button > label {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .hamburger-icon {
    display: block;
    height: 10px;
    width: 25px;
    border-top: 3px solid #eeeeee;
  }

  .navbar-links {
    position: relative;
    display: block;
    width: 100%;
    height: 0%;
    top: 50%;
    left: 0%;
    transform: translate(0, -4%);
    transition: all 0.2s linear;
    overflow-y: hidden;
  }

  .navbar-links > a {
    display: block;
    width: 100%;
  }

  #navbar-checkbox:checked ~ .navbar-links {
    height: 100vh;
    overflow-y: auto;
  }

  #navbar-checkbox:not(:checked) ~ .navbar-links {
    height: 0%;
  }
}
/*  */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #000;
  background-image: linear-gradient(#1277fb, #000);
  width: 100%;
}
/* footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 170px;
  height: 1px;
  width: 100%;
  background: #000;
} */
footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 0 0 40px;
}
footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}
.content .top .media-icons {
  display: flex;
}
.content .top .media-icons a {
  height: 35px;
  width: 35px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1) {
  background: #fff;
  color: #4267b2;
}
.top .media-icons a:nth-child(1):hover {
  background: #fff;
}
.top .media-icons a:nth-child(2) {
  background: #fff;
  color: #1da1f2;
}
.top .media-icons a:nth-child(2):hover {
  background: #fff;
}
.top .media-icons a:nth-child(3) {
  background: #fff;
  color: #e1306c;
}
.top .media-icons a:nth-child(3):hover {
  background: #fff;
}
.top .media-icons a:nth-child(4) {
  background: #fff;
  color: #0077b5;
}
.top .media-icons a:nth-child(4):hover {
  background: #fff;
}
.top .media-icons a:nth-child(5) {
  background: #fff;
  color: #ff0000;
}
footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 530;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}
.logo-foot {
  width: 80px;
}

.text{
  color: #fff;
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box {
  margin-right: 55px;
}
/* .content .link-boxes .box .logo-details .p {
  color:#fff
} */
.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #afafb6;
  background: #140b5c;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder {
  color: #afafb6;
  font-size: 16px;
}
.link-boxes .input-box input[type='button'] {
  background: #fff;
  color: #140b5c;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.copyright {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 3em;
}
.input-box input[type='button']:hover {
  opacity: 1;
}
footer .bottom-details {
  width: 100%;
  background: #2c303a;
}
footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.fa {
  margin-top: 10;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a {
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  footer {
    position: relative;
  }
  .content .top .logo-details {
    font-size: 26px;
  }
  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  footer::before {
    top: 220px;
  }
  footer .content .top {
    flex-direction: column;
  }
  .content .top .media-icons {
    margin-top: 16px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 100%;
  }
}
