/* ===========================default css ============== */

@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* font-family: 'Arimo', sans-serif; */

* {
    padding: 0;
    margin: 0;
    outline: none;
}


/*===== VARIABLES CSS =====*/

 :root {
    /*========== Colors ==========*/
    --main-color: #FFB600;
    --second-color: #16A6FD;
    --black-color: #000000;
    --text-color: #1B3685;
    --title-color: #162148;
    --white-color: #ffffff;
    --text-alt: #787878;
    /*========== Font and typography ==========*/
    --body-font: "Poppins", sans-serif;
    --sec-title-font: 25px;
    --p-font: 14px;
    --m-title: 20px;
    --l-title: 25px;
    --p-font-height: 30px;
    --lp-font-height: 27px;
    --title-font: 40px;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margin ==========*/
    --mb-1: .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;
    --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --msger-bg: #fff;
    --border: 2px solid #ddd;
    --left-msg-bg: #ececec;
    --right-msg-bg: #579ffb;
}


/* ==================CSS Variable END========= */


/*========== BASE ==========*/

*,
 ::before,
 ::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 400;
    font-family: var(--body-font);
    line-height: var(--p-font-height);
    overflow-X: hidden;
}

.container {
    max-width: 1344px !important;
}

img {
    vertical-align: middle;
    height: auto;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
}

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-color);
    padding: 7px 15px;
    border-radius: 41px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    border: none;
    line-height: 120%;
    position: relative;
    overflow: hidden;
}

.custom-btn:hover {
    color: #ffffff;
    /* border: 2px solid #ffb60000; */
}

.btn:focus {
    outline: 0px;
    box-shadow: none;
}

.my-6 {
    margin: 40px 0;
}

.body-wrapper {
    max-width: 1360px;
    margin: auto;
}

.button-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 0px;
    background: #212529;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.button-wrapper .custom-btn {
    z-index: 2;
    margin: 1px;
}

.button-wrapper:after {
    content: "";
    border: 1px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 120px;
    z-index: 0;
    opacity: 0;
    background: linear-gradient(transparent, var(--second-color), var(--second-color), var(--second-color), transparent);
    animation: btnAnimation 4s linear infinite;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-animation: btnAnimation 4s linear infinite;
}

@keyframes btnAnimation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.button-wrapper:hover:after {
    opacity: 1;
}


/* =======================default css end =================== */

.cmy-5 {
    margin: 50px 0;
}

.cpy-5 {
    padding: 50px 0;
}

.cpt-5 {
    padding-top: 50px;
}

@media screen and (max-width: 768px) {
    .cmy-5 {
        margin: 30px 0;
    }
    .cpy-5 {
        padding: 30px 0;
    }
    .cpt-5 {
        padding-top: 30px;
    }
}

.animation-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    box-shadow: rgb(92 88 88) -3px 8px 8px -7px;
    width: 100%;
    border: 1px solid var(--second-color);
}

.animation-wrapper:after {
    content: "";
    border: 2px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 120px;
    z-index: 0;
    opacity: 0;
    background: linear-gradient(transparent, var(--second-color), var(--second-color), var(--second-color), transparent);
    animation: btnAnimation 4s linear infinite;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-animation: btnAnimation 4s linear infinite;
}

@keyframes btnAnimation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.animation-wrapper:hover:after {
    opacity: 1;
}

.custom-btn-recent {
    background: var(--main-color);
    padding: 7px 15px;
    border-radius: 41px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    border: none;
    line-height: 120%;
    position: relative;
    overflow: hidden;
}

.custom-btn-recent:hover {
    background: var(--second-color);
    /* border: 2px solid #ffb60000; */
}