@media screen and (max-width:991px) {
    iframe {
        margin-top: 20px;
    }
}

.main-nav{
    background-color: #198754;
}

.btn-lg:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 10px;   
}


.lightbutton {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    overflow: hidden;
    transition: 0.2s;
    font-family: 'Montserrat';
}

.lightbutton:hover {
    color: #000;
    background-color: #fff ;
    box-shadow: 0 0 5px #fff, 0 0 20px #fff, 0 0 40px #fff;
    transition-delay: 1s;
    color: #000;
}

a span {
    position: absolute;
    display: block;
}

a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff);
}

a:hover span:nth-child(1) {
    left: 100%;
    transition: 1s;
}

a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #fff);
}

a:hover span:nth-child(3) {
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
}

a span:nth-child(2) {
    bottom: 100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
}

a:hover span:nth-child(2) {
    bottom: -100%;
    transition: 1s;
    transition-delay: 0.25s;
}

a span:nth-child(4) {
    top: 100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
}

a:hover span:nth-child(4) {
    top: -100%;
    transition: 1s;
    transition-delay: 0.75s;
}

.button2 {
    text-align: center;
    color: #15f4ee;
    font-size: 16px;
    border: 5px solid #15f4ee;
    cursor: pointer;
    border-radius: 100px;
}

.button2:hover {
    box-shadow: 0 2px 5px 1px #15f4ee inset, 0 2px 5px 1px #15f4ee, 0 2px 5px 1px #15f4ee inset, 0 2px 5px 1px #15f4ee ;
    /* text-shadow: 0 0 5px #15f4ee, 0 0 5px #15f4ee ; */
    color: #15f4ee;
    transition: all 1s;
    background: transparent;
} 

.btn2 {
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    color: #fff;
    font-size: larger;
}
.btn2:hover {
    color: #fff;
    font-size: larger;
    background: linear-gradient(to right, #11111d, #47446d, #0b0920);
    transform: scale(1.03);
}
