* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: #fff;
}

@font-face {
    font-family: 'blankaregular';
    src: url('./fonts/blanka-regular.woff2') format('woff2'),
        url('/fonts/blanka-regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

.dark-light i,
.searchtoggle i {
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.20s;
    top: 25px;
    margin: 0 0 0 -15px;
}

.dark-light i.sun {
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun {
    opacity: 1;
    pointer-events: auto;
}

.dark-light.active i.moon {
    opacity: 0;
    pointer-events: none;
}

@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Kaushan+Script&family=League+Spartan:wght@300&family=Lobster&family=Lora:wght@500&family=Montserrat:ital,wght@1,300&family=Shadows+Into+Light+Two&display=swap');
/* font-family: 'Cabin', sans-serif;
font-family: 'Kaushan Script', cursive;
font-family: 'League Spartan', sans-serif;
font-family: 'Lobster', cursive;
font-family: 'Lora', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Shadows Into Light Two', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Kaushan+Script&family=League+Spartan:wght@300&family=Lobster&family=Montserrat:ital,wght@1,300&family=Shadows+Into+Light+Two&display=swap');
/* font-family: 'Montserrat', sans-serif; */
/* font-family: 'Cabin', sans-serif; */
/* font-family: 'League Spartan', sans-serif; */
/* font-family: 'Lobster', cursive; */
/* font-family: 'Shadows Into Light Two', cursive; */
/* font-family: 'Kaushan Script', cursive; */

.navbar {
    /* background: white; */
    box-shadow: 0px 17px 20px 0 #0000007a;
    border-radius: 0 0 25px 25px;
    background: rgba(255, 254, 254, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


.navbar-brand {
    padding: 10px 0px 10px !important;
    font: 500 normal 40px/12px 'blankaregular' !important;
    letter-spacing: 0.2rem !important;
    padding: 0 20px 20px !important;
    color: #000 !important;
}

/* .bg-dark {
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
    --bs-bg-opacity: 0 !important;
} */

.navbar-collapse  {
    justify-content: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin: 0px 0px 0px 0px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 20px !important;
    /* border-radius: 5px; */
    font-weight: 500;
    color: #000;
    /* background-color: #000; */
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    background: #000 !important;
    color: #fff !important;
    border-radius: 10px;
    box-shadow: 1px 11px 20px 0px #00000099;
}

.navbar-toggler label {
    display: flex !important;
    flex-direction: column;
    width: 50px;
    cursor: pointer;
}

.navbar-toggler label span {
    background: #000;
    border-radius: 10px;
    height: 5px;
    margin: 7px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.navbar-toggler span:nth-of-type(1) {
    width: 50%;
}

.navbar-toggler span:nth-of-type(2) {
    width: 100%;
}

.navbar-toggler span:nth-of-type(3) {
    width: 75%;
}

.navbar-toggler input[type="checkbox"] {
    display: none;
}


.navbar-toggler input[type="checkbox"]:checked~span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(8px, 0px)
}


.navbar-toggler input[type="checkbox"]:checked~span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg)
}


.navbar-toggler input[type="checkbox"]:checked~span:nth-of-type(3) {

    transform-origin: bottom;
    width: 50%;
    transform: translate(30px, -11px) rotatez(45deg);
}

.profile-content {
    height: 120vh;
    background: linear-gradient(32deg, #912302c4, #5b0769b2, #001c26de, #23d5abaf);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.logo{
    text-align: center;
}
.logo-span{
    display: inline-block;

}
.logo-span img{
display: inline-block;
    transform: translate(-15px, -3px);
}

header {
    background: url(./img/bg-img.webp) no-repeat center center/cover;
    height: 120vh;
    color: #fff;
    position: relative;
}

:root {
    --bg-color: #fff;
    --bg-primary: #f1f1f1;
    --text-color: #000;
    --text-secondary: #222222;
    /* #262525 */
    --text-primary: #999999;
}


body.dark {
    --bg-primary: #181818;
    --bg-color: #1c1c1c;
    --text-color: #fff;
    --text-secondary: #fff;
    --bg-secondry: #fff;
    --text-primary: #999999;
}

.blog-slider {
    width: 95%;
    position: relative;
    max-width: 700px;
    margin: auto;
    /* background-color: #fff; */
    background-color: var(--bg-color);
    box-shadow: inset;
    padding: 25px;
    height: 320px;
    transition: all 0.3s;
    border-radius: 10px;
    top: 30%;
    box-shadow: 20px 19px 0px 2px #8431b1;
}

.blog-slider__item {
    display: flex;
    align-items: center;
}

.blog-slider__text .social i {
    color: var(--text-color);
    font-size: 25px;
    margin: 0 3px;
}


.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
    opacity: 1;
    transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
    transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
    transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
    transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(5) {
    transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(6) {
    transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(7) {
    transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(8) {
    transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(9) {
    transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(10) {
    transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(11) {
    transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(12) {
    transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(13) {
    transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(14) {
    transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(15) {
    transition-delay: 1.7s;
}

.blog-slider__img {
    width: 200px;
    flex-shrink: 0;
    height: 200px;
    border-radius: 20px;
    transform: translateX(30px);
    overflow: hidden;
}

.blog-slider__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.8;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    /* border-radius: 20px; */
    transition: all 0.3s;
}

.blog-slider__content {
    padding-left: 70px;
    text-align: start;
    max-width: 400px;
}

.blog-slider__content>* {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}

.blog-slider__code {
    color: #000;
    margin: 5px;
    display: block;
    font-weight: 900;
    font-size: 25px;
    font-family: 'Kaushan Script', cursive;
    background: -webkit-linear-gradient(345deg, #673AB7 0%, #0d96d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'League Spartan';
}

.blog-slider__text {
    /* color: #555; */
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5em;
    font-weight: 600;
    font-family: 'Cabin';
    letter-spacing: 0.5px;

}

.blog-slider__text .social {
    margin: 20px 0px -10px;
}

.blog-slider__text .social img {
    width: 25px;
    margin: 0px 5px;
    background: none;
}

.blog-slider__text .link-card a {
    color: #fff;
    text-decoration: none;
    background: #000;
    padding: 10px 20px;
    border-radius: 10px;
}


.blog-slider__button:hover {
    background-color: #0000;
    color: #fff;
}

.blog-slider__button {
    background-color: #000;
    display: inline-flex;
    padding: 15px 35px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(323deg, #9C27B0, #3F51B5);
    box-shadow: -1px 12px 19px 0 #000000db;
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 20px 0;
}

.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    /* display: block; */
    border-radius: 10px;
    background: #000;
    opacity: 0.6;
    transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #b62c8d;
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
    margin: 20px 0;
}


.sec-1 {
    padding: 100px 0;
    background: #f4f5f9;
}

.sec-1 h3{
        text-align: center;
        margin: 0 0 50px;
text-transform: capitalize;
font-family: 'Lora', serif;
    }

.sec-1 .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
    flex-wrap: wrap;
}

.sec-1 .container .item h3,
.sec-2 .container .item h3 {
    color: #2d2d2d;
    margin: 10px 0 0;
    font-family: 'Cabin', sans-serif;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: capitalize;
    line-height: 1.52em;
}

.sec-1 .container .item-1 {
    background: #c5cbd5;
    box-shadow: 0 20px 25px hsla(0, 0%, 56%, .22);
    border-radius: 25px;
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 25px;
    transition: all 3s;
    /* transform: translateY(-100px);
    opacity: 0; */
}

.sec-1 .container .item-2 {
    transform: translate(0px, -20px);
    /* transition: all 4s;
    transform: translateY(-100px);
    opacity: 0; */
}

.sec-1 .container .item-3 {
    background: blue;
    box-shadow: 0 20px 25px rgba(46, 97, 210, .3);
    border-radius: 25px;
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 25px;
    transition: all 3s;
    /* transform: translateY(-100px); */
}

.sec-1 .container .item-4 {
    transform: translate(0px, -20px);
}

.sec-1 .container .item-5 {
    background: #fa3f6c;
    box-shadow: 0 20px 25px rgba(250, 63, 108, .3);
    border-radius: 25px;
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 25px;
    /* transform: translateY(-100px);
    transition: all 4s;
    opacity: 0; */
}

.sec-2 {
    padding: 50px 0;
    background: #fcfcfc;
}

.sec-2 h2 {
    font-size: 2rem;
    text-align: center;
    font-family: 'Kaushan Script', cursive;
    color: #616161;
    font-weight: 400;
    margin: 0 0 50px;
}

.sec-2 .container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    text-align: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.sec-2 .container .item h3 {
    font-size: 15px !important;
}

.sec-2 .container .items:hover {
    box-shadow: 0px 20px 40px hsl(0deg 0% 44% / 36%);
    scale: 1.05;
}

.sec-2 .container .items {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px hsla(0, 0%, 44%, .25);
    padding: 15px;
    margin: 0 auto 33px;
    transition: all 0.4s;
    width: fit-content;
}

.col-3 {
    margin: 50px 0;
}

.sec-3 {
    padding: 100px;
    background: #f3f0f03b;
}

.sec-3 .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sec-3 .container .item img {
    width: 400px;
    box-shadow: 0 22px 20px 0 #b5baedb5;
    border-radius: 50px;
}

.sec-3 .container .content {
    width: 500px;
    margin: auto;
}

.sec-3 .container .content h1 {
    font-weight: 700 !important;
    font-size: 2rem;
    font-family: 'Kaushan Script', cursive;
}

.sec-3 .container .content p {
    font-weight: 500;
    font-size: 1rem;
    color: #8f8f8f;
    margin: 20px 0 0;
}

.cssbuttons-io-button {
    background: #0e37ad;
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #714da6;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    box-shadow: 1px 14px 30px #00000080;
    margin: 20px 0 0;
    font-family: "Nunito Sans", sans-serif;
}

.cssbuttons-io-button a{
    color: #ffffff;
    text-decoration: none;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}


.sec-3 .container .icons h3 {
    color: gray;
    font-size: 1em;
    line-height: 1.5em;
    margin: 18px 0 0 0;
}

.sec-3 .container .icons {
    width: 200px;
    height: 200px;
    text-align: center;
}

.sec-3 .container .icons img {
    box-shadow: 0px 11px 25px rgb(111 111 111 / 30%);
    border-radius: 10px;
    width: 90px;
    padding: 15px;
}

.sec-3 .item {
    width: 500px;
}

.sec-4 {
    display: none;
}

footer {
    background-color: #161616;
    padding: 50px;
}

footer .col {
    text-align: center;
    height: 300px;
}

footer h1 {
    color: #fff !important;
    font-family: 'blankaregular';
    letter-spacing: 2px;
}

footer h3 {
    color: #fff;
    font-family: 'League Spartan';
    font-weight: 600;
    text-transform: lowercase;
}

footer .nav-link {
  color: #737373;
  font-weight: 500;
}

footer .nav-link:hover {
    color: #ffffff !important;
}

footer li {
    list-style: none;
    color: #312c2c;
    font-weight: 500;
}

footer p {
    color: #666666;
    font-family: 'League Spartan';
    font-size: 18px;
    font-weight: 600;
}

footer h5 {
    font-size: 14px;
    color: #857f7f;
    font-weight: 600;
    font-family: 'League Spartan';
    display: inline-flex;
    text-transform: capitalize;
    flex-direction: column;
}



@media screen and (max-width:430px) {

    header {
        height: 120vh;
    }

    .blog-slider {
        box-shadow: none
    }

    hr {
        display: none;
    }

    .navbar-brand{
        font-size: 23px!important;
    }

    .profile-content {
        height: 120vh;
    }

    .blog-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 405px;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blog-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }


    .blog-slider {
        /* background: linear-gradient(348deg, black, #094be736); */
        border-radius: 25px;
        height: 450px;
        border-radius: 25px;
        top: 35%;
        border: none;
    }

    .blog-slider__img {
        width: 250px;
        height: 250px;
        border-radius: 20px;
        transform: translate(0px, -140px);
    }

    .blog-slider__item {
        display: flex;
        flex-direction: column;
    }

    .blog-slider__button {
        display: inline;
        padding: 15px 40px;
    }

    .blog-slider__title {
        font-size: 22px;
    }

    .blog-slider__content {
        text-align: center;
        max-width: 600px;
        transform: translate(-40px, -140px);
    }


    .navbar-expand-lg {
        width: 95%;
    }

    .profile-content .container {
        max-width: 360px;
        left: 20px;
        text-align: center;
        flex-direction: column;
    }

    .profile-content .container {
        left: 25px;
        top: 200px;
        /* filter: drop-shadow(0px 0px 6px orange); */
        flex-direction: column;
        border: none;
        max-width: 360px;
        border-radius: 40px;
    }

    .sec-1 .container {
        flex-direction: column;
    }

    .sec-1 .container .item{
        margin: 20px 0;
    }

    .col-3 {
        width: 50% !important;
    }

    .sec-3 {
        padding: 20px;
    }

    .sec-1 .container .item-2 {
        display: none;
    }

    .sec-1 .container .item-4 {
        display: none;
    }

    .sec-3 .container .content {
        width: fit-content;
    }

    .sec-3 .container .icons {
        width: 100px;
        margin: 50px 0 0;
    }

    footer .row{
        flex-direction: column;
      }
      footer .row .col{
        margin: 20px 0;
      }

}