@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Ubuntu:wght@300;400;500;700&display=swap');


* {
    font-family: "Ubuntu", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --background-color: #f1f1f1;
    --hover-color: rgb(102, 40, 245);
    --prymari-color: #eff3f6;
    --color: #fff;
    --color-1: #000000;
    --btn-color: #e60101;
    --btn-bg: #1900bc;
    --secondary-color: #f0c456;
    --last-color: #ffa155;
    --title-heading-color: #ac0000;
}


/* navbar */

.navbar {
    background: var(--btn-color);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar .logo {
    text-decoration: none;
    color: #122f48;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
}

/* nav menu button */

.menu_btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.navbar .menu_btn__lines::before,
.navbar .menu_btn__lines::after {
    content: "";
    position: absolute;
}

.navbar .menu_btn__lines,
.navbar .menu_btn__lines::before,
.navbar .menu_btn__lines::after {
    width: 1.5rem;
    height: 3px;
    background: var(--color);
    transition: all 0.4s ease-in-out;
}

.navbar .menu_btn__lines::before {
    transform: translateY(-0.5rem);
}

.navbar .menu_btn__lines::after {
    transform: translateY(0.5rem);
}

.menu_items li a {
    color: var(--color);
}

.navbar .menu_items {
    display: flex;
    align-items: center;
}

.navbar ul li {
    list-style: none;
    transition: 0.3s ease;
}

.navbar li:hover {
    background: var(--btn-bg);
}

.navbar ul li .arrow {
    transition: all 0.3s ease-out;
}

.navbar ul li a {
    text-decoration: none;
    color: #112f48;
}

/* dropdown menu */

.navbar .dropdown {
    position: relative;
}

.dropdown_menu li:hover {
    background: var(--btn-color);
}

.navbar .dropdown_menu,
.menu_right {
    position: absolute;
    background: var(--btn-bg);
    width: 220px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 55px;
    border-top: 1px solid white;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu_right {
    top: 0;
    left: 100%;
}

.navbar .dropdown_menu,
.menu-left {
    right: 0;
}

.navbar .menu-left {
    left: -100%;
}

.navbar .menu_item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1.5rem;
    color: var(--color);
    font-size: 16px;
}

.menu_item.first_item {
    padding: 16px 16px;
}

.navbar .dropdown:hover .dropdown_menu {
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown_right:hover .menu_right {
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown_right:hover .menu-left {
    left: -100%;
}

/* mega menu  */

.menu_item i {
    padding-left: 6px;
    padding-top: 5px;
}

.navbar .mega_menu {
    position: absolute;
    left: 376px;
    width: auto;
    top: 55px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega_menu .content {
    background: rgba(25, 0, 188, 0.8);
    display: flex;
    width: 100%;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.mega_menu .content li:hover {
    background: rgba(188, 0, 0, 0.8);
    border: none;
}

.content li {
    border: 1px solid black;
    border: none;
    padding: 8px 14px;
}

.blog .content {
    grid-template-columns: repeat(4, 1fr);
}

.content .col {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
}


.content .col p {
    line-height: 1.2rem;
    margin-top: 5px;
    color: #112f48;
}

.content .col .read-more {
    font-size: 16px;
    display: flex;
    padding-top: 1rem;
    color: #03a9f4;
    transition: color 0.3s ease;
    justify-content: flex-end;
    padding-right: 10px;
}

.menu_items li:hover .mega_menu {
    opacity: 1;
    visibility: visible;
}

/* animation menu hamburger */
.menu_btn.open .menu_btn__lines {
    transform: translateX(1rem);
    background: transparent;
}

.menu_btn.open .menu_btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: var(--color);
}

.menu_btn.open .menu_btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: var(--color);
}

/* search item start */
.search_item
#search svg {
    fill: var(--color);
    position: absolute;
    height: 30px;
    width: 36px;
    top: 10px;
    right: 25px;
    opacity: 1;
}

#search svg:hover,
#search.active > svg {
    opacity: 1;
}


/* Searchbox relevant style */
#search_btn {
    position: relative;
    background: var(--first-color);
    width: auto;
    margin: 0px 120px;
    overflow: hidden;
    height: 0px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#search_btn.show {
    animation: reveal-search ease 0.75s forwards;
    height: 50px;
    margin: 10px 120px;
}

#search_btn.hide {
    animation: hide-search ease 0.25s forwards;
}

#search_btn svg {
    margin: auto 0;
    position: absolute;
    height: 35px;
    fill: var(--secont-color);
    top: 0;
    bottom: 0;
}

#search_btn svg.magnify {
    left: 10px;
    right: 0;
    fill: var(--secont-color);
}

#search_btn svg.close {
    right: 20px;
}

