/* MENU START */

.menu-hoverr {
    position: relative;
    text-decoration: none;
}

.menu-hoverr::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background-color: #5755d9;
    bottom: -3px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.menu-hoverr:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

#dark-mode, #light-mode{
    transition: all .5s;
}

#dark-mode:hover{
    color: #5755d9;
}

#light-mode:hover{
    color: #5755d9;
}

.blob {
    display: block;
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 48% 52% 68% 32%/42% 28% 72% 58%;
    background-size: 500% 100%;
    padding: 30px;
    animation: blobber 30s 0s linear infinite, cobler 30s 0s linear infinite alternate;
    margin: 0 auto;
    margin-top: 50px;
    transition: all .5s;
    -webkit-animation: blobber 30s 0s linear infinite, cobler 30s 0s linear infinite alternate;
}


.blob:after {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 5px;
    left: 0;
    background-color: #5755d9;
    background-image: url("../img/mee.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* mix-blend-mode: multiply; */
    object-fit: cover;
    animation: blobber 30s 0s ease-in-out infinite, wobbler 15s 0s linear infinite alternate;
}

@keyframes blobber {
  0% {
    border-radius: 48% 52% 68% 32%/42% 28% 72% 58%;
  }
  5% {
    border-radius: 48% 52% 41% 59%/66% 37% 63% 34%;
  }
  10% {
    border-radius: 69% 31% 71% 29%/67% 31% 69% 33%;
  }
  15% {
    border-radius: 60% 40% 71% 29%/63% 65% 35% 37%;
  }
  20% {
    border-radius: 61% 39% 51% 49%/57% 58% 42% 43%;
  }
  25% {
    border-radius: 66% 34% 25% 75%/47% 30% 70% 53%;
  }
  30% {
    border-radius: 32% 68% 38% 62%/65% 60% 40% 35%;
  }
  35% {
    border-radius: 63% 37% 41% 59%/35% 38% 62% 65%;
  }
  40% {
    border-radius: 57% 43% 49% 51%/55% 71% 29% 45%;
  }
  45% {
    border-radius: 47% 53% 34% 66%/65% 36% 64% 35%;
  }
  50% {
    border-radius: 44% 56% 32% 68%/69% 26% 74% 31%;
  }
  55% {
    border-radius: 28% 72% 37% 63%/71% 44% 56% 29%;
  }
  60% {
    border-radius: 38% 62% 35% 65%/74% 53% 47% 26%;
  }
  65% {
    border-radius: 73% 27% 46% 54%/54% 47% 53% 46%;
  }
  70% {
    border-radius: 75% 25% 47% 53%/49% 53% 47% 51%;
  }
  75% {
    border-radius: 62% 38% 43% 57%/55% 60% 40% 45%;
  }
  80% {
    border-radius: 41% 59% 65% 35%/73% 50% 50% 27%;
  }
  85% {
    border-radius: 55% 45% 57% 43%/73% 61% 39% 27%;
  }
  90% {
    border-radius: 74% 26% 33% 67%/40% 65% 35% 60%;
  }
  95% {
    border-radius: 58% 42% 57% 43%/53% 45% 55% 47%;
  }
  100% {
    border-radius: 48% 52% 68% 32%/42% 28% 72% 58%;
  }
}
@keyframes cobler {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
/* @keyframes wobbler {
  0% {
    transform: rotateZ(8deg);
  }
  100% {
    transform: rotateZ(-8deg);
  }
} */

/* MENU FINISH */




/* ENTER START */

.my-name{
    color: #5755d9;
    transition: all .5s;
}

.my-name:hover{
    text-shadow: red -2px 0, cyan 2px 0;
    animation: myName 2s infinite;
}

@keyframes myName {
    0%{text-shadow: red -2px 0, cyan 2px 0;}
    50%{text-shadow: cyan -2px 0, red 2px 0;}
    100%{text-shadow: red -2px 0, cyan 2px 0;}
}

.enter-cnt{
    margin-top: 100px;
}

.enter-social{
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

.enter-social a{
    color: #5755d9;
    display: block;
    margin: 20px;
    transition: all .5s;
}

.enter-social a:hover{
    transform: scale(1.3);
}

.enter-btn{
    width: 170px;
    text-align: center;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    background-color: #5755d9;
    border: 1px solid transparent;
    color: white;
    padding-right: 30px;
    transition: all 1s;
}

.enter-btn:hover{
    color: #5755d9;
    background-color: white;
    border: 1px solid #5755d943;
}

.enter-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 75vh;
}

.contact-us{
    position: absolute;
    margin-left: 5px;
    transition: all .3s;
}

@keyframes msg-anm {
    0%{top: 10px;}
    50%{top: 15px;}
    100%{top: 10px;}
}

.enter-btn:hover .contact-us{
    transform: rotate(-270deg) !important;
    animation: msg-anm 1.5s infinite;
    animation-delay: 1s;
}

.mouse{
    position: relative;
}

.uil-arrow-down{
    position: absolute;
    animation: mouse-scroll 1s infinite;
    animation-delay: 2s;
}

@keyframes mouse-scroll {
    0%{top: 5px;}
    50%{top: -5px; color: #5755d9;}
    100%{top: 5px;}
}

/* ENTER FINISH */


/* ABOUT START */

#about-img{
    background-color: #5755d9;
    border-radius: 5px;
    width: 400px;
    box-shadow: 10px 10px 5px #ccc;
      -moz-box-shadow: 10px 10px 5px #ccc;
      -webkit-box-shadow: 10px 10px 5px #ccc;
      -khtml-box-shadow: 10px 10px 5px #ccc;
    margin-right: 20px;
    transition: all 1s;
    animation: about-img 10s infinite;
}

@keyframes about-img {
    0%{box-shadow: 10px 10px 5px #cccccc;}
    35%{box-shadow: -10px 10px 5px #cccccc;}
    70%{box-shadow: 10px -10px 5px #cccccc;}
    100%{box-shadow: -10px 10px -5px #cccccc;}
}

#about-img:hover{
    animation: about-img-hover 2s infinite;
}

@keyframes about-img-hover {
    0%{box-shadow: 10px 10px 5px #ccc;}
    35%{box-shadow: -10px 10px 5px #ccc;}
    70%{box-shadow: 10px -10px 5px #ccc;}
    100%{box-shadow: -10px 10px -5px #ccc;}
}

.right-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-area i{
    color: #5755d9;
}

.cv-btn{
    background-color: #5755d9;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all .5s;
}

.cv-btn:hover{
    color: #5755d9;
    background-color: white;
    border: 1px solid #5755d943;
    border-radius: 10px;
}

.cv-btn i{
    color: white;
}

.cv-btn:hover i{
    color: #5755d9;
}

/* ABOUT FINISH */


/* SKILLS START */

.skills span{
    font-weight: bold;
}

.html-skills, .css-skills, .design-skills, .video-skills, .word-skills, .excel-skills, .powerpoint-skills, .wordpress-skills{
    position: relative;
    background-color: #f4f4f4;
    width: 100%;
    height: 10px;
    margin-top: 10px;
    border-radius: 3px;
    animation: skills 2s;
}

.html-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 95%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .html-skills::after{
    content: '%95';
    position: absolute;
    top: -35px;
    right: 0;
} */

.css-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 90%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .css-skills::after{
    content: '%90';
    position: absolute;
    top: -35px;
    right: 0;
} */

.design-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 45%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .design-skills::after{
    content: '%45';
    position: absolute;
    top: -35px;
    right: 0;
} */

.video-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 50%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .video-skills::after{
    content: '%50';
    position: absolute;
    top: -35px;
    right: 0;
} */

.word-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 95%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .word-skills::after{
    content: '%95';
    position: absolute;
    top: -35px;
    right: 0;
} */

.excel-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 70%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .excel-skills::after{
    content: '%70';
    position: absolute;
    top: -35px;
    right: 0;
} */

.powerpoint-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 90%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .powerpoint-skills::after{
    content: '%90';
    position: absolute;
    top: -35px;
    right: 0;
} */

.wordpress-skills::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: 60%;
    border-radius: 3px;
    background-color: #5755d9;
}

/* .wordpress-skills::after{
    content: '%60';
    position: absolute;
    top: -35px;
    right: 0;
} */

@keyframes skills {
    0%{width: 0;}
    100%{width: 100%;}
}

/* SKILLS FINISH */


/* SERVICES START */

.cards{
    box-shadow: 0 0.1rem .2rem 0 rgba(140, 152, 164, 0.479);
    border-radius: 10px;
    padding: 40px;
    transition: all .5s;
}

.cards:hover{
    animation: cards 2s infinite;
}

@keyframes cards {
    0%{box-shadow: 0 0.1rem .2rem 0 rgba(140, 152, 164, 0.479);}
    50%{box-shadow: 0 0.1rem .7rem 0 rgba(9, 76, 144, 0.479);}
    100%{box-shadow: 0 0.1rem .2rem 0 rgba(140, 152, 164, 0.479);}
}

.popup-btn{
    color: #5755d9;
    cursor: pointer;
    transition: all .5s;
}

.popup-btn i{
    transition: all .5s;
    transition-delay: .5s;
}

.cards:hover .popup-btn i{
    margin-left: 10px;
}

.cards i{
    font-size: 25px;
    color: #5755d9;
}


.cards div{
    margin: 10px 0;
}

/* SERVICES FINISH */


/* MODAL START */

#html-modal, #css-modal, #bootstrap-modal, #ms-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: #19191a7f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

.popup-card{
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    margin: auto 20px;
    color: black;
}

.close-btn{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: all .5s;
}

.close-btn:hover{
    color: #5755d9;
    transform: scale(1.2) rotate(90deg);
}

.course-btn{
    color: #5755d9e0;
}

/* MODAL FINISH */


/* SLIDER START */

.slider-buttons{
    position: absolute;
    top: 0;
    right: 40px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: all .5s;
}

.slider-buttons button{
    display: block;
    margin: 5px 0;
    border: none;
    background-color: #cdd3d9;
    outline: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

#dot1{
    height: 30px;
    border-radius: 10px;
    background-color: #5755d9;
}

.slider{
    position: relative;
    margin: 10px 250px;
    border-radius: 20px;
}

.slider-page{
    display: grid;
    grid-template-columns: 250px 1fr;
    padding: 50px 30px;
    border-radius: 20px;
}

.sliders{
    position: absolute;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
}

.slider-img{
    position: relative;
}

.slider-img img{
    width: 300px;
    border-radius: 10px;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    position: absolute;
    top: -10px;
    left: -100px;
    transition: all .5s;
}

.slider-img img:hover{
    transform: rotate(-5deg) !important;
}

.slider-date{
    color: #7b7992;
    font-weight: 500;
}

.slider-header{
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-right: 30px;
}

.slider-p{
    color: #4e4a67;
    line-height: 1.5em;
}

.slider-btn button{
    background-color: none;
    outline: none;
    border: none;
    background-color: transparent;
}

.slider-btn a{
    color: #5755d9d8;
}

.slider-btn a:hover{
    color: #5755d9;
}

#slider1, #slider2, #slider3, #slider4, #slider5{
    transition: all .5s;
}

#dot1, #dot2, #dot3, #dot4, #dot5{
    transition: all .5s;
}

/* SLIDER FINISH */


/* CONTACT START */

.contact{
    background-color: rgba(204, 204, 204, 0.471);
}

.contact-header{
    color: #5755d9;
    font-weight: bolder;
    font-size: 20px;
}

#iframe-area{
    position: relative;
    overflow: hidden;
}

#iframe-area::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 105%;
    height: 55px;
    background-color: white;
    z-index: 999;
}

.contact #iframe-area::after{
    background-color: #e7e7e7;
}

.iframe{
    position: relative;
    border-radius: 10px;
}

.card-body i{
    color: #5755d9;
    font-size: 30px;
    margin-right: -10px;
}

.location{
    color: #7b7992 !important;
}

.card-text a{
    color: #7b7992;
}

.card-text a:hover{
    color: #5755d9;
}

.contact-social{
    text-align: center;
}

.contact-social a{
    margin: 0 5px;
    color: white;
    padding: 5px;
    border-radius: 5px;
    transition: all .5s;
}

.contact-social a:hover{
    background-color: white;
    color: #5755d9;
}


.contact-social-mobil{
    text-align: center;
    position: absolute;
    bottom: 40px;
    margin-left: -10px;
}

.contact-social-mobil a{
    margin: 0 10px;
    color: #5755d9be;
    padding: 5px;
    border-radius: 5px;
    transition: all .5s;
}

.contact-social-mobil a:hover{
    background-color: #5755d9;
    color: white;
}

/* CONTACT FINISH */


/* FOOTER START */

footer{
    background-color: #5755d9;
    margin-top: 30px;
}

.footer{
    color: white;
    padding: 15px;
}

.footer-a{
    color: white;
}

.footer-a:hover{
    color: white;
    text-decoration: underline;
}

/* FOOTER FINISH */


/* CONTEXT MENU START */

ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}
.contextmenu {
    box-shadow: 0 0 36px 1px #00000033;
    border-radius: 10px;
    border: 1px solid #a6a6a628;
    background-color: white;
    backdrop-filter: blur(20px);
    width: 250px;
    position: absolute;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.2s, opacity 0.1s;
    z-index: 999999;
}

.items li {
    padding: 2px 5px;
}

.items:first-child {
    margin-top: 3px;
}
.items:last-child {
    margin-bottom: 3px;
}
.items a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 1rem;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 300;
    font-size: 14px;
    border-radius: 5px;
}
.items a:hover {
    background-color: #91919142;
}

/* CONTEXT MENU FINISH */


/* SCROLL START */

#scroll-top{
    position: fixed;
    bottom: 80px;
    right: 20px;
    opacity: .2 !important;
    transition: all .5s;
    z-index: 9991;
}

