@charset "utf-8";
/* CSS Document */
.row {
    border-color: blue;
}
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,102,203, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler.navbar-toggler {
    border-color: rgb(255, 102, 203);
}
.image-box {
    overflow: hidden;
}
.image-box2 {
    overflow: hidden;
    width: 50%;
    height: 50%;
}
.image-box img {
    -webkit-transition: 1s linear;
    transition: 1s linear;
}
.image-box img.c img:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    /*-webkit-filter: grayscale(150%) blur(1px);*/
}
.marquee {
    /*overflow: hidden;*/
    border: 1px solid darkblue;
    background: darkblue;
    height: 40px;
    /*margin-top: 5px;*/
}
.circle {
    border-radius: 100%;
    display: block;
    width: 35px;
    height: 35px;
    /*overflow: hidden;*/
}
.circle img {
    width: 35px;
    height: 35px;
}
.dropbtn {
    /*background-color: #2430CA;*/
    color: black;
    padding: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    /*min-width: 160px;*/
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #f1f1f1
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    /*background-color: #0F00C1;*/
    color: blueviolet;
}
/* Container holding the image and the text */
.container {
    position: relative;
    text-align: center;
    color: black;
}
/* Bottom left text */
.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}
/* Top left text */
.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}
/* Top right text */
.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}
/* Bottom right text */
.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}
/* Centered text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 12px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}
#myBtn:hover {
    background-color: #555;
}
#myBtn2 {
    display: none;
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 99;
    font-size: 12px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}
#myBtn2:hover {
    background-color: #555;
}