#search_btn svg.close:hover {
    cursor: pointer;
}

#search_btn svg {
    font-size: 18px !important;
}

#search_btn input {
    width: calc(100% - 160px);
    line-height: 50px;
    font-size: 18px;
    max-height: 90px;
    border: 0;
    padding: 0 10px;
    font-weight: 300;
    color: var(--secont-color);
    padding-left: 70px;
    background: transparent;
}

#search_btn input:focus {
    outline: 0;
}

#search_btn input.input-placeholder {
    color: var(--first-color);
}

.search-input::placeholder {
    font-size: 16px;
}


@keyframes reveal-search {
    0% {
        height: 0;
        transform: scaleX(0);
        border-radius: 50%;
    }

    50% {
        height: 80px;
        transform: scaleX(0);
        border-radius: 50%;
    }

    100% {
        transform: scaleX(1);
        border-radius: 0;
    }
}

@keyframes hide-search {
    0% {
        height: 80px;
        transform: scaleY(1);
    }

    100% {
        height: 0;
        transform: scaleY(0);
    }
}

/* search item end */

/* Responsive style */


@media screen and (max-width:1285.60px) {
    .navbar .mega_menu {
        left: auto;
        width: auto;
    }
}

@media screen and (max-width:1225px) {
    .menu_item.first_item {
        padding: 16px 10px;
    }
}

@media screen and (max-width:1107px) {
    .menu_item.first_item {
        padding: 16px 7px;
    }
}

@media screen and (max-width: 1080px) {
    .navbar {
        padding: 10px 20px;
    }

    .logo {
        display: none;
    }

    .overflow {
        overflow: hidden;
    }

    .overlay {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .overlay--active {
        opacity: 1;
        visibility: visible;
    }

    .menu_btn {
        display: flex;
    }

    .navbar .menu_items {
        position: fixed;
        height: 100%;
        max-height: initial;
        overflow-y: auto;
        width: 48%;
        top: 117px;
        left: 0px;
        background: var(--btn-bg);
        display: block;
        transform: translateX(-100vh);
        transition: 0.3s ease-out;
        padding-bottom: 100px;
    }

    .navbar .menu_items ul {
        color: var(--color);
    }

    .menu_items.open {
        transform: translateY(0);
    }

    .menu_items.open {
        margin-top: 57px;
    }

    .menu_items li a {
        padding: 10px 1rem;
        display: block;
        font-size: 18px;
    }

    .menu_items .dropdown_right .right-arrow {
        transform: rotate(90deg);
    }


    /* DROPDOWN, MEGA MENUS */
    .menu_items .dropdown_menu,
    .menu_items .menu_right,
    .menu_items .mega_menu {
        position: static;
        opacity: 1;
        top: 4rem;
        visibility: visible;
        margin-left: -18px;
        width: auto;
        max-height: 0;
        transform: scaleX(0);
        transform-origin: left;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .menu_items .dropdown_menu,
    .menu_items .menu_right {
        padding-left: 10px;
        width: 102%;
        margin-left: -10px;
    }

    .menu_items .mega_menu .col {
        padding-left: 1rem;
    }

    .expand_btn.open+.sample {
        max-height: 100%;
        transform: scaleZ(1);
    }

    .expand_btn.open+.blog.sample {
        max-height: 100%;
        transform: scaleZ(1);
        max-width: fit-content;
    }

    .navbar .sample {
        border-top: none;
    }

    .sample li {
        margin: 0;
    }

    .sample li:last-child {
        border-bottom: none;
    }

    .sample li a {
        font-size: 1rem;
    }

    .mega_menu .content {
        grid-template-columns: auto;
        flex-direction: column;
        padding: 0 0 0 10px;
    }

    .mega_menu .content .col {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .col .mega-links li,
    .col .mega-links li a {
        padding: 0 0.5rem;
    }


    .content .col .mega-links {
        border-left: 0;
        padding-left: 0.5rem;
    }

    .col .mega-links li {
        margin: 0;
    }
}

.search_btn {
    font-size: 16px;
}

.nav_logo {
    padding: 20px 20px 10px 15px;
}

@media (max-width: 575px) {
    .nav_logo {
        padding: 20px 20px 10px 30px;
    }

    .search_btn {
        font-size: 16px;
        padding: 0px 20px 0px 0px;
    }

    .logo {
        display: none;
    }

    #search_btn.show {
        margin: 0px 0px;
    }
}

/* navbar end */

/* About DCMC start */

.test {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/notice-bord.png");
    position: relative;
}

.stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    position: relative;
    color: #fff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    padding-top: 0.65rem;
    padding-left: 0.5rem;
    padding-right: 0.36rem;
    padding-bottom: 0.2rem;
}

/* .slash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    transform-origin: center center;
    width: 0.15rem;
    height: 145%;
    background: #fff;
    z-index: 4;
    -webkit-animation: slash 6s ease-in infinite;
    animation: slash 6s ease-in infinite;
}

.slash:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.75rem;
    height: 120%;
    background: #232323;
    z-index: -1;
}

.slash:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
} */

.sides {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.sides .side {
    position: absolute;
    background: #fff;
}

.sides .side:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 0.15rem;
    transform: translateX(-101%);
    -webkit-animation: side-top ease 6s infinite;
    animation: side-top ease 6s infinite;
}

.sides .side:nth-child(2) {
    top: 0;
    right: 0;
    width: 0.15rem;
    height: 100%;
    transform: translateY(-101%);
    -webkit-animation: side-right ease 6s infinite;
    animation: side-right ease 6s infinite;
}

.sides .side:nth-child(3) {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.15rem;
    transform: translateX(101%);
    -webkit-animation: side-bottom ease 6s infinite;
    animation: side-bottom ease 6s infinite;
}

.sides .side:nth-child(4) {
    top: 0;
    left: 0;
    width: 0.15rem;
    height: 100%;
    transform: translateY(101%);
    -webkit-animation: side-left ease 6s infinite;
    animation: side-left ease 6s infinite;
}

.text {
    position: relative;
}

.text--backing {
    opacity: 0;
}

.bcmc_text {
    padding-left: 15px;
}

.text--left {
    position: absolute;
    top: 0;
    left: 0;
    width: 51%;
    height: 100%;
    overflow: hidden;
}

.text--left .inner {
    transform: translateX(100%);
    -webkit-animation: text-left 6s ease-in-out infinite;
    animation: text-left 6s ease-in-out infinite;
}

.text--right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.text--right .inner {
    transform: translateX(-200%);
    -webkit-animation: text-right 6s ease-in-out infinite;
    animation: text-right 6s ease-in-out infinite;
}

@-webkit-keyframes slash {
    0% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    13% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    16.6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }
}

