/*
 Theme Name: Idoni
 Theme URI: https://themewar.com/wp/idoni/
 Author: ThemeWar
 Author URI: https://themeforest.net/user/themewar/portfolio
 Description: Idoni – Creative Agency WordPress Theme
 Version: 1.0
 License:
 License URI: 
*/

/*==================================
    [Table of contents]
===================================
    01. Theme Fonts
    02. Basic Typography
    03. Custom Helper Class
    04. Links & Buttons
    05. Section Settings
*/

/*-----------------------------------------
/  01. Theme Fonts
/-----------------------------------------*/
/*-----------------------------------------
/  02. Root Variables
/-----------------------------------------*/
:root{
    --primary-font: 'DM Sans', sans-serif;
    --secondary-font: 'Playfair Display', serif;

    --tw-primary-color: #E02166;
    --tw-secondary-color: #222222;
    --tw-white-color: #ffffff;

    --tw-body-color: #777777;
    --body-font-size: 18px;
    --body-line-height: 28px;
    --body-font-weight: 400;
    --body-letter-spacing: 0;

    --heading-font-weight: 700;
    --heading-line-height: 1.1;
}
.primaryFont{
    font-family: var(--primary-font);
}
.secondaryFont{
    font-family: var(--secondary-font);
}
/*-----------------------------------------
/  03. Basic Typography
/-----------------------------------------*/
body, html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}
body{
    font-family: var(--primary-font);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    color: var(--tw-body-color);
    letter-spacing: var(--body-letter-spacing);
}
h1, h2, h3, h4, h5, h6{
    color: var(--tw-secondary-color);
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    margin: 0 0 15px;
}
a{
    text-decoration: none;
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
a:hover{
    color: var(--tw-primary-color);
    text-decoration: none;
}
button, input[type="submit"]{
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
a:focus, button:focus, input[type="submit"]:focus{
    outline: 0;
    text-decoration: none;
}
.container-fluid{
    max-width: 2080px;
    width: 100%;
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 1366px) {
    .container{
        max-width: 1314px;
        width: 100%;
    }
}
#magic-mouse {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 999999;
    -webkit-transition: opacity 0.2s ease-in-out 0.5s;
    transition: opacity 0.2s ease-in-out 0.5s;
}
/*-----------------------------------------
/  04. Section Settings
/-----------------------------------------*/
.subTitle{
    font-size: 14px;
    color: var(--tw-primary-color);
    line-height: 1;
    margin: 0 0 19px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.subTitle span{
    font-size: 10px;
    color: var(--tw-secondary-color);
    margin-right: 20px;
}
.subTitle.title_list{
    color: var(--tw-secondary-color);
    text-transform: capitalize;
}
.subTitle.title_border{
    color: var(--tw-secondary-color);
    border-radius: 30px;
    border: 1px solid #000;
    display: inline-flex;
    padding: 5px 10px;
}
.subTitle.title_border span{
    margin-right: 9px;
    font-size: 6px;
}
.secTitle{
    font-size: 50px;
    line-height: 59px;
    color: #B1B1B1;
    margin: 0;
}
div .secTitle span,
div .themewar_heading span{
    font-family: var(--secondary-font);
    font-style: italic;
    font-weight: 400;
}
.secTitle > div {
    background: -webkit-linear-gradient(
      left,
      rgba(34, 34, 34, 1) 50%,
      rgba(177, 177, 177, 1)  50%
    );
    background: linear-gradient(
      to right,
      rgba(34, 34, 34, 1) 50%,
      rgba(177, 177, 177, 1)  50%
    );
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.noPaddingRight{
    padding-right: 0;
}
.noPaddingLeft{
    padding-left: 0;
}
.noPadding{
    padding: 0;
}
.container-left{
    margin-left: 0;
    margin-right: auto;
}

/* -- Button Two -- */
.idoniBtn01{
    display: inline-block;
    font-size: 14px;
    color: var(--tw-white-color);
    background: var(--tw-primary-color);
    border: 0;
    outline: 0;
    text-transform: uppercase;
    font-weight: 700;
    min-height: 40px;
    width: auto;
    padding: 0 28px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.idoniBtn01:hover{
    background: var(--tw-secondary-color);
    color: var(--tw-white-color);
}
.idoniBtn01 .rolling-text{
    line-height: 40px;
}
.idoniBtn01:hover .rolling-text .letter {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

/* -- Button Two -- */
.idoniBtn02 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--tw-secondary-color);
    background: var(--tw-white-color);
    outline: 0;
    font-weight: 700;
    min-height: 56px;
    width: auto;
    line-height: 52px;
    padding: 0 36.5px;
    border-radius: 10px;
    border: 2px solid var(--tw-secondary-color);
    text-align: center;
}
.idoniBtn02 i{
    margin-left: 5px;
    position: relative;
    top: 3px;
    left: 6px;
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    display: inline-block;
}
.idoniBtn02:hover i{
    left: 0px;
}
.idoniBtn02.in_left i{
    left: -10px;
}
.idoniBtn02.in_left:hover i{
    left: -5px;
}
.themeWar_image span{
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.themeWar_image  img{
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* -- Button Three -- */
.idoniBtn03 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--tw-secondary-color);
    background: var(--tw-white-color);
    min-width: 150px;
    height: 54px;
    line-height: 52px;
    border: 1px solid #000000;
    border-radius: 50px;
    z-index: 1;
    overflow: hidden;
    padding: 21px 0 17px;
    text-align: center;
}
.idoniBtn03 span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
}
.idoniBtn03:hover span {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    color: var(
    --tw-secondary-color);
}
.idoniBtn03:after {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--tw-secondary-color);
    z-index: -1;
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    width: 100%;
    text-align: center;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}
.idoniBtn03:hover:after {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: var(--tw-primary-color);
}

/* -- Loader Precent -- */
.pre_Precent {
    text-align: center;
    color: #fff;
    line-height: 1;
    font-size: 10vw;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    mix-blend-mode: difference;
    font-family: var(--primary-font);
    font-weight: var(--heading-font-weight);
}

/*-----------------------------------------
/  05. Animation Settings
/-----------------------------------------*/

.idoni_hoverImg{
    position: relative;
}
.idoni_hoverImg:before, 
.idoni_hoverImg:after,
.idoniFlash:before, 
.idoniFlash:after {
    content: "";
    position: absolute;
    background: var(--tw-white-color);
    height: 0;
    width: 0;
    z-index: 1;
    -webkit-transition-duration: 700ms !important;
    transition-duration: 700mss !important;
}
.idoni_hoverImg:before ,
.idoniFlash:before {
    right: 0;
    opacity:0.7;
    top: 0;
}
.idoni_hoverImg:after ,
.idoniFlash:after {
    bottom: 0;
    opacity: 0.7;
    left: 0;
}
.idoni_hoverImg:hover:after,
.idoni_hoverImg:hover:before,
.idoniFlash:hover:after,
.idoniFlash:hover:before {
    height: 100%;
    opacity: 0;
    width: 100%;
}

/* -- Shine -- */
.idoniShine::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,.3);
    bottom: 0;
    left: 50%;
    right: 51%;
    top: 0;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}
