* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #B3D98E;
  --secondary-color:#1D665D;
  --text-color:#051610;
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: "Urbanist", sans-serif;
  padding-right: 8px;
}
@media (max-width: 768px) {
  body {
    padding-right: 0px;
  }
}

a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: inherit;
}

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

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
  font-weight: 400;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #111;
  letter-spacing: .5px;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 40px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 19px;
}

.form-control,
.form-control:focus,
.form-control:active {
  border: none;
  outline: none;
  box-shadow: none;
}

.form-control::placeholder {
  color: black;
  opacity: 1;
}

.bg-black {
  background-color: black;
}

.m-15 {
  margin: 15px 0;
}

.m-60 {
  margin: 60px 0;
}

.mt {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.margin-main {
  margin: 80px 0;
}

.padding-main {
  padding: 60px 0;
}

.d-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.text-right {
  text-align: right;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
  width: 100%;
  min-height: 1px;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    width: 83.333%;
    max-width: 83.333%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1250px) {
  .col-xl-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .flex-reverse {
    flex-direction: column-reverse !important;
  }

  .col-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .padding-main {
    padding: 20px 0;
  }

  .p--0 {
    padding: 0 !important;
  }
}

.container {
  max-width: 1500px;
  margin: auto;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1600px !important;
  }
}

@media (min-width: 1251px) and (max-width: 1500px) {
  .container {
    max-width: 1200px !important;
  }
}

@media (min-width: 1001px) and (max-width: 1250px) {
  .container {
    max-width: 980px !important;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .container {
    margin: 0px 20px;
  }
}

@media (max-width: 768px) {
  .container {
    margin:0px 12px;
  }
}




.btn-one {
  background-color: var(--primary-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  align-items: center;
  transition: all 0.3s ease;
  width: max-content;
}

.btn-one span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    letter-spacing: .5px;
}
.btn-one svg{
    width: 22px;
    height: 27px;
}
.btn-one:hover {
  transition: all 0.3s ease;
  background-color: var(--secondary-color);
  color: white;
}
.btn-one:hover span{
  color: white;
}
.btn-one:hover svg {
  transform: rotate(360deg);
  transition: all 0.3s ease;
  fill: white;
  stroke: white;
}




.btn-two {
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  align-items: center;
  transition: all 0.3s ease;
  width: max-content;
}

.btn-two span {
    font-weight: 600;
    font-size: 15px;
    color: white;
    letter-spacing: .5px;
}
.btn-two svg{
    width: 22px;
    height: 27px;
}
.btn-two:hover {
  transition: all 0.3s ease;
  background-color: black;
  color: white;
}
.btn-two:hover span{
  color: white;
}
.btn-two:hover svg {
  transform: rotate(360deg);
  transition: all 0.3s ease;
  fill: white;
  stroke: white;
}