@keyframes slash {
    0% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    13% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    16.6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }
}

@-webkit-keyframes text-left {
    0% {
        transform: translateX(100%);
    }

    10% {
        transform: translateX(0);
    }

    58% {
        transform: translateX(0);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes text-left {
    0% {
        transform: translateX(100%);
    }

    10% {
        transform: translateX(0);
    }

    58% {
        transform: translateX(0);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

@-webkit-keyframes text-right {
    0% {
        transform: translateX(-200%);
    }

    10% {
        transform: translateX(-100%);
    }

    58% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-300%);
    }
}

@keyframes text-right {
    0% {
        transform: translateX(-200%);
    }

    10% {
        transform: translateX(-100%);
    }

    58% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-300%);
    }
}

@-webkit-keyframes side-top {

    0%,
    14% {
        transform: translateX(-101%);
    }

    24%,
    55% {
        transform: translateX(0);
    }

    65% {
        transform: translateX(101%);
    }

    100% {
        transform: translateX(101%);
    }
}

@keyframes side-top {

    0%,
    14% {
        transform: translateX(-101%);
    }

    24%,
    55% {
        transform: translateX(0);
    }

    65% {
        transform: translateX(101%);
    }

    100% {
        transform: translateX(101%);
    }
}

@-webkit-keyframes side-right {

    0%,
    14%,
    23% {
        transform: translateY(-101%);
    }

    30%,
    62% {
        transform: translateY(0);
    }

    72% {
        transform: translateY(101%);
    }

    100% {
        transform: translateY(101%);
    }
}

@keyframes side-right {

    0%,
    14%,
    23% {
        transform: translateY(-101%);
    }

    30%,
    62% {
        transform: translateY(0);
    }

    72% {
        transform: translateY(101%);
    }

    100% {
        transform: translateY(101%);
    }
}

@-webkit-keyframes side-bottom {

    0%,
    14%,
    24%,
    28% {
        transform: translateX(101%);
    }

    37%,
    70% {
        transform: translateX(0);
    }

    79% {
        transform: translateX(-101%);
    }

    100% {
        transform: translateX(-101%);
    }
}

@keyframes side-bottom {

    0%,
    14%,
    24%,
    28% {
        transform: translateX(101%);
    }

    37%,
    70% {
        transform: translateX(0);
    }

    79% {
        transform: translateX(-101%);
    }

    100% {
        transform: translateX(-101%);
    }
}

