* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow: scroll;
    overflow-x: hidden;
}

body {
    background-color: #f9f9f9;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}


/* ///////////////////////////////////////     animations           /////////////////////////////////////////////////// */


/* animation 1 */

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        position: relative;
        left: -50px;
    }
    to {
        opacity: 1;
        position: relative;
        left: 0px;
    }
}

.cls_anim_fadeInFromLeft {
    animation-name: fadeInFromLeft;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}


/* animation 2 */

@keyframes fadeInFromRight {
    from {
        opacity: 0;
        position: relative;
        right: -50px;
    }
    to {
        opacity: 1;
        position: relative;
        right: 0px;
    }
}

.cls_anim_fadeInFromRight {
    animation-name: fadeInFromRight;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}


/* animation 3 */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cls_anim_fadeIn {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}


/* animation 4 */

@keyframes comeFromDown {
    from {
        opacity: 0;
        position: relative;
        top: 500px;
    }
    to {
        opacity: 1;
        position: relative;
        top: 0px;
    }
}

.cls_anim_comeFromDown_dly4 {
    animation-name: comeFromDown;
    animation-duration: 1s;
    animation-delay: 4s;
    animation-fill-mode: forwards;
}

.cls_anim_comeFromDown_dly4-5 {
    animation-name: comeFromDown;
    animation-duration: 1s;
    animation-delay: 4.5s;
    animation-fill-mode: forwards;
}


/* animation 5 */

@keyframes zooming {
    from {
        opacity: 1;
        transform: scale(0.99);
    }
    to {
        opacity: 1;
        transform: scale(1.19);
        margin-bottom: 10%;
    }
}

.cls_anim_zooming {
    animation-name: zooming;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}


/* ///////////////////////////////////////     fonts           /////////////////////////////////////////////////// */


/* font-family:Abel */

@font-face {
    font-family: Abel;
    src: url('../fonts/Abel/Abel-Regular.ttf');
}


/* font-family:Anton */

@font-face {
    font-family: Abel;
    src: url('../fonts/Anton/Anton-Regular.ttf');
}


/* font-family :poppin */


/* i imported all weight except italic */

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-Thin.ttf");
    font-weight: 100;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-ExtraLight.ttf");
    font-weight: 200;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-ExtraBold.ttf");
    font-weight: 800;
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins/Poppins-Black.ttf");
    font-weight: 900;
}


/* font-family Cairo */


/* font-family: 'Cairo', sans-serif; */


/* i imported all weight except italic */

@font-face {
    font-family: cairo;
    src: url("../fonts/Cairo/Cairo-ExtraLight.ttf");
    font-weight: 200;
}