#scroll-top:hover{
    opacity: 1 !important;
}

#scroll-top i{
    padding: 15px;
    border-radius: 10px;
    color: white;
    background-color: #5755d9c3;
    border: 2px solid transparent;
    transition: all .5s;
    cursor: pointer;
}



/* SCROLL FINISH */


/* QR CODE START */

#qr-code-area{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: #19191a7f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

#qr-code{
    position: relative;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0.1rem .2rem 0 rgba(140, 152, 164, 0.479);
}

#qr-code-close{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 20px;
    cursor: pointer;
    transition: all .5s;
}

#qr-code-close:hover{
    color: #5755d9;
    transform: rotate(90deg);
}

#qr-code img{
    border-radius: 10px;
    pointer-events: none;
}

/* QR CODE FINISH */


/* WEB INFO START */

#web-info-area{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: #19191a7f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

#web-info{
    position: relative;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0.1rem .2rem 0 rgba(140, 152, 164, 0.479);
}

#web-info img, #web-info p{
    float: left;
}

#web-info-close{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 20px;
    cursor: pointer;
    transition: all .5s;
}

#web-info-close:hover{
    color: #5755d9;
    transform: rotate(90deg);
}

/* WEB INFO FINISH */

.br447{
    display: none;
}

/* SHOP START */