@-webkit-keyframes side-left {

    0%,
    14%,
    24%,
    34%,
    35% {
        transform: translateY(101%);
    }

    44%,
    79% {
        transform: translateY(0);
    }

    86% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

@keyframes side-left {

    0%,
    14%,
    24%,
    34%,
    35% {
        transform: translateY(101%);
    }

    44%,
    79% {
        transform: translateY(0);
    }

    86% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

@media (max-width: 768px) {
    .test {
        height: 250px;
        /* Further reduced height for smaller screens */
    }

    .wrapper {
        font-size: 1.2rem;
        /* Further reduced font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .test {
        height: 200px;
        /* Reduced height for very small screens */
    }

    .wrapper {
        font-size: 1rem;
        /* Further reduced font size for very small screens */
    }
}

/* About DCMC end */



/* notice bord start */
.notice_bord_all_item {
    padding: 30px 0px 0px 0px;
}

.notice_bord_all_item h5 {
    font-size: 18px;
    font-weight: 600;
    padding: 0px 0px 10px 0px;
}

.notice_bord_section_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
    justify-content: center;
background-size:cover;
background-position:center;
}

.notice_bord_section_img img {
  width: 100%;
  height: 100%;
  object-fit:contain;

}
.departmental_objectives_items h5 {
    font-size: 17px;
    font-weight: 600;
    padding: 18px 0px 8px 0px;
}

.departmental_objectives_items p {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.departmental_objectives_list {
    padding-left: 10px;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

/* notice bord end */



/* dhaka medical footer start */
#medical_footer_items {
    padding: 50px 0px 40px 0px;
    background: var(--btn-bg);
}

.Container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0 15px;
}

.short_text h4 {
    font-weight: 600;
    font-size: 22px;
    color: var(--background-color);
}

.medical_all_item {
    padding: 0px 15px;
}

.under_lines {
    width: 245px;
    height: 2.5px;
    background: var(--background-color);
}

.medical_footer_text {
    padding: 5px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_list_1 li,
.footer_list_2 li {
    padding: 15px 0px 0px 0px;
    list-style-type: none;
}

.footer_list_1 a,
.footer_list_2 a {
    font-size: 16px;
    text-decoration: none;
    color: var(--background-color);
    font-weight: 400;
    transition: 0.5s;
}

.footer_list_1 a:hover,
.footer_list_2 a:hover {
    color: var(--btn-color);
}

.footer_social_item {
    display: flex;
}

.footer_social_item .icon {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 40px;
    height: 40px;
    border: 1px solid #575ea8;
    font-size: 16px;
    border-radius: 50%;
    margin: 0px 10px 0px 0px;
    transition: 0.5s;
}

.footer_social_item .icon:hover {
    background: #6b6d79;
}

.footer_contact_item {
    display: flex;
    padding: 14px 0px 0px 0px;
}

.medical_footer_contact_icon,
.medical_footer_location_icon {
    font-size: 38px;
}

.medical_footer_contact_text {
    padding: 0px 0px 0px 20px;
}

.callname_heading a {
    font-size: 18px !important;
}

.medical_footer_contact_callnamebar a,
.medical_footer_contact_faxnamebar a,
.medical_footer_location_text a {
    font-size: 14px;
    text-decoration: none;
    color: var(--background-color);
}

.medical_footer_location_text {
    padding-left: 28px !important;
}

.medical_footer_contact_text a:hover,
.medical_footer_location_text a:hover {
    color: var(--background-color);
}

.madical_collage_location {
    margin: 18px 0px 0px 0px;
}

.madical_collage_location iframe {
    width: 100%;
    height: 250px;
}

@media screen and (max-width: 770px) {
    .medical_all_item {
        margin: 20px 0px;
    }

    .medical_footer_text {
        display: block;
        padding: 0 !important;
    }
}

@media screen and (max-width: 576px) {
    .Container {
        padding: 0 10px;
    }

    .medical_footer_contact_item,
    .footer_social_item {
        justify-content: center;
    }

    .medical_footer_contact_icon,
    .medical_footer_location_icon {
        font-size: 28px;
    }

    .callname_heading a {
        font-size: 16px !important;
    }

    .madical_collage_location iframe {
        height: 200px;
    }
}


/* dhaka medical footer end */

/* dhaka medical copyright start */
#medical_copyright_items {
    background: var(--btn-color);
    text-align: center;
}

.medical_copyright_item {
    padding: 16px 0px;
}

.medical_copyright_item a {
    font-weight: 600;
    text-decoration: none;
    color: var(--background-color);
}

.medical_copyright_item a:hover {
    color: var(--background-color);
}

/* dhaka medical copyright end */




















/* Back To Top button start */

#back_to_top {
    padding: 20px;
}

#backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

#backToTopBtn:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    transform: rotate(360deg) scale(1.1);
}

#backToTopBtn span {
    color: white;
    font-size: 24px;
    transition: all 0.5s ease;
}

/* Pulsating Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    70% {
        box-shadow: 0 0 20px 20px rgba(102, 126, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* Back To Top button end */
