@font-face {
    font-family: FF;
    src: url(../fonts/FF.otf);
}

@font-face {
    font-family: GAB;
    src: url(../fonts/GAB.otf);
}

@font-face {
    font-family: GAS;
    src: url(../fonts/GAS.otf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 15px;
    text-decoration: none !important;
}

body {
    background-color: #181818;
    color: #fff;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}
.dotBox {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid #29261d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px !important;
}

.dotBox span {
    min-width: 25px;
    height: 25px;
    background-color: #29261d;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
}

.dotBox span::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #fec632;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    animation: fade 1s linear infinite alternate;
    -webkit-animation: fade 1s linear infinite alternate;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.soscialBox a {
    padding: 1px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 2px solid #fff;
    margin-bottom: 10px;
    width: 80px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    font-family: GAB !important;
}

.soscialBox a:hover {
    background-color: #ffff01;
    color: #181818;
    border: 2px solid #ffff01;
}

.Ractive {
    background-color: #ffff01;
    color: #181818 !important;
    border: 2px solid #ffff01 !important;

}

.callBody {
    width: 100%;
    height: 220px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.callBody a {
    margin-bottom: 15px;
    padding: 4px 5px;
    background-color: #181818;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-family: GAB !important;
    font-size: 13px;
    width: 95px;
    text-align: center;
    border: 1px solid #181818;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.callBody a:hover {
    background-color: #ffff01;
    color: #181818;
    border-color: #ffff01;


}

.callBody span {
    bottom: 15px;
    color: #181818;
    width: 25px;
    height: 25px;

}

.callBody span::before {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/clicking.png);
    background-size: cover;
}

.hedimg {
    width: 170px;
    height: 150px;
    object-fit: contain;
    margin: 0px auto;
    margin-top: 25px;
}

.myCollection {
    width: 100%;
    height: 250px;
    background-color: #bbeeff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.myCollection::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #bbeeff;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/unnamed1.png);
    background-size: contain;
    background-repeat: no-repeat;

}

.myCollection::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #ffffff49;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    z-index: 10;
}

.myCollection:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.myCollection h2 {
    position: absolute;
    z-index: 2;
    color: #181818;
    font-size: 17px;
    font-weight: 700;
    font-family: GAB;
    right: 15px;
    bottom: 0;
}

.DYD {
    width: 100%;
    height: 150px;
    background-color: #ed1b24;
    color: #fff;
    font-family: FF;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

}

.DYD::after {
    position: absolute;
    content: "";
    top: 0;
    right: -10px;
    width: 0%;
    height: 100%;
    background-color: #ffffff49;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;


}

.DYD:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    right: 0;
}

.DYD h3 {
    font-size: 35px !important;
}

.myKeep {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.keep {
    width: 55%;
    height: 200px;
    background-color: #f9cb42;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}


.keep span {
    position: absolute;
    top: 40px;
    right: 12px;
    color: #181818;
    font-family: GAS;
    z-index: 80;

}

.keep::after {
    position: absolute;
    content: "";
    top: 0;
    right: -10px;
    width: 0%;
    height: 100%;
    background-color: #ffffff49;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    z-index: 88;
}

.keep:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    right: 0;
}

.keep .could {
    position: absolute;
    top: 15px;
    right: 6px;
    width: 110px;
    height: 110px;
}

.keep .user_img {
    position: absolute;
    bottom: 0;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.mySite {
    width: 42.5%;
    height: 200px;
    background-color: #467966;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mySite::after {
    position: absolute;
    content: "";
    top: 0;
    right: -10px;
    width: 0%;
    height: 100%;
    background-color: #ffffff49;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    z-index: 88;
}

.mySite:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    right: 0;
}

.mySite h3 {
    font-size: 13px;
    color: #fff;
    font-family: GAB;
    font-weight: 500;

}

.mySite::before {
    position: absolute;
    right: 0;
    bottom: 5px;
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/left-click.png);
    background-size: cover;

}

.bigBox {
    width: 100%;
    height: 410px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 20px;
}

.items {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    margin: 0px 20px;
}

.items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.1s ease-in;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
}

.items img:hover {
    filter: blur(1px);
    -webkit-filter: blur(1px);
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}