.incele-btn{
    position: fixed;
    bottom: 70px;
    left: 20px;
}

.incele-btn a{
    background-color: #5755d9;
    border: 1px solid #5755d9;
    border-radius: 50px;
    padding: 5px 20px;
    color: white;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
    transition: all .5s;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.incele-btn a:hover{
    background-color: white;
    padding: 5px 20px;
    color: #5755d9;
}

.see-btn{
    border: none;
    width: 100%;
    background-color: #5755d9;
    border-radius: 50px;
}

.see-btn a{
    background-color: white;
    border: 1px solid #5755d9;
    color: #5755d9;
    padding: 5px 20px;
    border-radius: 50px;
    transition: all .5s;
    width: 100%;
}

.see-btn a:hover{
    background-color: #5755d9;
    border: 1px solid #5755d9;
    color: white;
}

.web-info div{
    margin-bottom: 10px;
}

/* SHOP FINISH */


/* CONTACT FORM START */


.mtt-3{
    margin-top: 10px !important;
}

.form-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.form-header{display: block; font-size: 14px;}

.form-label{
    margin: 5px;
    padding: 15px;
    padding-right: 20px;
    border-radius: 5px;
    background-color: #efeffe;
}

.form-input{
    width: 100%;
    border: none;
    margin: 5px auto;
    background: transparent;
    border-bottom: 1px solid #efeffe;
    transition: all .5s;
}
.textarea{
    min-height: 50px;
    max-height: 150px;
    min-width: 100%;
    max-width: 100%;
}

.form-label:hover .form-input{
    border-bottom: 1px solid #e2e2e2;
}

.form-button{
    background-color: #5755d9;
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    width: 150px;
    border: 1px solid #5755d9;
    cursor: pointer;
    box-shadow: inset 0 0 0 blue;
    transition: all .5s;
}

.form-button:hover{
    background-color: white;
    color: #5755d9;
    box-shadow: inset 150px 0px 0 white;
}

.form-icon{
    margin-right: 5px
}

@media screen and (max-width: 600px){
    .form-row{
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    form{
        margin-top: 40px;
    }
}

/* CONTACT FORM FINISH */


/* RESPONSIVE START */

@media screen and (max-width: 1200px) {
    .slider{
        margin: 10px 50px;
    }
}

@media screen and (max-width: 1100px) {
    .slider{
        margin: 10px 100px;
    }

    .blob {
        width: 350px;
        height: 350px;
        margin-top: 80px;
    }
}

@media screen and (max-width: 950px) {
    .blob {
        width: 300px;
        height: 300px;
        margin-top: 100px;
    }

    .js-br{
        display: none !important;
    }
}

@media screen and (max-width: 992px) {
    .slider{
        margin: 10px 20px;
    }

    .footer{
        padding: 30px;
    }

    .copyright-text{
        margin: 10px 0;
    }

    .js-br{
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .enter-cnt{
        margin-top: 50px;
    }

    .enter-social{
        height: 45vh;
    }

    .enter-text{
        height: 40vh;
    }

    .card-body i{
        margin-right: 0px;
    }

    .slider{
        margin: 0px;
    }

    .slider-img img{
        width: 230px;
        height: auto;
        left: -100px;
    }
    
    .slider-header{
        font-size: 24px;
        font-weight: 700;
        color: #0d0925;
    }

    .slider-page{
        display: grid;
        grid-template-columns: 150px 1fr;
        padding: 50px 30px;
        border-radius: 20px;
    }

    .slider-br{
        display: none;
    }

    .blob {
        width: 400px;
        height: 400px;
        margin-top: 50px;
    }

    .js-br{
        display: block !important;
    }
}

@media screen and (max-width: 700px) {

    .slider-img{
        text-align: center;
        margin: 0 auto;
    }
    
    .slider-img img{
        width: 200px;
        height: auto;
    }

    .slider-page{
        display: grid;
        grid-template-columns: 1fr; 
        grid-template-rows: 1fr 1fr; 
        padding: 50px 30px 40px 30px;
    }

    .slider-information{
        margin-top: 20px;
    }

    .js-br{
        display: none !important;
    }
}

@media screen and (max-width: 501px) {
    .blob {
        width: 350px;
        height: 350px;
        margin-top: 40px;
    }

    #scroll-top{
        bottom: 40px;
    }
}

@media screen and (max-width: 447px) {
    .blob {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }

    #about-img{
        object-fit: cover;
        width: 95%;
    }

    .br447{
        display: block;
    }

    .js-br{
        display: block !important;
    }
}

@media screen and (max-width: 400px) {

    iframe{
        margin-top: 30px;
    }

    #iframe-area::after{
        background-color: transparent;
        height: 5px;
    }
}

@media screen and (max-width: 380px) {
    .blob {
        width: 250px;
        height: 250px;
        margin-top: 40px;
    }

    #about-img{
        width: 95%;
    }

    .mouse{
        display: none;
    }

    .slider-buttons{
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        transform: rotate(-90deg);
    }
}



/* RESPONSIVE FINISH */

@media screen and (max-height: 500px) {
  .blob{
    margin: 50px 0;
  }
}