/* Style the navbar */
/*.navbar {*/
/*    transition: background-color 2s ease;*/
/*}*/
a{
    text-decoration: none;
    color: #000;
}

.insta{
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}
.whats{
    background: rgb(34,193,195);
    background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(45,253,69,1) 100%);
}




/*.transparent-navbar {*/
/*    background-color: transparent !important;*/
/*}*/

/* Style the colored navbar */
/*.colored-navbar {*/
/*    background: rgba(100, 100, 100, 0.9) !important;*/
/*}*/

.ml3 {
    font-weight: 900;
    font-size: 3.5em;
}

.ml11 {
    font-weight: 700;
    font-size: 3.5em;
}

.ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml11 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #fff;
    transform-origin: 0 50%;
}

.ml11 .line1 {
    top: 0;
    left: 0;
}

.ml11 .letter {
    display: inline-block;
    line-height: 1em;
}

.covers {
    height: 100vh;
    min-height: 500px;
    background-image: url('../img/cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.mybutton {
    min-width: 300px;
    min-height: 60px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background:  #00acc1 ;
    background: linear-gradient(90deg, rgba( 0, 188, 212 , 1) 0%, rgba(0, 151, 167, 1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(0, 131, 143, .64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
}

.mybutton::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #00acc1;
    box-shadow: 0 0 60px rgba(0, 131, 143, .64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}

.mybutton:hover, .mybutton:focus {
    color: #313133;
    transform: translateY(-6px);
}

.mybutton:hover::before, .mybutton:focus::before {
    opacity: 1;
}

.mybutton::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 4px solid #03A9F4;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

.mybutton:hover::after, .mybutton:focus::after {
    animation: none;
    display: none;
}

/*MyButton2*/
.ring23 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    background-color: transparent;
    border: 15px gray solid;
    -webkit-animation-name: ani;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: 6s;
    -webkit-animation-direction: normal;

}




@-webkit-keyframes ani {
    0% {-webkit-transform: scale(0.01); opacity: 0}
    1% {-webkit-transform: scale(0.01); opacity: 1}
    95% {-webkit-transform: scale(1); opacity: 1;}
    100% {-webkit-transform: scale(1); opacity: 0;}
}

#r2 { -webkit-animation-delay: -1s;}
#r3 { -webkit-animation-delay: -2s;}
#r4 { -webkit-animation-delay: -3s;}
#r5 { -webkit-animation-delay: -4s;}
#r6 { -webkit-animation-delay: -5s;}

/*MyButton2*/

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/*Gallery*/
.lightbox-gallery {

    background-repeat: no-repeat;
    color: #000;
    overflow-x: hidden
}

.lightbox-gallery p {
    color: #fff
}

.lightbox-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: #fff
}

@media (max-width: 767px) {
    .lightbox-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px
    }
}

.lightbox-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px
}

.lightbox-gallery .intro p {
    margin-bottom: 0
}

.lightbox-gallery .photos {
    padding-bottom: 20px
}

.lightbox-gallery .item {
    padding-bottom: 30px
}

/*Gallery*/

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.bounce {
    animation: bounce 0.9s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.spin {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.grow {
    transition: transform 0.3s ease;
}

.grow:hover {
    transform: scale(1.1);
}

.shake {
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25%, 75% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
}

.haghyar_color{
    color: rgba(0, 131, 143, .64) ;
}

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: rgba(0, 131, 143, .64) ;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: rgba(0, 131, 143, .64);
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 131, 143, .64) ;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.modal-header-bg{
    background: rgba(0, 131, 143, .64) ;
}

.modal-header-bg:hover{
    background: gray ;
}

.mybuttoncolor {
    background: rgba(0, 131, 143, .64) ;
}

.main-navigation {
    -webkit-box-shadow: 10px 10px 10px #95a5a6;
    -moz-box-shadow:    10px 10px 10px #95a5a6;
    box-shadow:         10px 10px 10px #95a5a6;

}

.mycontent-border {
    border: 3px dotted #b2bec3;
    border-radius: 10px;
}

.notebook {

    background-image: url("../img/tr/lined-paper.png") !important;
    background-repeat: repeat; /* Repeat in both X and Y */
    background-color: #dfe6e9; /* Ensures transparency */

}
