/* portfolio css  */

.portfolio .mysection {
    margin-top: 100px;
    margin-bottom: 50px;
}


.tab__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.tab__btn {
    text-shadow: 2px 2px 2px black;
    letter-spacing: 3px;
    flex-grow: 1;
    padding: 8px;
    margin: 0;
    border: none;
    font-size: 18px;
    color: #ffffff;
    /* text-transform: uppercase; */
    font-weight: bold;
    background: #002f42;
    cursor: pointer;
    opacity: 0.7;
}

.tab__btn--active {
    opacity: 1;
}

.tab__btn:hover {
    opacity: 1;
}

.tab__btn::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4491ff, #fdda0b, #b30101);
    transform-origin: center top;
    transform: scaleY(0);
    transition: transform 0.3s ease-in-out;
    opacity: 1;
}

.tab__btn:hover::before {
    transform: scaleY(1);
}

.tab__btn span {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    transition: color 0.5s ease;
}

.tab__btn:not(.tab__btn--active):hover span {
    color: #ffffff;
}

.tab__btn--active::before {
    height: 5px;
    background-image: linear-gradient(90deg, #4491ff, #fdda0b, #b30101);
    transform: scaleY(1);
}

.tab__item {
    display: none;
    width: 100%;
    padding: 20px;
    font-size: 14px;
    color: #fff;
    line-height: 1.4em;
    border-bottom: 1px solid #fdda0b;
    background: lightgray;
    animation: fadeEffect 0.6s ease;
}

.tab__item--active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}


/* privacy policy  */
.contact_us {
    background-color: #2f4f4f33;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 90px;
    margin-left: 90px;
    border-radius: 61px;
}



/* faq css  */

.mysection {
    margin-top: 100px;
}

.bread a {
    color: white;
    text-shadow: 1px 1px 1px black;
}

.bread a:hover {
    color: #002f42;
}

legend {
    text-align: center;
    background-color: #002f42;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 10px;
}

#submit {
    margin: 0px !important;
    padding: 10px 35px !important;
    background-color: #f6850b;
    color: white;
    border: 2px solid #07193d;
}

.form-check-label {
    font-weight: 100 !important;
}

.feedback .contact_us {
    box-shadow: 0px 1px 7px black;
    background-color: #2f4f4f08;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-right: 90px;
    margin-left: 90px;
    border-radius: 10px;
}