@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    user-select: none;
}

.navigation__checkbox,
.navigation__button,
.navigation__icon,
.navigation__background,
.forphonelogo {
    display: none;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    background-color: rgb(255, 255, 231);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbg {
    background-color: rgb(255, 254, 254);
    border-bottom: 3px solid black;
}

#toggle {
    display: none;
}

.navbar {
    display: none;
}

nav .logo {
    margin: 10px;
    height: 8vh;
}

nav ul {
    margin: 20px 20px 20px 40px;
    align-items: center;
    display: flex;
    list-style: none;
}

nav ul li .navigation__link {
    font-weight: 430;
    position: relative;
    font-size: 1.1rem;
    color: black;
    margin: 25px;
    padding: 10px;
}

nav ul li .navigation__link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.175rem;
    left: 0;
    bottom: 0;
    background: #ea0e4b;
    transform: scale(0, 1);
    transition: transform 0.3s ease;
}

nav ul li .navigation__link:hover {
    text-decoration: none;
    color: #000;
}

nav ul li .navigation__link:hover::after {
    transform: scale(1, 1);
}

nav ul li .navigation__link i {
    text-align: center;
    font-size: 1.3rem;
}

/* For Caraousel */
.carousel-item img {
    width: 1400px;
    height: 400px;
}

/* For Card */
.card {
    border: transparent;
    background-color: transparent;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    z-index: -1;
}

.carditems {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 30px;
    height: 50vh;
    width: 20vw;
    background-color: white;
    animation: cardanim 2s ease-in-out infinite;
    z-index: -1;
}

.carditems .cardhead {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin: 5px;
}

.carditems .cardtext {
    font-size: 1rem;
    margin: 5px;
}

.card1 img {
    height: 9.3rem;
    width: 100%;
}

.card2 img {
    width: 100%;
    height: 9rem;
}

.card3 img {
    width: 100%;
    height: 9rem;
}

.card4 img {
    width: 100%;
    height: 9rem;
}

@keyframes cardanim {
    0% {
        border: 4px solid #ffdac3;
    }

    50% {
        border: 4px solid #fabc99;
    }

    75% {
        border: 4px solid #fdb890;
    }

    100% {
        border: 4px solid #ffdac3;
    }
}

@keyframes cardanim2 {
    0% {
        border: 4px solid #ffa8a8;
    }

    50% {
        border: 4px solid #fa6e6e;
    }

    75% {
        border: 4px solid #fd665b;
    }

    100% {
        border: 4px solid #ffa8a8;
    }
}

.steptext {
    margin-top: 10px;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}

.steptext p a {
    color: #000;
    text-decoration: none;
}

.steptext a i {
    color: #000;
}

.verification {
    display: none;
}

.dropdowniconi {
    transform: rotate(180deg);
}

.verfnone {
    display: none;
}

.verfp {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.verfdivclose p:hover {
    color: red;
    cursor: pointer;
}

.verf {
    align-items: center;
    border: transparent;
    background-color: transparent;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    animation: verfanim 0.8s ease-in-out 1;
    transition: ease-in-out;
}

.verfitems {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 60px;
    height: 50vh;
    width: 20vw;
    background-color: white;
    animation: cardanim2 2s ease-in-out infinite;
}

.verfitems .verftext {
    font-size: 1rem;
    margin: 5px;
}

.verfitems .verfhead {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin: 5px;
}

.verf1 img {
    height: 9.3rem;
    width: 100%;
}

.verf2 img {
    height: 9.3rem;
    width: 100%;
}

.verf3 img {
    height: 9.3rem;
    width: 100%;
}

.hrnone {
    display: none;
}

.hrno {
    display: none;
}

.hrdiv {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr {
    display: block;
    width: 50vw;
    border: #fcb084 2px solid;
    border-radius: 10px;
}

.hrdown {
    display: block;
    width: 50vw;
    border-radius: 10px;
    border: #fcb084 2px solid;
}

@keyframes verfanim {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.2;
    }

    40% {
        opacity: 0.4;
    }

    60% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.;
    }

    100% {
        opacity: 1;
    }
}



@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.to-up-dispnone {
    height: 20vh;
    position: fixed;
    right: 17px;
    bottom: 40px;
    z-index: 1000;
    cursor: pointer;
    padding: 10px;
    font-size: 1.2rem;
    color: red;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInDown 0.5s linear 1;
    opacity: 0;
}

.to-up-dispnone:hover {
    text-decoration: none;
    color: red;
}

.to-up-dispnone::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed red;
    border-radius: 50%;
    animation: to-top-rotate 10s linear infinite;
}

.to-up {
    height: 20vh;
    position: fixed;
    right: 17px;
    bottom: 40px;
    z-index: 1;
    cursor: pointer;
    padding: 10px;
    font-size: 1.2rem;
    color: red;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.to-updiv i {
    animation: mover 0.7s infinite alternate;
}

.to-up:hover {
    text-decoration: none;
    color: red;
}

.to-up::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed red;
    border-radius: 50%;
    animation: to-top-rotate 10s linear infinite;
}

@keyframes to-top-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes mover {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-4.5px);
    }
}


@keyframes fadeInDown {
    0% {
        opacity: 1;
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(10px);
    }
}

@media only screen and (max-width: 920px) and (min-width: 820px) {

    .carditems,
    .verfitems {
        height: 30vh;
        width: 20rem;
        margin: 40px;
    }
}

@media only screen and (max-width:1100px) and (orientation:landscape) {

    .carditems,
    .verfitems {
        height: 75vh;
        width: 20rem;
        margin: 40px;
    }
}