/***** FONT SIZE *****/

.huge {
    font-size: 25px;
}

.big {
    font-size: 22px;
}

.medium {
    font-size: 16px;
    line-height: 22px;
}

.small {
    font-size: 14px;
    line-height: 18px;
}

.tiny {
    font-size: 12px;
    line-height: 14px;
}

.micro {
    font-size: 11px;
    line-height: 13px;
}


/***** COLORS *****/

.black {
    color: #000;
}

.blackBg {
    background: #000;
}

.white {
    color: #FFF;
}

.whiteBg {
    background: #FFF;
}


/*.yellow{
	color:#fcdb07;
}
.yellowBg{
	background:#fcdb07;
}*/

.yellow {
    color: #3a1abc;
}

.yellowBg {
    background: #3a1abc;
}

.green {
    color: #a0df4e;
}

.greenBg {
    background: #a0df4e;
}

a:hover .yellowBg {
    background: #000;
}

.grey {
    color: #939393;
}

.greyBg {
    background: #939393;
}

.greyDark {
    color: #656767;
}

.greyDarkBg {
    background: #656767;
}

.red {
    color: #CA2026;
}

.redBg {
    background: #CA2026;
}

.green {
    color: #093;
}

.greenBg {
    background: #093;
}


/*****LINKS*****/

a.greyYellow {
    color: #939393
}

a.greyYellow:hover {
    color: #3a1abc;
}

a.whiteYellow {
    color: #FFF
}

a.whiteYellow:hover {
    color: #3a1abc;
}

a.yellowWhite {
    color: #3a1abc;
}

a.yellowWhite:hover {
    color: #fff;
}

a.blackYellow {
    color: #000;
}

a.blackYellow:hover {
    color: #3a1abc;
}

a.whiteUnderline {
    color: #FFF;
}

a.whiteUnderline:hover {
    text-decoration: underline;
}


/*****************************************/

.padding10 {
    padding: 10px;
}

.paddingTopBottom30 {
    padding: 30px 0px;
}

