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

html {
    scroll-behavior: smooth;
}



body {
    width: 100vw;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

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: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #111;
}

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;
    min-height:46px !important;
}

.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 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* BUTTON ONE */

.btn-one {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 250px;
  height: 55px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--color-one);
  overflow: hidden;
  transition: color 0.3s ease-in-out;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-one span,
.btn-one i {
  position: relative;
  z-index: 3;
}

.btn-one::before,
.btn-one::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--color-two);
  border-radius: 50%;
  transition: all 0.8s ease-in-out;
  z-index: 2; /* Behind the text */
}

.btn-one::before {
  left: -20px;
  transform: translate(-50%, -50%);
}

.btn-one::after {
  right: -20px;
  transform: translate(50%, -50%);
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
    width: 20px;
    height: 20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
    width: 20px;
    height: 20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

.btn-one:hover {
  color: #fff0dd;
}

.btn-one:hover::before {
  animation: criss-cross-left 0.8s both;
}

.btn-one:hover::after {
  animation: criss-cross-right 0.8s both;
}



/* BUTTON TWO */

.btn-two {
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}

.btn-two::before {
  content: '';
  position: absolute;
  top: -50px;
  right: 0;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--color-one);
  transform: translateX(-100%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}

.btn-two:hover {
  color: white;
}

.btn-two:hover::before {
  transform: translateX(0);
}

/* BUTTON THREE */


.btn-three {
  position: relative;
  width: max-content;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  text-transform: uppercase;
  background-color: var(--color-one);
  overflow: hidden;
  cursor: pointer;
}

.btn-three span {
  position: relative;
  color: white;
  font-size: 15px;
  font-weight: 400;
  z-index: 2;
}

.btn-three i {
  font-size: 18px;
  color: white;
  z-index: 2;
}

.btn-three::before {
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 0;
  height: 0;
  background: var(--color-two);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 1;
}

.btn-three.hover-effect::before {
  width: 200px;
  height: 200px;
}