@import url('https://fonts.googleapis.com/css2?family=Damion&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Damion", cursive;
    font-style: normal;
}

p {
    font-size: 18px;
}

p,
a {
    font-family: "Jost", sans-serif;
    font-style: normal;
}


.logo {
    max-width: 165px;
}


.banne_section {
    background: url('../assets/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 220px 0 0px;
}

.img_bg {
    background: url('../assets/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.page_header{
    background: url('../assets/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 150px 0 50px;
}


.site_btn {
    padding: 1em 2em;
    border-radius: 5px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    transition: all 1000ms;
    font-size: 15px;
    border: 2px solid #fff;
    z-index: 1;
    display: inline-block;
}

.site_btn:hover {
    color: #ffffff;
    border: 2px solid #70bcca00;
    box-shadow: 4px 5px 17px -4px #ffffff70;
}

.site_btn::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #df314d;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.site_btn:hover::before {
    width: 250%;
}

.banner_img {
    max-width: 450px;
}

@keyframes up-down {

    0%,
    100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0);
    }
}

@keyframes angle-move {

    0%,
    100% {
        transform: translateY(0) rotate(-6deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes rotate {

    0%,
    100% {
        transform: rotate(10deg) translate(10px, 15px);
    }

    50% {
        transform: rotate(240deg) translate(0, 0);
    }
}

.first_icon {
    max-width: 94px;
    position: absolute;
    left: 50%;
    animation: up-down 6s infinite linear;
}

.second_icon {
    max-width: 75px;
    position: absolute;
    left: 19%;
    top: 50px;
    animation: angle-move 5s infinite cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.thired_icon {
    max-width: 42px;
    position: absolute;
    bottom: 43%;
    left: 8%;
    animation: rotate 10s infinite linear;
}

.four_icon {
    max-width: 53px;
    position: absolute;
    left: 9%;
    bottom: 20%;
    animation: angle-move 5s infinite ease-in-out;
    ;
}

header {
    position: absolute;
    width: 100%;
    z-index: 999;
    background: #ffffff30;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.purple_bg {
    background-color: #391965;
}

.section_gap {
    padding: 80px 0;
}

.sub_heading {
    font-family: "Jost", sans-serif;
    color: #df314d;
}

.icon {
    max-width: 80px;
}

.icon_box {
    background: #210053;
}

.icon_box:hover {
    background: #df314d;
    transition: all 1.5s;
}


.box-2.icon_box {
    background: #df314d;
}

.box-2.icon_box:hover {
    background: #210053;
    transition: all 1.5s;
}

.gradiant_heading {
    background: linear-gradient(274deg, rgba(253, 140, 44, 1) 35%, rgba(223, 49, 77, 1) 100%);
    background-clip: text;
    color: #0000;
}

.box_icon {
    max-width: 70px;
    height: 70px;
}

.red_bg {
    background: #df314d;
}


.mocup_img {
    max-width: 340px;
}

.shape.w-100 {
    max-width: 249px;
    position: absolute;
    left: 39px;
    top: -35px;
}

.blue_bg {
    background: #210053;
}

.border-box {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.border-btm {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact_box i {
    color: #df314d;
    font-size: 30px;
}

.contact_box p {
    font-size: 16px;
}

footer {
    padding: 40px 0 10px;
}

.mocup_img {
    position: relative;
    z-index: 2;
}

.footer_menu {
    list-style: none;
}



@media(max-width: 768px) {
    .banne_section {
        padding: 125px 0 0px;
    }

    .section_gap {
        padding: 40px 0;
    }

    .site_btn {
        font-size: 13px;
    }
}