@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --main-color: #c02228;
  --black-color: rgb(51 65 85);
}

body {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffffff;
  line-height: 1.5;
}

a {
  color: #828282;
}

* {
  margin: 0;
  padding: 0;
  outline: none !important;
  transition: all 0.2s ease;
}

section {
  padding: 0 142px;
  color: #828282;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

.title {
  color: var(--black-color);
  font-weight: 600;
}

.title * {
  color: inherit;
  font-weight: 600;
  position: relative;
}

.main-color {
  color: var(--main-color) !important;
}

.black-color {
  color: var(--black-color) !important;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: all 0.5s ease;
}

.navbar {
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
}

.navbar > .container {
  padding: 0 15px;
}

.navbar .navbar-brand {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.navbar .nav-item {
  margin: 0 20px;
  align-content: center;
  align-items: center;
}

.navbar .nav-item .nav-link {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0;
}

.nav-link:hover {
  font-weight: 600;
  color: var(--main-color);
}

.navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
  z-index: 100;
}

/* Footer */
footer {
  padding: 4em 0;
}

.footer-07 {
  background: var(--main-color);
}

.footer-07 a {
  color: #fff;
}

.footer-07 p {
  color: rgba(255, 255, 255, 0.3);
}

.footer-07 .footer-heading {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-07 .footer-heading .logo {
  color: #fff;
}

.footer-07 .menu {
  margin-bottom: 30px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-07 .menu a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-07 .ftco-footer-social li a {
  background: transparent;
  border: 1px solid #fff;
}

.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  height: 40px;
  width: 40px;
  display: block;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  position: relative;
}

.ftco-footer-social li a i {
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* .ftco-footer-social li a:hover {
} */

/* tablet */
@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  .title .custom-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    border-bottom: 3px solid var(--main-color);
  }

  .px-md-6 {
    padding: 0 52px !important;
  }
}

/* desktop */
@media (min-width: 992px) {
  .title .custom-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    border-bottom: 3px solid var(--main-color);
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 25px;
  }

  .px-md-6 {
    padding: 0 132px !important;
  }
}