@font-face {
    font-family: cairo;
    src: url("../fonts/Cairo/Cairo-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: cairo;
    src: url("../fonts/Cairo/Cairo-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: cairo;
    src: url("../fonts/Cairo/Cairo-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: cairo;
    src: url("../fonts/Cairo/Cairo-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: cairo;
    src: url("../fonts/Cairo/Cairo-Black.ttf");
    font-weight: 900;
}


@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
    font-weight: 700;
}



/* ************************END FONTS*********************************************** */

.fntPoppinLight {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
}

.fntPoppinBold {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.fnt1 {
    font-size: 1rem;
}

.fnt1-5 {
    font-size: 1.5rem;
}

.fnt2 {
    font-size: 2rem !important;
}

.fnt3 {
    font-size: 3rem;
}

.fnt4 {
    font-size: 4rem !important;
}

.fnt5 {
    font-size: 5rem;
}

.fntBold {
    font-weight: 600;
}


/* ///////////// Global //////////////////////////// */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 2px solid rgb(46, 2, 75); */
}

img {
    width: 100%;
}

.opcty0 {
    opacity: 0;
}

.opcty0-2 {
    opacity: 0.2;
}

.opcty0-5 {
    opacity: 0.5;
}

.opcty1 {
    opacity: 1;
}

.clr-white {
    color: white !important;
}

.clr-black {
    color: black !important;
}

.clr-red {
    color: red;
}

.clr-blufb {
    color: #444d88 !important;
}

.clr-bluetwtr {
    color: #2188b8
}

.clr-blueLnkdin {
    color: #3f57f5;
}

.clrGray {
    color: #686876 !important;
}

.clrGreenLight {
    color: #01c282;
}

.bckclrwhite {
    background-color: #fff;
}

.bckclrGrnLight {
    background-color: #01c282;
}

.bckclrBlue {
    background-color: #0a6edd;
}

.bckclrlightGray {
    background-color: rgb(173, 192, 201);
}

.bckclrSky {
    background-color: #01c5d1;
}

.bckclrDark {
    background-color: #171721;
}

.ovrflwhdn {
    overflow: hidden;
}

.ovrflwXhdn {
    overflow-x: hidden;
}

.ovrflwYvsbl {
    overflow-y: visible;
}

.displayNlnBlck {
    display: inline-block;
}

.displayNone {
    display: none;
}

.flexrow {
    display: flex;
    flex-direction: row;
}

.flexcol {
    display: flex;
    flex-direction: column;
}

.flexwrap {
    flex-wrap: wrap;
}

.jstfycntntBetween {
    justify-content: space-between;
}

.jstfycntntAround {
    justify-content: space-around;
}

.jstfycntntcenter {
    justify-content: center;
}

.jstfycntntStart {
    justify-content: flex-start;
}

.alignitemsstart {
    align-items: flex-start;
}

.alignitemsCentr {
    align-items: center;
}

.alignitemsBtwn {
    align-items: space-between;
}

.alignselfCntr {
    align-self: center;
}

.pad0 {
    padding: 0rem;
}

.pad0-5 {
    padding: 0.5rem;
}

.pad1 {
    padding: 1rem;
}

.padY1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.padX0-5 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.padX1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.padX2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.pad2 {
    padding: 2rem;
}

.pad3 {
    padding: 3rem;
}

.padT1 {
    padding-top: 1rem;
}

.padT2 {
    padding-top: 2rem;
}

.padT3 {
    padding-top: 3rem;
}

.padL1 {
    padding-left: 1rem;
}

.padL1 {
    padding-left: 1%;
}

.padL2 {
    padding-left: 2rem;
}

.padL3 {
    padding-left: 3rem;
}

.padL6 {
    padding-left: 6%;
}

.padX1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.padT6 {
    padding-top: 6rem;
}

.padT7 {
    padding-top: 7rem;
}

.padR2 {
    padding-right: 2rem;
}

.padB1 {
    padding-bottom: 1rem;
}

.padB2 {
    padding-bottom: 2rem;
}

.padB3 {
    padding-bottom: 3rem;
}

.pady3 {
    padding-top: 3%;
    padding-bottom: 3%;
}

.mrgn0 {
    margin: 0;
}

.mrgn2 {
    margin: 2rem;
}

.mrgn4 {
    margin: 4rem;
}

.mrgnAuto {
    margin: auto;
}

.mrgnY1 {
    margin-top: 1%;
    margin-bottom: 1%;
}

.mrgnX2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mrgnL2 {
    margin-left: 2rem;
}

.mrgnL4 {
    padding-left: 4rem;
}

.mrgnL6 {
    padding-left: 4rem;
}

.mrgnL10 {
    margin-left: 10%;
}

.mrgnR5 {
    margin-right: 5%;
}

.mrgnR10 {
    margin-right: 10%;
}

.mrgnB1 {
    margin-bottom: 5rem;
}

.mrgnB5 {
    margin-bottom: 5rem;
}

.mrgnT5 {
    margin-top: 5rem;
}

.width15 {
    width: 15%;
}

.width20 {
    width: 20%;
}

.width25 {
    width: 25%;
}

.width27 {
    width: 27%;
}

.width30 {
    width: 30%;
}

.width40 {
    width: 40%;
}

.width45 {
    width: 45%;
}

.width50 {
    width: 50%;
}

.width60 {
    width: 60%;
}

.width70 {
    width: 70%;
}

.width75 {
    width: 75%;
}

.width80 {
    width: 80%;
}

.width90 {
    width: 90%;
}

.width95 {
    width: 95%;
}

.width100 {
    width: 100%;
}

.width100vw {
    width: 100vw;
}

.height60vh {
    height: 60vh;
}

.height70vh {
    height: 70vh;
}

.height75vh {
    height: 75vh;
}

.height80vh {
    height: 80vh;
}

.height90vh {
    height: 90vh;
}

.height100vh {
    height: 100vh;
}

.height800 {
    height: 800px;
}

.height100 {
    height: 100%;
}

.pstnAbsolute {
    position: absolute;
    top: 0px;
    left: 0px;
}

.pstnAbslt {
    position: absolute;
}

.pstnRelative {
    position: relative;
}

.top-15rem {
    top: -15rem;
}

.top0 {
    top: 0;
}

.top10 {
    top: 10%;
}

.top40 {
    top: 40%;
}

.top50 {
    top: 50%;
}

.top60 {
    top: 60%;
}

.lft-32rem {
    left: -32rem;
}

.lft0 {
    left: 0;
}

.left25rem {
    left: 25rem;
}

.lft45 {
    left: 45%;
}

.lft50 {
    left: 50%;
}

.lft-100 {
    left: -100%;
}

.lft200 {
    left: 200%;
}

.rght50 {
    right: 50%;
}

.right-100 {
    right: -100%;
}

.overlay {
    background-color: rgb(27, 27, 37);
    opacity: 0.8;
}

.brdrNone {
    border: none;
}

.brdrrds0 {
    border-radius: 0%;
}

.brdrrds5 {
    border-radius: 5%;
}

.zindx0 {
    z-index: 0;
}

.zindx1 {
    z-index: 1;
}

.zindx2 {
    z-index: 99;
}

.zindx3 {
    z-index: 3;
}

.zindx9 {
    z-index: 9;
}

.bckcolorWhite {
    background-color: white;
}

.bckcolorGray {
    background-color: grey;
}

.bckcolorTrnsprnt {
    background-color: transparent;
}

.rotateY90 {
    transform: perspective(500px) rotateY(90deg);
}

.rotateY180 {
    transform: perspective(500px) rotateY(180deg);
}

.textCenter {
    text-align: center;
}

.height100Vh {
    height: 100vh;
}

.height100 {
    height: 100%;
}

.height500 {
    height: 500px;
}

.floatLeft {
    float: left;
}

.lststlNone {
    list-style: none;
}

.txtdcrNone {
    text-decoration: none !important;
}

.ltrSpc0-1 {
    letter-spacing: 0.1rem;
}

.imgScaleOnHover {
    transition: 1s;
    padding: 2rem;
}

.imgScaleOnHover:hover {
    transform: scale(1.2);
}

.decoratedImg {
    border-radius: 5%;
    /* transition-duration: 1s; */
}

.decoratedImg:hover {
    width: 50vw;
    top: 10%;
}

.trnstn0-5 {
    transition-duration: 0.5s;
}

.trnstn1 {
    transition-duration: 1s;
}


/* ///////////////X Global X/////////////// */

.animate__animated {
    animation-duration: 3s;
}