/* font-family: "Poppins",sans-serif;
/*====================
2. Theme variables
======================*/

:root {

    --primary_color: #3A2D7F;
    --secondary_color: #FD6804;
    --body_txt_color: #4A5567;
    --title_color: #140E32;
    --blue-color: #0A1D43;

    --footer_bg: #0F0B21;
    --footer_bg2: #231E3B;
    --footer_txt: #D3CEE8;

}

/*====================
3. General css
======================*/

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

/* * {
    scroll-behavior: inherit !important;
} */

html {
    scroll-behavior: smooth;
}

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

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    font-family: "Plus Jakarta Sans", sans-serif;
}

@media (min-width: 1500px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1550px
    }
}

section {
    overflow: hidden;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: var(--clamp14);
    color: var(--body_txt_color);
    /* line-height: 1.8; */
}

.pdtb {
    padding: 120px 0;
}

.pdtb80 {
    padding: 80px 0;
}

.pdtb50 {
    padding: 50px 0;
}

.pdtb100 {
    padding: 100px 0;
}



/* Theme Buttons */

.theme_btn {
    pointer-events: auto;
    cursor: pointer;
    background: var(--secondary_color);
    border: none;
    padding: 15px 30px;
    margin: 0;
    font-size: var(--clamp14);
    position: relative;
    display: inline-block;
    text-decoration: none;
}



.theme_btn::before,
.theme_btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.theme_btn_layer {
    overflow: hidden;
    font-size: var(--clamp14);
    border-radius: 10px;
    color: #fff !important;
}

.theme_btn_layer span {
    display: block;
    position: relative;
    /* mix-blend-mode: difference; */
    z-index: 10;
    color: #fff !important;
}

.theme_btn_layer:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.theme_btn_layer::before {
    content: '';
    background: var(--primary_color);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.theme_btn_layer:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.theme_btn_layer::after {
    content: '';
    background: var(--primary_color);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.theme_btn_layer:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

/* Yellow Button */

.theme_btn_yellow {
    pointer-events: auto;
    cursor: pointer;
    background: var(--primary_color);
    border: none;
    padding: 15px 30px;
    margin: 0;
    font-size: var(--clamp14);
    position: relative;
    display: inline-block;
    text-decoration: none;
}



.theme_btn_yellow::before,
.theme_btn_yellow::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Theme button 2 */

.theme_btn2 {
    border-radius: 8px;
    padding: 5px 15px;
    font-size: var(--clamp16);
    font-weight: 500;
    color: #fff;
    overflow: hidden;
    background-color: var(--secondary_color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.theme_btn2 span {
    position: relative;
    z-index: 5;
}

.theme_btn2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary_color);
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.theme_btn2:hover::before {
    width: 100%;
}

.theme_btn2 i {
    font-size: var(--clamp22);
    margin-left: 10px;
    z-index: 5;
    transition: all ease-in-out 0.3s;
}

.theme_btn2:hover i {
    color: var(--secondary_color);
}

/* Theme button 3 */

.theme_btn3 {
    border-radius: 8px;
    padding: 5px 15px;
    font-size: var(--clamp16);
    font-weight: 500;
    color: var(--secondary_color);
    overflow: hidden;
    background-color: #fff;
    border: solid 1px #DEDDEA;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.theme_btn3 span {
    position: relative;
    z-index: 5;
}

.theme_btn3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary_color);
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.theme_btn3:hover::before {
    width: 100%;
}

.theme_btn3 i {
    font-size: var(--clamp22);
    margin-left: 10px;
    z-index: 5;
    transition: all ease-in-out 0.3s;
}

.theme_btn3:hover {
    color: #fff;
}

.theme_btn3:hover i {
    color: #fff;
}

/* Theme button 4 */

.theme_btn4 {
    border-radius: 8px;
    padding: 10px 25px;
    font-size: var(--clamp20);
    font-weight: 500;
    color: #fff;
    overflow: hidden;
    background-color: var(--primary_color);
    border: solid 1px var(--primary_color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.theme_btn4 span {
    position: relative;
    z-index: 5;
}

.theme_btn4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.theme_btn4:hover::before {
    width: 100%;
}

.theme_btn4 i {
    font-size: var(--clamp22);
    margin-left: 10px;
    z-index: 5;
    transition: all ease-in-out 0.3s;
}

.theme_btn4:hover {
    color: var(--primary_color);
}

.theme_btn4:hover i {
    color: var(--primary_color);
}