/* <======= For Styling =======> */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
}

header {
    width: 100%;
    height: 50px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
}

header .main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}


header .main-menu .a1 .logo {
    margin: 0px 10px 0px 10px;
}

header .main-menu .a2 {
    background-color: none;
    color: black;
    text-decoration: none;
    height: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
}

header .main-menu .a2:hover {
    background-color: #04AA6D;
    color: white;
}

header .main-menu .a2 i {
    padding-left: 3px;
}

header .main-menu .menu-form {
    margin: 0px 10px 0px 10px;
    position: relative;
    /* for positioning the icon inside */
    width: 170px;
}

header .main-menu .menu-form input {
    width: 100%;
    height: 35px;
    border-radius: 50px;
    padding: 0px 35px 0px 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    outline: none;
}

header .main-menu .menu-form input:focus {
    outline: 3px solid #04AA6D;
}

header .main-menu .menu-form input::placeholder {
    font-style: italic;
}

header .main-menu .menu-form button {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    right: 1px;
    transform: translateY(-48%);
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 50px;
}

header .main-menu .menu-form button:hover,
header .main-menu .menu-form button:focus {
    background: rgb(238, 238, 238);
    border-radius: 50px;
}

header .main-menu .menu-form button img {
    width: 15px;
    height: 15px;
}

header .main-menu .i1 {
    text-decoration: none;
    color: black;
    cursor: default;
}

header .main-menu .fa-snowflake {
    background: none;
    margin: 0px 1px;
    padding: 10px;
    border-radius: 50px;
    cursor: default;
}

header .main-menu .fa-snowflake:hover,
header .main-menu .fa-snowflake:focus {
    background-color: rgb(238, 238, 238);
}

header .raw-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .raw-menu .a3 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
    border-radius: 50px;
    color: black;
    text-decoration: none;
    padding: 8px 10px;
    margin: 0px 3px;
    font-size: 0.8em;
}

header .raw-menu .a3:hover {
    background-color: rgb(238, 238, 238);
}

header .raw-menu .a3 .svg3 {
    padding-right: 5px;
    width: 20px;
    height: 20px;
}

header .raw-menu .a3 .svg3:nth-child(1) {
    width: 15px;
    height: 15px;
}

header .raw-menu .ss-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: inherit;
}

header .raw-menu .a4 {
    min-width: fit-content;
    background-color: #04AA6D;
    color: white;
    text-decoration: none;
    padding: 8px 8px 8px 10px;
    margin-left: 10px;
    font-size: 0.8em;
    border-radius: 50px 0px 0px 50px;
}

header .raw-menu .a4:hover {
    background-color: #009760;
}

header .raw-menu .a5 {
    background-color: #04aa6d4f;
    color: black;
    text-decoration: none;
    padding: 8px 10px 8px 8px;
    margin-right: 10px;
    font-size: 0.8em;
    border-radius: 0px 50px 50px 0px;
}

header .raw-menu .a5:hover {
    background-color: #00915c;
    color: white;
}

section main {
    background-color: #282a35;
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
}

section main .container {
    color: white;
}

section main .container h1 .a8 {
    color: white;
    font-size: 55px;
    transform: scaleY(1.1);
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: default;
}

section main .container h3 {
    font-size: 20px;
    text-align: center;
    color: #FFF4A3;
    margin-top: 10px;
    margin-bottom: 30px;
    cursor: default;
}

section main .container form {
    display: flex;
    justify-content: center;
    align-items: center;
}

section main .container form input {
    width: 400px;
    height: 45px;
    border-radius: 50px 0px 0px 50px;
    border: none;
    padding: 0px 20px;
    outline: none;
}

section main .container form button {
    width: 90px;
    height: 45px;
    border-radius: 0px 50px 50px 0px;
    border: none;
    background-color: #04AA6D;
    display: flex;
    justify-content: center;
    align-items: center;
}

section main .container form button:hover {
    background-color: #009760;
}

section main .container form button .fa-search {
    color: white;
    font-size: 18px;
    font-weight: 800;
}

section main .container .a7 {
    display: block;
    margin: 35px auto;
    color: white;
    font-weight: 650;
    font-size: 20px;
    text-align: center;
}

section main .container .a7:hover {
    color: #FFF4A3;
}