.idoniShine:hover::after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}

/* -- Circle -- */
.idoniCircle:after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    opacity: 0;
}
.idoniCircle:hover::after {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1
    }

    40% {
        opacity: 1
    }

    100% {
        width: 150%;
        height: 150%;
        opacity: 0
    }
}

@keyframes circle {
    0% {
        opacity: 1
    }

    40% {
        opacity: 1
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

/* -- Loader Animation--  */

[data-loaderAnim] {
    -webkit-animation: var(--animn, none) var(--animdur, 0s) var(--animtf,
    linear) var(--animic, infinite) var(--animps,
    running);
            animation: var(--animn, none) var(--animdur, 0s) var(--animtf,
    linear) var(--animic, infinite) var(--animps,
    running);
}
@-webkit-keyframes loaderAnim {
    0% { 
        -webkit-transform: translateX(0); 
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}
@keyframes loaderAnim {
    0% { 
        -webkit-transform: translateX(0); 
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}
@-webkit-keyframes loaderAnim02 {
    0% { 
        -webkit-transform: translateX(0); 
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-250%);
                transform: translateX(-250%);
    }
}
@keyframes loaderAnim02 {
    0% { 
        -webkit-transform: translateX(0); 
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-250%);
                transform: translateX(-250%);
    }
}
@keyframes loaderAnim03 {
    0% { 
        -webkit-transform: translateX(0); 
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-300%);
                transform: translateX(-300%);
    }
}


.bgAnim{
    animation: shadows 1.4s linear infinite;
    -webkit-animation: shadows 1.4s linear infinite;
    -moz-animation: shadows 1.4s linear infinite;
}

@-webkit-keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .15), 0 0 0 30px rgba(255, 255, 255, .15), 0 0 0 50px rgba(255, 255, 255, .15);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, .15), 0 0 0 50px rgba(255, 255, 255, .15), 0 0 0 70px rgba(255, 255, 255, 0);
    }
}




/* -- Post Like Tooktips Design -- */
.post_disLike,
.post_like {
    position: relative;
}
.post_disLike::before,
.post_like::before{
    content: attr(data-like);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    min-width: 65px;
    height: 25px;
    line-height: 25px;
    border-radius: 4px;
    padding: 0 5px;
    font-size: 10px;
    color: #fff;
    text-align: center;
    background: #222222;
    transition: all 350ms ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}
.post_like::before{
    left: 16px;
}
.post_disLike:hover:before,
.post_like:hover:before{
    top: -35px;
    opacity: 1;
    visibility: visible;
}
.post_disLike::after, 
.post_like::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    width: 10px;
    height: 10px;
    background: #222222;
    transform: rotate(50deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 450ms ease;
    transform-origin: top center;
}
.post_like::after {
    left: 15px;
}
.post_disLike:hover:after, 
.post_like:hover:after {
    top: -15px;
    opacity: 1;
    visibility: visible;

}