.myportfolio {
    width: 90%;
    border-top: 1px solid #29261d;
    margin: 0 auto;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.myportfolio h4 {
    color: #181818;
    font-family: FF;
    font-size: 27px;
}

.myportfolio a {
    margin-right: 25px;
    color: #181818;
    text-decoration: none;
    font-family: GAS;
    font-size: 14px;
    position: relative;
    transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
}

.myportfolio a:hover {
    color: #467966;
}

.myportfolio a::before {
    position: absolute;
    top: -10px;
    right: -30px;
    content: "";
    background: url(../img/cursor.png);
    width: 27px;
    height: 27px;
    background-size: contain;

}

.Signature {
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
}

.Signature img {
    width: 180px;
    object-fit: cover;
}

.imgBox {
    width: 0;
    height: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: #29261d;
    z-index: 900;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    opacity: 0;
}

.imgBox.active {
    height: 80% !important;
    width: 80% !important;
    opacity: 1;
}

.imgBox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.overlay,
.overlay2 {
    width: 100%;
    position: fixed;
    height: 100%;
    background-color: #bbeeff41;
    z-index: 800;
    display: none;
}

.overlay.active,
.overlay2.active {
    display: block;
}

.qrBox {
    width: 300px;
    height: 40%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: #ffffff;
    z-index: 820;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid #29261d6b;
    box-shadow: 0 0 10px #29261d6b;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.qrBox.active {
    opacity: 1;
    pointer-events: all;
}

.qrBox img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    margin: 0 auto;
}

.qrBox span {
    color: #181818;
    font-family: GAS;
    font-weight: 300;
}

.loader {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: all;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    z-index: 90000;
}

.loader.fades {
    opacity: 0 !important;
    pointer-events: none;
}

.loader img {
    opacity: 0;
    transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
}

.loader img.show {
    opacity: 1;
}

@media screen and (min-width:1100px) {
    body {
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100vh !important;
    }

    .bigBox {
        padding: 0 55px !important;
    }

    .keep,
    .mySite {
        width: 49% !important;
        height: 220px !important;
    }
}

@media screen and (max-width:998px) {
    body {
        width: 100% !important;
        justify-content: center !important;
        align-items: flex-start !important;
        height: 100vh !important;
    }

    .bigBox {
        padding: 0 0px !important;
    }
    .DYD h3{
        font-size: 30px !important;
    }
    .user_img{
        width: 100px !important;
        height: 100px !important;
    }
    .keep,.mySite{
        width: 49% !important;
    }
    .itemsBox1 {
        flex-direction: column;
        margin-top: 10px;
    }
    .dotBox{
        margin-top: 20px !important;
    }
    .callBox {
        margin-top: 0 !important;
    }
    .hedimg{
        display: block;
        margin: 5px auto !important;
    }
    .callBody {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: row !important;
        height: 110px !important;
    }
}


@media screen and (max-width:768px) {
    body {
        width: 100% !important;
        justify-content: center !important;
        align-items: flex-start !important;
        background-color: #181818 !important;
        height: 100% !important;
    }

    .Signature {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
        position: absolute;
        bottom: 0px;
        right: 240px;
        width: 0 !important;
        z-index: 90;
    }

    .itemsBox1 {
        flex-direction: column !important;
        margin-top: 20px;
    }

    .callBox {
        margin-top: 0 !important;
    }

    .coluser {
        margin-top: 10px !important;
    }
    .bigBox{
        padding: 0 60px !important;
    }
}

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

    body {
        width: 100% !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        height: 2000px !important;
    }

    .imgBox.active {
        height: 90% !important;
    }

    .itemsBox1 {
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 5;
        flex-direction: column-reverse;
    }

    .dotBox {
        margin-bottom: 10px;
        margin-top: 5px !important;
    }

    .bigBox {
        position: absolute;
        top: 190px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 51;
        height: 350px;
        padding: 0 90px !important;
    }

    .items {
        width: 45px !important;
        height: 45px;
        margin: 0 15px;
    }

    .myportfolio {
        padding-top: 25px !important;
    }

    .myportfolio h4 {
        font-size: 15px !important;
    }

    .itemsBox2 {
        position: absolute;
        top: 550px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 51;
    }

    .itemsBox3 {
        position: absolute;
        top: 800px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 51;
    }

    .DYD h3 {
        font-size: 25px !important;
    }

    .myKeep {
        position: absolute;
        top: 970px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 51;
        flex-direction: column;
        width: 90%;
    }

    .keep,
    .mySite {
        margin-bottom: 10px;
        width: 100% !important;
    }
    .user_img{
        width: 180px !important;
        height: 180px !important;
    }

    .callBody{
            height: 200px !important;
            flex-direction: column !important;
    }

    .callBox {
        position: absolute;
        top: 1390px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 51;
        width: 90%;
    }

    .hedimg {
        position: absolute;
        top: 1645px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 51;
    }

    .Signature {
        position: absolute;
        bottom: 50px !important;
        width: 90% !important;
        right: 20px !important;
    }

    .myCollection::before {
        width: 80%;
        height: 80%;
        top: unset;
        bottom: 0;
    }

    .myCollection h2 {
        font-size: 15px;
    }
}

@media screen and (max-width:475px) {
    .bigBox {
        padding: 0 60px !important;
    }

}

@media screen and (max-width:410px) {
    .bigBox {
        padding: 0 40px !important;
    }

    @media screen and (max-width:360px) {
        .bigBox {
            padding: 0 10px !important;
        }
}