/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Playball&display=swap');

/* FontAwesome Link */
@import url("https://use.fontawesome.com/releases/v6.0.0/css/all.css");

/* Start Main Component */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
}
:root {
  --main: #b0031c;
  --primary: #7A7A7A;
  --black: #000000;
  --white: #ffffff;
  --main-transition: all 0.25s ease-in-out;
}
html {
  scroll-behavior: smooth;
}
body {
  /* color: var(--primary); */
  background: #FFF;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}
img {
  user-select: none;
  pointer-events: none;
}
a {
  color: var(--primary);
  display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  margin: 0;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* SMALL Screens */
@media (min-width: 768px) {
	.container {
	  width: 750px;
	}
}
/* MEDIUM Screens */
@media (min-width: 992px) {
	.container {
	  width: 970px;
	}
}
/* LARGE Screens */
@media (min-width: 1200px) {
	.container {
	  width: 1170px;
	}
}
@media (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}
section {
  padding-top: 75px;
}
.txt {
  line-height: 1.5;
  text-align: justify;
}
.hash-span {
  margin-top: -100px;
  padding-bottom: 100px;
  display: block;
}
.heading {
  text-align: center;
  margin-bottom: 50px;
}
.heading h4 {
  color: #373738;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.heading h2 {
  color: var(--main);
  font-size: 28px;
  margin-top: 10px;
}
#scrollToTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background-color: var(--main);
  border-radius: 10px;
  border: 2px solid var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--main-transition);
}
#scrollToTop.active {
  opacity: 1;
  pointer-events: all;
}
#scrollToTop i {
  color: var(--white);
  font-size: 20px;
}
@media (max-width: 767px) {
  #scrollToTop {
    bottom: 25px;
    right: 25px;
  }
}
@media (max-width: 450px) {
  .heading h2 {
    font-size: 22px;
  }
}
/* End Main Component */


/* Start Banner */
.banner {
  position: relative;
  display: grid;
  place-items: center;
  background-size: cover;
  min-height: 450px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.banner .logo {
  position: relative;
  margin-bottom: 10px;
}
.banner .logo img {
  max-height: 150px;
}
.banner-content {
  position: relative;
  color: var(--black);
  max-width: 550px;
  text-align: center;
  margin-top: 15px;
}
.banner-content :is(h2, h3) {
  color: var(--black);
  font-weight: 900;
}
.banner-content h2 {
  font-size: 2em;
  font-weight: 900;
  line-height: 1.3em;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .banner {
    min-height: 300px;
  }
  .banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner .logo img {
    max-height: 110px;
  }
  .banner-content h2 {
    font-size: 1.75em;
  }
}
@media (max-width: 767px) {
  .banner {
    min-height: 250px;
  }
  .banner .logo img {
    max-height: 80px;
  }
  .banner-content h2 {
    font-size: 1.5em;
  }
}
/* End Banner */


/* Start Header */
.header {
  position: sticky;
  top: 0;
  background-color: var(--primary);
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}
.header .navbar ul {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
}
.navbar ul .nav-link {
  font-size: 17px;
  display: block;
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 10px 25px;
  transition: var(--main-transition);
}
.navbar ul .nav-link:hover {
  background-color: var(--main);
}
.header .toggle-menu {
  display: none;
  cursor: pointer;
}
.header .toggle-menu i {
  color: var(--white);
  font-size: 25px;
}
@media (max-width: 991px) {
  .header .navbar {
    display: grid;
    place-items: center;
    position: absolute;
    top: 60px; left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    background-color: #11101b;
    transition: 0.2s;
  }
  .header .navbar ul {
    flex-direction: column;
    padding: 15px 0;
    gap: 25px;
    transition: 0.5s;
    opacity: 0;
  }
  .header .toggle-menu {
    display: block;
  }
  .header .navbar.active {
    height: 500px;
    pointer-events: all;
  }
  .header .navbar.active ul {
    opacity: 1;
  }
}
.switch-container {
  display: flex;
  align-items: center;
  gap: 25px;
}
.switch-container .switch-lang {
  position: relative;
  display: block;
  width: 50px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid var(--white);
  padding: 2px;
}
.switch-container .switch-lang .switch-ball {
  position: absolute;
  left: 2px;
  width: 14px; 
  height: 14px;
  background-color: var(--white);
  border-radius: 50%;
  transition: var(--main-transition);
}
.switch-container .switch-lang:hover .switch-ball {
  background-color: var(--main);
  left: calc(100% - 16px);
}
.switch-container .lang img {
  height: 30px;
}
.switch-container .txt {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.75px;
}
/* End Header */

/* Start Footer */
.footer {
  color: var(--white);
  background-color: rgb(73, 73, 73);
  padding-top: 50px;
}
.footer .container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}
.footer .contact-details div:not(:last-child) {
  margin-bottom: 50px;
}
.footer .contact-details h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer .contact-details h3 a {
  color: #fff;
  text-decoration: underline;
}
.footer .contact-details .txt {
  font-weight: 300;
  margin-bottom: 10px;
}
.sub-footer {
  text-align: center;
  background-color: rgb(62, 62, 62);
  padding: 20px 15px;
}
@media (max-width: 991px) {
  .footer .container {
    align-items: center;
    flex-direction: column;
  }
  .footer .container .footer-logo {
    margin-bottom: 75px;
  }
}
@media (max-width: 450px) {
  .footer-logo img {
    height: 150px;
  }
}
/* End Footer */