@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");

* {
    padding: 0;
    margin: 0;
    outline: none;
}

/*===== VARIABLES CSS =====*/

:root {
    /*========== Colors ==========*/
    --main-color: #f47522;
    --second-color: #429fdd;
    --black-color: #000000;
    --title-color: #393939;
    --white-color: #ffffff;
    /*========== Font and typography ==========*/
    --body-font: "Poppins", sans-serif;
    --sec-title-font: 25px;
    --p-font: 16px;
    --m-title: 30.25px;
    --l-title: 36.79px;

    --title-font: 40px;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margin ==========*/
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* ==================CSS Variable END========= */

/*========== BASE ==========*/

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1140px;
}

body {
    color: #000000;
    font-weight: 500;
    font-size: 20px;
    font-family: var(--body-font);
    line-height: 150%;
    overflow-x: hidden;
}

img {
    vertical-align: middle;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
}
.body-wrapper {
    overflow-x: hidden;
}
ul,
ol {
    padding: 0;
    list-style: none;
}

button:focus {
    outline: none;
}

/* ============================GENERAL STYLE END======= */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
    margin: 0;
}

.ovh {
    overflow: hidden;
}

table.table {
    white-space: nowrap;
}

.custom-btn {
    background: var(--main-gradient);
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white-color);
    transition: 0.3s;
    background: var(--main-color);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    border: 2px solid var(--main-color);
    font-weight: 600;
}

.custom-btn:hover {
    background: none;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn:focus {
    outline: 0px;
    box-shadow: none;
}

.cpy-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.cpy-8 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.cmt-10 {
    margin-top: 100px;
}
.cpb-8 {
    padding-bottom: 80px;
}
.input-gap {
    margin: 15px 0;
}
