@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --primary-color: #f92d39;
}

body {
  font-size: 14px;
  font-family: poppins;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.2;
}

/* -------------------------------------------------------
                      Miscellanous
------------------------------------------------------- */

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

.card{
  border-radius: 0;
}

.card-img{
  border-radius: 0 !important;
}

.card-img img{
  width: 100%;
  height:100%;
  aspect-ratio: 3/1.9;
  object-fit: cover;
}

.card-body h3{
  font-size: 18px;
  margin-bottom: 20px;
}
.contact-info a{
  color: #000;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-info a svg{
  color: var(--primary-color);
  margin-right:7px;
}

.whatsapp,
.google-map{
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #fff;
}

.whatsapp svg,
.google-map svg{
  font-size: 18px;
}

.whatsapp{
  background-color: #00a83b;
}

.google-map{
  background-color: #333;
}


footer{
  text-align: center;
  color: #fff;
  background-color: var(--primary-color);
  padding: 20px 0;
}

footer p{
  margin-bottom: 0;
}

footer a{
  color: var(--white-color);
  text-decoration: underline;
}

/* -------------------------------------------------------
                         Scrollbar
------------------------------------------------------- */

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--light-primary-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}


/* -----------Responsive--------- */

@media(max-width:768px) {
h1{
  font-size: 28px;
}

h2{
  font-size: 22px;
}
}