.rounded {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.roundedSmall {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.roundedBig {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

.roundedTop {
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.roundedTopOnly {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.roundedRight {
    -webkit-border-top-left-radius: 35px;
    -moz-border-radius-topleft: 35px;
    border-top-left-radius: 35px;
}

.roundedBottom {
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.roundedBottomOnly {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.roundedBottomSmall {
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.shadowSmall {
    box-shadow: -2px 2px 5px #888888;
}


/* BURGER MENU */

.ico-btn {
    top: 15px;
    right: 0px;
    color: black;
    background-color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px !important;
    height: 50px !important;
    cursor: pointer;
    transition: all 0.2s ease-in;
    border-radius: 50%;
    float: right;
    z-index: 9999;
}

.burgerbtnlogo {
    float: left !important;
    margin-top: -45px;
    margin-left: 15px;
    padding-bottom: 20px;
}

.ico-btn:hover {
    background-color: grey;
}

.ico-btn__burger,
.ico-btn__burger::before,
.ico-btn__burger::after {
    width: 20px;
    height: 3px !important;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ico-btn__burger::before {
    content: "";
    position: absolute;
    transform: translateY(-6px);
}

.ico-btn__burger::after {
    content: "";
    position: absolute;
    transform: translateY(6px);
}


/* -------------------------------------------
**  ANIMATION 
============================================= */

.ico-btn.is-active .ico-btn__burger {
    background: transparent;
}

.ico-btn.is-active .ico-btn__burger::before {
    transform: rotate(-45deg);
}

.ico-btn.is-active .ico-btn__burger::after {
    transform: rotate(45deg);
}

.ico-btn.is-active {
    transform: rotate(360deg);
}

@media(max-width:1190px) {
    .gif {
        display: none;
    }
}

.daterow {
    width: 100%;
    margin-top: 10px;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

@media(min-width:900px) {
    #aboutimgdesc {
        padding-left: 20%;
        padding-right: 20%;
    }
    .pickadate {
        padding-left: 0px;
    }
    .swipercontent {
        position: absolute;
        left: 0px;
        bottom: 0;
        width: 91%;
        margin-left: 40px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.9);
    }
    .searchrowborder {
        border-bottom: 1px solid black;
    }
    .burgerbtn {
        display: none;
    }
    .mobileview {
        display: none;
    }
    .burgermenu {
        display: none;
    }
    .mobi {
        padding-top: 100px;
    }
    .medialineheight {
        line-height: 3;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    #navigationbar {
        position: absolute;
        left: 300px;
        bottom: 0px;
        width: 600px;
    }
    .articlesborder {
        /* border-top: 2px solid black; */
        margin: 15px;
        padding-top: 10px;
    }
    .articlesborder::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        width: 50%;
        left: 25%;
        border-top: 1px solid black;
    }
    #bannerhide {
        display: none;
    }
    .freeTrial {
        position: absolute;
        top: 0px;
        right: 125px;
        width: 120px;
        height: 140px;
        text-align: center;
        padding: 10px 20px 20px 20px;
        background-image: linear-gradient(#636466, black);
    }
    .talibanSource {
        position: absolute;
        top: 0px;
        right: 0;
        width: 120px;
        height: 140px;
        text-align: center;
        padding: 10px 20px 20px 20px;
        background-image: linear-gradient(#636466, black);
    }
}

@media(max-width:900px) {
    body {
        width: 100%;
    }
    #about-content {
        text-align: justify !important;
    }
    .aboutdescription {
        padding-left: 5% !important;
    }
    .linearborder {
        width: 100% !important;
    }
    .pickadate {
        padding-left: 10%;
    }
    .swipercontent {
        position: absolute;
        left: 0px;
        bottom: 0;
        width: 100%;
        padding-top: 47px;
        padding-left: 10px;
        padding-right: 10px;
        /* padding-bottom: 10px; */
        background: rgba(0, 0, 0, .6);
    }
    .burgerbtn {
        position: absolute;
        top: 0px;
        right: 15px;
        z-index: 99999;
    }
    .swiper {
        margin-top: 0px !important;
    }
    .searchrowborder {
        border-bottom: 0px solid white !important;
    }
    #aboutimgdesc {
        padding-left: 0px;
        padding-right: 0px;
    }
    .articlesborder {
        border-top: 2px solid black;
        margin: 15px;
        padding-top: 10px;
    }
    .medialineheight {
        line-height: 1.6;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    #navigationbar {
        display: none;
    }
    #socialmediaicons {
        display: none;
    }
    #mediaprofilepic {
        text-align: center !important;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    #donate {
        padding-top: 40px;
    }
    #media12 {
        padding-left: 0px !important;
    }
    #firstparagraph {
        padding-top: 0px !important;
        margin-top: 0px !important;
    }
    #topcontainer1 {
        height: 300px !important;
    }
    .navbar1 {
        display: none;
    }
    .navbar2 {
        display: none;
    }
    .navbar3 {
        display: none;
    }
    .freeTrial {
        position: absolute;
        top: -130px;
        right: 0px;
        width: 105px;
        height: 120px;
        text-align: center;
        padding: 10px;
        z-index: 99;
        background-image: linear-gradient(#636466, black);
    }
    .talibanSource {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 105px;
        height: 130px;
        text-align: center;
        padding: 10px;
        z-index: 99;
        background-image: linear-gradient(#636466, black);
    }
    #mobileview {
        margin-left: 2% !important;
        margin-right: 2% !important;
    }
}

.aboutdescription {
    margin-top: 5px;
    text-align: left;
    padding-right: 10%;
    padding-left: 10%;
}


/* SWIPER */

.swiper {
    margin-top: 60px;
    width: 80%;
    height: 500px;
}

.swiper:hover {
    cursor: pointer;
}


/*ScrollBar*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}