/*
 Theme Name: LogisFare
 Theme URI: https://themewar.com/html/logisFare/
 Author: ThemeWar
 Author URI: https://themeforest.net/user/themewar/portfolio
 Description: LogisFare - Transport & Logistics Responsive HTML5 Template
 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: 'Figtree', sans-serif;
    --secondary-font: 'Catamaran', sans-serif;
    --tw-primary-color: #EC3900;
    --tw-secondary-color: #161921;
    --tw-white-color: #ffffff;
    --tw-body-color: #74787C;
    --body-font-size: 16px;
    --body-line-height: 26px;
    --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;
}

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 {
    font-family: var(--secondary-font);
    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;
    }

@media (min-width: 1200px) {
    .container {
        max-width: 1244px;
    }
}

/*-----------------------------------------
/  04. Section Settings
/-----------------------------------------*/
.subTitle {
    text-transform: uppercase;
    font-size: var(--body-font-size);
    color: var(--tw-primary-color);
    line-height: 1;
    margin: 0 0 15px;
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

h3.subTitle i {
    font-size: 32px;
    stroke: var(--tw-primary-color);
    line-height: 16px;
    position: relative;
}

h3.subTitle > i {
    margin: 0 15px 0 0;
}

h3.subTitle i:last-child {
    margin: 0 0 0 15px;
}

.secTitle {
    font-size: 48px;
    line-height: 58px;
    color: var(--tw-secondary-color);
    margin: 0;
    position: relative;
}

.noPaddingRight {
    padding-right: 0;
}

.noPaddingLeft {
    padding-left: 0;
}

.noPadding {
    padding: 0;
}

.container-left {
    margin-left: 0;
    margin-right: auto;
}

.btnLink {
    display: inline-block;
    background: transparent;
    color: var(--tw-body-color);
    font-weight: 600;
}

    .btnLink i {
        position: relative;
        left: 0;
        margin-left: 4.5px;
        top: .5px;
        font-size: 14px;
        -webkit-transition: all 350ms ease;
        transition: all 350ms ease;
    }

    .btnLink:hover i {
        left: 5px;
    }

.logicBtn {
    display: inline-block;
    width: auto;
    height: 55px;
    line-height: 55px;
    color: var(--tw-white-color);
    background: var(--tw-primary-color);
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 0 32px;
    border-radius: 8px;
    border: none;
    outline: none;
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

    .logicBtn:hover {
        color: var(--tw-white-color);
        background: var(--tw-secondary-color);
    }

    .logicBtn:after {
        content: '';
        position: absolute;
        left: -50px;
        bottom: 0;
        width: 50px;
        height: 100%;
        /*background: url(../images/bgimg/ibSecLeft.png)no-repeat scroll center center / cover;*/
        background: url(../../img/ibSecLeft.png)no-repeat scroll center center / cover;
        background-size: 100% 100%;
        z-index: -1;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
        -webkit-animation-delay: 500ms;
        animation-delay: 500ms;
    }

    .logicBtn:before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -100%;
        width: 50px;
        height: 100%;
        background: url(../../img/teamSahp1.png)no-repeat scroll center center / cover;
        background-size: 100% 100%;
        z-index: -1;
        -webkit-transition: all 700ms ease;
        transition: all 700ms ease;
        -webkit-animation-delay: 500ms;
        animation-delay: 500ms;
    }

    .logicBtn:hover:after {
        left: 0;
    }

    .logicBtn:hover:before {
        bottom: 0;
    }

    .logicBtn i {
        -webkit-transition: all 700ms ease;
        transition: all 700ms ease;
        -moz-transition: all 700ms ease;
    }

    .logicBtn svg {
        height: 14px;
        width: auto;
        fill: var(--tw-white-color);
        stroke: var(--tw-white-color);
        position: relative;
        top: -3px;
        -webkit-transition: all 700ms ease;
        transition: all 700ms ease;
        -moz-transition: all 700ms ease;
    }

.logisfareList {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*-- video btn --*/
.popup_video {
    position: relative;
    z-index: 9;
    width: 140px;
    height: 140px;
    line-height: 140px;
    text-align: center;
    display: inline-block;
    color: var(--tw-white-color);
    font-size: 35px;
    border-radius: 50%;
    background: var(--tw-primary-color);
}

    .popup_video i {
        border-radius: 0 !important;
    }

    .popup_video:hover i {
        color: var(--tw-white-color);
    }

.borAnim:before {
    content: "";
    border: 2px solid #f3f3f3;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    border-radius: 50%;
    -webkit-animation: zoomBig 3.25s linear infinite;
    animation: zoomBig 3.25s linear infinite;
    animation-delay: 0s;
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.borAnim:after {
    content: "";
    border: 2px solid #f3f3f3;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    border-radius: 50%;
    -webkit-animation: zoomBig 3s linear infinite;
    animation: zoomBig 3s linear infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.borAnim:hover:before,
.borAnim:hover:after {
    border-color: var(--tw-primary-color);
}

.bgAnim02:before {
    width: calc(100% + 26px);
    height: calc(100% + 26px);
    left: -13px;
    right: 0;
    top: -13px;
    z-index: -1;
    background: var(--tw-primary-color);
    opacity: .4;
    position: absolute;
    content: '';
    -webkit-transform: none;
    transform: none;
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    animation: blinker 1.5s ease-in-out infinite;
    -webkit-animation: blinker 1.5s ease-in-out infinite;
    -moz-animation: blinker 1.5s ease-in-out infinite;
}

.popup_video.bgAnim02 {
    border: none !important;
    background: transparent !important;
}

    .popup_video.bgAnim02 i {
        display: block;
        width: 100%;
        height: 100%;
        line-height: inherit;
        color: #fff;
        border-radius: inherit;
        background: var(--tw-primary-color);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: relative;
        z-index: 3;
    }

    .popup_video.bgAnim02:hover i {
        background: #fff;
        color: var(--tw-primary-color);
    }

.bgAnim {
    animation: shadows 1.4s linear infinite;
    -webkit-animation: shadows 1.4s linear infinite;
    -moz-animation: shadows 1.4s linear infinite;
}

/*-----------------------------------------
/  05. Animation Settings
/-----------------------------------------*/
@-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);
    }
}

@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);
    }
}

.logisFlash {
    position: relative;
    overflow: hidden;
}

    .logisFlash::before {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.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;
    }

    .logisFlash:hover::before {
        left: 0;
        right: 0;
        opacity: 0;
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
    }

.logisShine {
    position: relative;
    overflow: hidden;
}

    .logisShine::after {
        content: '';
        position: absolute;
        top: 0;
        left: -77%;
        z-index: 1;
        display: block;
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

    .logisShine:hover::after {
        -webkit-animation: shine .75s;
        animation: shine 1.5s ease;
    }

.logisCircle {
    position: relative;
    overflow: hidden;
}

    .logisCircle::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;
    }

    .logisCircle:hover::after {
        -webkit-animation: circle .75s;
        animation: circle .75s;
    }

.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);
}
