@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');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease;
    color: #272727;
}

:root {
    --color-bg-light: orange;
    --color-bg-dark: #242424;
    --color-bg-2: #ff0000;
    --color-text: #202020;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    font-family: "Lexend", sans-serif;

}

h1{
    font-size:2.5rem;
}
h2{
    font-size:2rem;
    line-height: 40px;
}
h3 {
    font-size:1.5rem;
}



ul,
li {
    list-style: none;
}

p,
a,
div,
li,
ul,
section,
header,
footer,
input {
    font-size: 14px;
}


h1>span {
     background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2>span {
      background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3>span {
     background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h4>span {
     background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h5>span {
     background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




a {
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}
i{
    cursor:pointer;
}

a:hover {
    /* opacity: 0.8; */
}

img {
    width: 100%;
}

button {
    cursor: pointer;
}

.btn-1 {
    border: none;
    padding: 10px;
    color: white;
    border-radius: 7px;
    background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.btn-2 {
    padding: 10px;
    border: none;
    background-color: var(--color-bg);
    color: white;
    border-radius: 7px;
    background: #33bdab;
    background: linear-gradient(148deg, rgba(51, 189, 171, 1) 0%, rgba(0, 60, 255, 1) 100%);
    font-size: 15px;
    font-weight: 500;
    text-align: center;

}