/*----GANERAL----*/

html {
  scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  color: black;
}

::-webkit-scrollbar {
  background: transparent;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, rgba(0, 152, 255, 1) 0%, rgba(9, 131, 90, 1) 100%);
  height: 200px;
  border-radius: 2px;
}

body {
  font-family: "DM Sans", serif !important;
  font-size: 14px;
}

.h-100 {
  height: 100%;
}

.text-theme {
  color: #782541;
}

p {
  font-size: 15px;
  font-weight: 300;
}

a {
  text-decoration: none !important;
}

.banner-section {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
  position: absolute;
}

.banner-div {
  position: relative;
}


.banner-div h1 {
  font-size: 80px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 85px;
  text-align: center;
}




@media only screen and (max-width: 767px) {
  .banner-div h1 {
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {}

@media only screen and (min-width: 991px) and (max-width: 1200px) {}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {}

@media only screen and (min-width: 1400px) and (max-width: 1800px) {}



@media (min-width: 1801px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1490px !important;
  }
}