/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */
/*   01 - General & Basic Styles    */
/*   02 - Header and Footer Styles  */
/*   03 - Modal Windows Styles      */
/*   04 - About Section             */
/*   05 - Portfolio Section         */
/*   06 - Services Section          */
/*   07 - Video Section             */
/*   08 - Price Section             */
/*   09 - Testimonials Section      */
/*   10 - Team Section              */
/*   11 - Blog Section              */
/*   12 - Client Section            */
/*   13 - About Page                */
/*   14 - Faq Page                  */
/*   15 - Team Page                 */
/*   16 - Single Team Page          */
/*   17 - Typography Page           */
/*   18 - Clients Page              */
/*   19 - Services Page             */
/*   20 - Single Services Page      */
/*   21 - Portfolio Page            */
/*   22 - Single Portfolio Page     */
/*   23 - Blog Page                 */
/*   24 - Post Page                 */
/*   25 - Contact Page              */
/*   26 - 404 Page                  */
/*   27 - Elements                  */
/*   28 - Custom Styles             */

/* ==========================================================================
   01. GENERAL & BASIC STYLES
   ========================================================================== */
img {
    max-width: 100%;
}

.media-img {
    width: 100%;
}

.font-1 {
    font-family: "Open Sans";
}

.font-2 {
    font-family: "Lato", sans-serif;
}

.italic {
    font-style: italic;
}

.color-white {
    color: #fff;
}

.color-1 {
    color: #00c9d5;
}

.color-2 {
    color: #3f404a;
}

.color-3 {
    color: #fec565;
}

.color-4 {
    color: #00cad6;
}

.color-5 {
    color: #1e1d32;
}

.color-6 {
    color: #00cbd6;
}

.color-7 {
    color: #FFFFFF;
}

.color-8 {
    color: #00b1d6;
}

.color-9 {
    color: #58709d;
}

.color-10 {
    color: #dee2eb;
}

.color-11 {
    color: #f2f5fa;
}

.color-15 {
    color: #00cbd6;
}

.color-16 {
    color: #09c9d7;
}

.color-17 {
    color: #00b4d6;
}

.fb-color {
    color: #3e5992;
}

.twitter-color {
    color: #5daae4;
}

.google-color {
    color: #e34d4a;
}

.in-color {
    color: #0077b5;
}

.pinterest-color {
    color: #bd081c;
}

.theme-bg-gradient {
    background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
    background-image: linear-gradient(to right, #00cad6 0%, #12afb9 100%);
    /* -webkit-box-shadow: 0 5px 29px rgba(0, 205, 214, 0.3);
            box-shadow: 0 5px 29px rgba(0, 205, 214, 0.3); */
}

.text-gradient {
    background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
    background: linear-gradient(to right, #00cad6 0%, #12afb9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more_btn.text-gradient:hover {
    background: #3f404a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .more_btn.text-gradient:hover i {
        background: #3f404a;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.background-white {
    background: #fff;
}

.background-black {
    background: #000;
}

.background-1 {
    background: #00c9d5;
}

.background-2 {
    background-image: url('/Layouts/Net99/assets/img/Footer_Black_Bar.svg');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-3 {
    background: #fec565;
}

.background-4 {
    background: #00cad6;
}

.background-5 {
    background: #1e1d32;
}

.background-11 {
    background: #f2f5fa;
}

.background-12 {
    background: #e6ebf3;
}

.background-14 {
    background: #346;
}

.bg-transparent {
    background: transparent;
}

.pointer {
    cursor: pointer;
}

::-moz-selection {
    background: #00cad6;
    color: #fff;
}

::selection {
    background: #9391b1;
    color: #fff;
}

:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

:focus:-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

:focus:-ms-input-placeholder {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-family: "Open Sans";
}

::-moz-placeholder {
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-family: "Open Sans";
}

:-moz-placeholder {
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-family: "Open Sans";
}

::-ms-input-placeholder {
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-family: "Open Sans";
}

@-webkit-keyframes animateScale {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        opacity: 0;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes animateScale {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        opacity: 0;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes animateScale-2 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        opacity: 0;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes animateScale-2 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        opacity: 0;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.animateScale:hover {
    -webkit-animation: animateScale 0.3s;
    animation: animateScale 0.3s;
}

.animateScale-2:hover {
    -webkit-animation: animateScale-2 0.3s;
    animation: animateScale-2 0.3s;
}

.uppercase {
    text-transform: uppercase;
}

.td-underline {
    text-decoration: underline;
}

    .td-underline:hover {
        text-decoration: none;
    }

.td-none {
    text-decoration: none !important;
}

.no-hover:hover {
    color: inherit;
}

.fweight-400 {
    font-weight: 400;
}

.fweight-500 {
    font-weight: 500;
}

.fweight-500i {
    font-weight: 500 !important;
}

.fweight-600 {
    font-weight: 600;
}

.fweight-700 {
    font-weight: 700;
}

.fweight-900 {
    font-weight: 900;
}

.fsize-0 {
    font-size: 0;
}

.fsize-10 {
    font-size: 10px;
}

.fsize-12 {
    font-size: 12px;
}

.fsize-14 {
    font-size: 14px;
}

.fsize-15 {
    font-size: 15px;
}

.fsize-16 {
    font-size: 16px;
}

.fsize-20 {
    font-size: 20px;
}

.fsize-24 {
    font-size: 24px;
}

.fsize-28 {
    font-size: 28px;
}

.fsize-30 {
    font-size: 30px;
}

.fsize-32 {
    font-size: 32px;
}

.fsize-40 {
    font-size: 40px;
}

.fsize-42 {
    font-size: 42px;
}

.fsize-55 {
    font-size: 55px;
}

.fsize-56 {
    font-size: 56px;
}

.fsize-60 {
    font-size: 60px;
}

.fsize-70 {
    font-size: 70px;
}

.fsize-80 {
    font-size: 80px;
}

.fsize-210 {
    font-size: 210px;
}

.nowrap {
    white-space: nowrap;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.alignright {
    float: right;
    margin: 0 0 30px 30px;
}

.alignleft {
    float: left;
    padding-left: 5px;
}

.float-none {
    float: none;
}

.m0 {
    margin: 0;
}

.mb0 {
    margin-bottom: 0;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb-40 {
    margin-bottom: -40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb120 {
    margin-bottom: 120px;
}

.mlr8 {
    margin-left: 8px;
    margin-right: 8px;
}

.mlr10 {
    margin-left: 10px;
    margin-right: 10px;
}

.mlr25 {
    margin-left: 25px;
    margin-right: 25px;
}

.mlr60 {
    margin-left: 60px;
    margin-right: 60px;
}

.ml15 {
    margin-left: 15px;
}

.ml5 {
    margin-left: 5px;
}

.mr5 {
    margin-right: 5px;
}

.mr8 {
    margin-right: 8px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr25 {
    margin-right: 25px;
}

.mr30 {
    margin-right: 30px;
}

.mt0 {
    margin-top: 0;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt-30 {
    margin-top: -30px;
}

.mt75 {
    margin-top: 75px;
}

.mt80 {
    margin-top: 80px;
}

.mt100 {
    margin-top: 100px;
}

.mt-200 {
    margin-top: -200px;
}

.mtb5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.mtb40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.p0 {
    padding: 0;
}

.p20 {
    padding: 20px;
}

.p40 {
    padding: 40px;
}

.p60 {
    padding: 60px;
}

.pl20 {
    padding-left: 20px;
}

.pl30 {
    padding-left: 30px;
}

.pl40 {
    padding-left: 40px;
}

.pl60 {
    padding-left: 60px;
}

.pr5 {
    padding-right: 5px;
}


.pr15 {
    padding-right: 15px;
}

.pr20 {
    padding-right: 20px;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb25 {
    padding-bottom: 25px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pt60 {
    padding-top: 60px;
}

.pt100 {
    padding-top: 100px;
}

.pt120 {
    padding-top: 120px;
}

.pt150 {
    padding-top: 150px;
}

.ptb5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.ptb10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ptb16 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.ptb27 {
    padding-top: 27.5px;
    padding-bottom: 27.5px;
}

.ptb30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ptb40 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ptb50 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ptb60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ptb70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ptb100 {
    padding-top: 150px;
    padding-bottom: 30px;
}

.ptb120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.plr0 {
    padding-left: 0;
    padding-right: 0;
}

.plr15 {
    padding-left: 15px;
    padding-right: 15px;
}

.plr20 {
    padding-left: 20px;
    padding-right: 20px;
}

.plr30 {
    padding-left: 30px;
    padding-right: 30px;
}

.plr40 {
    padding-left: 40px;
    padding-right: 40px;
}

.plr50 {
    padding-left: 50px;
    padding-right: 50px;
}

.plr60 {
    padding-left: 60px;
    padding-right: 60px;
}

.plr80 {
    padding-left: 80px;
    padding-right: 80px;
}

.plr90 {
    padding-left: 90px;
    padding-right: 90px;
}

.plr100 {
    padding-left: 100px;
    padding-right: 100px;
}

.plr120 {
    padding: 0 120px;
}

.ptb20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ptb25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.ptb150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.ptb10_lr0 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ohidden {
    overflow: hidden;
}

.none {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.table {
    display: table;
    height: 100%;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
}

.valign-top {
    vertical-align: top;
}

.valign-middle {
    vertical-align: middle;
}

.valign-bottom {
    vertical-align: bottom;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.width-100p {
    width: 100%;
}

.width-80p {
    width: 80%;
    margin: auto;
}

.width-auto {
    width: auto;
}

.width-300 {
    width: 300px;
}

.width-370 {
    width: 370px;
}

.mwidth-310 {
    max-width: 310px;
}

.height-100p {
    height: 100%;
}

.height-100 {
    height: 100px;
}

.height-300 {
    height: 300px;
}

.list1 {
    list-style: none;
    line-height: 38px;
}

    .list1 li:before {
        content: "";
        float: left;
        width: 4px;
        height: 6px;
        background: url("../images/arrow-list.png") no-repeat;
        margin-right: 10px;
        margin-top: 15px;
    }

.list2 {
    list-style: none;
    padding-left: 20px;
    line-height: 38px;
}

    .list2 li {
        position: relative;
    }

        .list2 li:before {
            content: "";
            position: absolute;
            width: 5px;
            height: 5px;
            background-color: #00b4d6;
            border-radius: 50%;
            left: -20px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

.list3 {
    list-style: none;
    padding: 0;
    line-height: 38px;
}

    .list3 li {
        position: relative;
        padding: 0 0 0 30px;
    }

        .list3 li:before {
            content: "";
            display: block;
            position: absolute;
            border: 1px solid #00b4d6;
            left: 10px;
            top: 15px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }

.list-order {
    list-style-type: none;
    counter-reset: num;
    padding: 0;
}

    .list-order li {
        position: relative;
        padding: 0 0 0 25px;
        line-height: 38px;
    }

        .list-order li:after {
            content: counter(num) ". ";
            counter-increment: num;
            position: absolute;
            left: 2px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            font-weight: 600;
            color: #00b4d6;
        }

.lheight-normal {
    line-height: normal !important;
}

.lheight-24 {
    line-height: 24px;
}

.lheight-26 {
    line-height: 26px;
}

.lheight-30 {
    line-height: 30px;
}

.lheight-38 {
    line-height: 38px;
}

.lheight-40 {
    line-height: 40px;
}

.lheight-60 {
    line-height: 60px;
}

.lheight-60 {
    line-height: 60px;
}

.lheight-60i {
    line-height: 60px !important;
}

.lheight-150 {
    line-height: 150px;
}

.square40 {
    width: 40px;
    height: 40px;
}

.square60 {
    width: 60px;
    height: 60px;
}

.bdrs-50p {
    border-radius: 50%;
}

.bdrs-10 {
    border-radius: 10px;
}

.border-1-w {
    border: 1px solid #fff;
}

.top_separator {
    border-top: 1px solid rgba(88, 112, 157, 0.1);
}

.border-none {
    border: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

h1.page-title {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}

.main-slider .n2-ss-slide-backgrounds:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    background: #3f404a;
    opacity: 0.6;
}

body {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    color: #58709d;
    font-family: "Open Sans";
}

    body.no-scroll {
        overflow-y: hidden;
    }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
}

    a:focus {
        color: inherit;
    }

/*============================*/
.loader-wrapper {
    background: #fff;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999999;
}

@-webkit-keyframes outerRotate1 {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes outerRotate1 {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes outerRotate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(-360deg);
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes outerRotate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(-360deg);
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@-webkit-keyframes textColour {
    0% {
        color: #fff;
    }

    100% {
        color: #3bb2d0;
    }
}

@keyframes textColour {
    0% {
        color: #fff;
    }

    100% {
        color: #3bb2d0;
    }
}

body .loader-wrapper {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 62.5%;
    width: 100vw;
    height: 100vh;
    background: #222;
}

.e-loadholder {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    width: 240px;
    height: 240px;
    border: 5px solid #1b5f70;
    border-radius: 120px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .e-loadholder:after {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-51%, -50%);
        transform: translate(-51%, -50%);
        content: " ";
        display: block;
        background: #222;
        -webkit-transform-origin: center;
        transform-origin: center;
        z-index: 0;
    }

    .e-loadholder:after {
        width: 100px;
        height: 200%;
        -webkit-animation: outerRotate2 30s infinite linear;
        animation: outerRotate2 30s infinite linear;
    }

    .e-loadholder .m-loader {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-51%, -50%);
        transform: translate(-51%, -50%);
        width: 200px;
        height: 200px;
        color: #888;
        text-align: center;
        border: 5px solid #2a93ae;
        border-radius: 100px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 20;
        text-transform: uppercase;
    }

        .e-loadholder .m-loader:after {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-51%, -50%);
            transform: translate(-51%, -50%);
            content: " ";
            display: block;
            background: #222;
            -webkit-transform-origin: center;
            transform-origin: center;
            z-index: -1;
        }

        .e-loadholder .m-loader:after {
            width: 100px;
            height: 106%;
            -webkit-animation: outerRotate1 15s infinite linear;
            animation: outerRotate1 15s infinite linear;
        }

        .e-loadholder .m-loader .e-text {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 130px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-51%, -50%);
            transform: translate(-51%, -50%);
            -webkit-animation: textColour 1s alternate linear infinite;
            animation: textColour 1s alternate linear infinite;
            display: block;
            width: 140px;
            height: 140px;
            text-align: center;
            border: 5px solid #3bb2d0;
            border-radius: 70px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            z-index: 20;
        }

            .e-loadholder .m-loader .e-text:before,
            .e-loadholder .m-loader .e-text:after {
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-51%, -50%);
                transform: translate(-51%, -50%);
                content: " ";
                display: block;
                background: #222;
                -webkit-transform-origin: center;
                transform-origin: center;
                z-index: -1;
            }

            .e-loadholder .m-loader .e-text:before {
                width: 110%;
                height: 40px;
                -webkit-animation: outerRotate2 3.5s infinite linear;
                animation: outerRotate2 3.5s infinite linear;
            }

            .e-loadholder .m-loader .e-text:after {
                width: 40px;
                height: 110%;
                -webkit-animation: outerRotate1 8s infinite linear;
                animation: outerRotate1 8s infinite linear;
            }

#particleCanvas-White {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    width: 100%;
    height: 50%;
    opacity: 0.1;
}

#particleCanvas-Blue {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%, -50%);
    transform: translate(-51%, -50%);
    width: 300px;
    height: 300px;
}

/*============================*/
@-webkit-keyframes pulsecust {
    0% {
        opacity: 1;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.4);
        -moz-transform: scale(1.4);
        -webkit-transform: scale(1.4);
        -o-transform: scale(1.4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
    }
}

@keyframes pulsecust {
    0% {
        opacity: 1;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.4);
        -moz-transform: scale(1.4);
        -webkit-transform: scale(1.4);
        -o-transform: scale(1.4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
    }
}

.line_link {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

    .line_link:hover {
        color: #fff;
        text-decoration: none;
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }

.no_line_link {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

    .no_line_link:hover {
        color: #fff;
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }

.social-list a {
    line-height: 38px;
}

.social-list span {
    line-height: 38px;
}

.social-list li {
    margin: 0 5px;
}

    .social-list li:first-child {
        margin-left: 0;
    }

    .social-list li:last-child {
        margin-right: 0;
    }

.social-list.social-grey.color-9 div {
    opacity: 0.5;
    border: 1px solid rgba(88, 112, 157, 0.5);
}

    .social-list.social-grey.color-9 div:hover {
        opacity: 1;
        -webkit-transition: all 0.1s ease-out;
        transition: all 0.1s ease-out;
    }

.social-list.social-grey a {
    color: rgba(88, 112, 157, 0.7);
}

.social-list.social-grey div {
    border: 1px solid rgba(194, 212, 248, 0.7);
}

.social-list.social-grey .facebook {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-grey .facebook:hover {
        background-color: #3e5992;
        border-color: #3e5992;
        color: #fff;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-grey .twitter {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-grey .twitter:hover {
        background-color: #5daae4;
        border-color: #5daae4;
        color: #fff;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-grey .google {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-grey .google:hover {
        background-color: #e34d4a;
        border-color: #e34d4a;
        color: #fff;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-grey .pinterest {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-grey .pinterest:hover {
        background-color: #bd081c;
        border-color: #bd081c;
        color: #fff;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-grey .search {
    color: #fff;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

    .social-list.social-grey .search:hover {
        color: #58709d;
        -webkit-transition: color 0.3s ease-out;
        transition: color 0.3s ease-out;
    }

.social-list.social-white a {
    color: #fff;
}

.social-list.social-white .facebook {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-white .facebook:hover {
        background-color: #3e5992;
        border-color: #3e5992;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-white .twitter {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-white .twitter:hover {
        background-color: #5daae4;
        border-color: #5daae4;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-white .google {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-white .google:hover {
        background-color: #e34d4a;
        border-color: #e34d4a;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-white .pinterest {
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-white .pinterest:hover {
        background-color: #bd081c;
        border-color: #bd081c;
        color: #fff;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.social-white .search {
    color: #fff;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

    .social-list.social-white .search:hover {
        color: #3f404a;
        -webkit-transition: color 0.3s ease-out;
        transition: color 0.3s ease-out;
    }

.social-list.social-no-border .social-item {
    margin: 0 15px;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .social-list.social-no-border .social-item:hover {
        opacity: 1;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-list.theme-color .social-item {
    opacity: 1;
}

    .social-list.theme-color .social-item:hover {
        color: #00c9d5;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.social-icons {
    height: 60px;
    width: 60px;
}
/* ==========================================================================
     02. HEADER STYLE
     ========================================================================== */
body.homepage .header-line-wrapper {
    position: absolute;
}

ul.dropdown-menu:before {
    content: "";
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    -webkit-box-shadow: 0 5px 29px rgba(0, 205, 214, 0.3);
    box-shadow: 0 5px 29px rgba(0, 205, 214, 0.3);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: #4FA9D2;
}

.header-line-wrapper {
    height: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .header-line-wrapper.affix-top {
        height: 80px;
    }

        .header-line-wrapper.affix-top header .logo {
            line-height: 80px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        .header-line-wrapper.affix-top header.type-1 {
            height: 80px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

            .header-line-wrapper.affix-top header.type-1 .menu-1 > li {
                line-height: 80px;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

    .header-line-wrapper .fixed-top {
        position: fixed !important;
        top: 0;
        z-index: 150;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        height: 90px;
    }

header {
    /*== HEADER TYPE 1 ==*/
    /*== HEADER TYPE 2 ==*/
    /*== HEADER TYPE 3 ==*/
    /*== HEADER TYPE 4 ==*/
}

    header .affixed-hidden {
        height: auto;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    header.affix-top .logo {
        line-height: 80px;
    }

    header.affix-top .menu-1 > li {
        line-height: 80px;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    header.affix-top.fixed-top {
        position: fixed !important;
        top: 0;
        z-index: 150;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    header.affix-top .fixed-top {
        position: fixed !important;
        top: 0;
        z-index: 150;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    header.affix-top .affixed-hidden {
        overflow: hidden;
        -webkit-transition: all 5s ease-out;
        transition: all 5s ease-out;
    }

    header.affix-top.type-2 .menu-1 > li {
        -webkit-transition: all 0s !important;
        transition: all 0s !important;
    }

    header.type-1 .flexMenu-popup {
        background-color: #1D3642;
    }

    header.type-2 {
        position: absolute;
        width: 100%;
        z-index: 150;
    }

        header.type-2 .menu-1 > li {
            -webkit-transition: all 0s !important;
            transition: all 0s !important;
        }

        header.type-2 .flexMenu-popup {
            background-color: #fff;
        }

    header .main-menu li {
        text-align: center;
    }

    header .main-menu .flexMenu-viewMore {
        display: inline-block;
    }

        header .main-menu .flexMenu-viewMore .flexMenu-popup {
            position: absolute;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            z-index: 99;
            border-radius: 0px 0px 10px 10px;
            padding: 20px 0;
            font-size: 14px;
            font-weight: 600;
            line-height: normal;
            text-transform: uppercase;
        }

            header .main-menu .flexMenu-viewMore .flexMenu-popup li {
                width: 100%;
                list-style: none;
                line-height: normal;
                padding: 0 40px;
                position: relative;
            }

                header .main-menu .flexMenu-viewMore .flexMenu-popup li:last-child a {
                    border: none;
                }

                header .main-menu .flexMenu-viewMore .flexMenu-popup li:hover > .sub-menu {
                    opacity: 1;
                    visibility: visible;
                    -webkit-transition: all 0.3s ease-out;
                    transition: all 0.3s ease-out;
                }

                header .main-menu .flexMenu-viewMore .flexMenu-popup li .sub-menu {
                    top: -20px;
                    right: 100%;
                    left: auto;
                    -webkit-transform: none;
                    transform: none;
                    margin-right: 1px;
                    border-radius: 10px 0 0 10px;
                    -webkit-transition: all 0.3s ease-out;
                    transition: all 0.3s ease-out;
                }

                header .main-menu .flexMenu-viewMore .flexMenu-popup li a {
                    text-decoration: none;
                    white-space: nowrap;
                    padding: 15px 20px;
                    display: block;
                    -webkit-transition: all 0.3s ease-out;
                    transition: all 0.3s ease-out;
                }

    header .logo {
        line-height: 80px;
        opacity: 1;
        -webkit-transition: opacity 0.3s ease-out;
        transition: opacity 0.3s ease-out;
    }

        header .logo:hover {
            opacity: 0.8;
            -webkit-transition: opacity 0.3s ease-out;
            transition: opacity 0.3s ease-out;
        }

    header li:hover > a {
        color: #FFFFFF !important;
        font-weight: bolder;
    }

    header li.active > a {
        color: #FFFFFF !important;
    }

    header .toggle_menu {
        position: relative;
        width: 60px;
        height: 80px;
        cursor: pointer;
        display: none;
        vertical-align: middle;
    }

        header .toggle_menu:before,
        header .toggle_menu span,
        header .toggle_menu span:before,
        header .toggle_menu span:after {
            display: block;
            width: 30px;
            position: absolute;
            background-color: #ffffff;
            content: "";
            left: 0;
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
            height: 2px;
        }

            header .toggle_menu span,
            header .toggle_menu span:before,
            header .toggle_menu span:after {
                background-color: #fff;
            }

                header .toggle_menu:before,
                header .toggle_menu span,
                header .toggle_menu span:before,
                header .toggle_menu span:after {
                    display: block;
                    width: 30px;
                    position: absolute;
                    background-color: #ffffff;
                    content: "";
                    left: 0;
                    -webkit-transform: rotate(0deg);
                    transform: rotate(0deg);
                    -webkit-transition: 0.3s ease-in-out;
                    transition: 0.3s ease-in-out;
                    height: 2px;
                }

                    header .toggle_menu span:before {
                        opacity: 1;
                        top: -8px;
                    }

                    header .toggle_menu span:after {
                        opacity: 1;
                        top: 8px;
                    }

        header .toggle_menu:before,
        header .toggle_menu span {
            left: 15px;
            top: 50%;
        }

    header .toggle_menu {
        -webkit-transition: right 0.3s ease-in-out;
        transition: right 0.3s ease-in-out;
    }

        header .toggle_menu.open {
            position: fixed;
            top: 0;
            right: 0;
            height: 60px;
            z-index: 200;
            background: #3f404a;
            -webkit-transition: right 0.3s ease-in-out;
            transition: right 0.3s ease-in-out;
        }

            header .toggle_menu.open span {
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transition: 0.3s ease-in-out;
                transition: 0.3s ease-in-out;
                background: #fff;
            }

                header .toggle_menu.open span:before,
                header .toggle_menu.open span:after {
                    opacity: 0;
                }

            header .toggle_menu.open:before {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                background: #fff;
                -webkit-transition: 0.3s ease-in-out;
                transition: 0.3s ease-in-out;
            }

    header .menu-1 {
        will-change: transform;
        width: 75%;
        margin: 0 auto;
    }

        header .menu-1 > li {
            float: left;
            margin: 0 15px;
            line-height: 120px;
            position: relative;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

            header .menu-1 > li .fa-angle-down {
                display: none;
            }

            header .menu-1 > li > a {
                display: block;
                height: 100%;
                position: relative;
                font-weight: 600;
                font-size: 14px;
                text-decoration: none;
                color: #FFFFFF;
                font-family: 'Open Sans', Helvetica,Arial,Lucida,sans-serif;
                -webkit-transition: color 0.3s ease-out;
                transition: color 0.3s ease-out;
            }

                header .menu-1 > li > a:hover {
                    color: #FFFF00;
                    -webkit-transition: color 0.3s ease-out;
                    transition: color 0.3s ease-out;
                }

            header .menu-1 > li.active:after {
                visibility: visible;
                opacity: 1;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

            header .menu-1 > li:hover:after {
                visibility: visible;
                opacity: 1;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

            header .menu-1 > li:hover > .sub-menu {
                opacity: 1;
                visibility: visible;
                -webkit-transition: all 0.3s ease-out 0.3s;
                transition: all 0.3s ease-out 0.3s;
                will-change: transform;
            }

            header .menu-1 > li:after {
                content: "";
                position: absolute;
                bottom: 8px;
                display: block;
                height: 3px;
                width: 0px;
                opacity: 0;
                visibility: hidden;
                background-image: url('/Layouts/Net99/assets/img/Header_Highlight_Yellow.svg');
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                box-shadow: 0 5px 29px rgba(0, 205, 214, 0.3);
                transition: all 0.3s ease 0s;
                -webkit-transition: all 0.3s ease 0s;
            }

                header .menu-1 > li:after:hover {
                    width: 100%;
                }

            header .menu-1 > li:after,
            .dropdown-menu-item::after {
                content: "";
                position: absolute;
                display: block;
                height: 3px;
                width: 0px;
                background-image: url(/Layouts/Net99/assets/img/Header_Highlight_Yellow.svg);
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                transition: all 0.3s ease 0s;
                -webkit-transition: all 0.3s ease 0s;
            }

            header .menu-1 > li:hover:after,
            .dropdown-menu-item:hover:after {
                width: 100%;
            }
li.menu-item.active > a,
li.active.dropdown > a {
    color: #4FA9D2 !important;
}

li.dropdown-menu-item > a {
    color: #fff !important;
}

header .menu-1 > li:last-child {
    margin-right: 0;
}

    header .menu-1 > li:last-child a:after {
        display: none;
    }

header .menu-1 > li:first-child {
    margin-left: 0;
}

header .menu-1 .sub-menu {
    position: absolute;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 99;
    background-color: #3f404a;
    border-radius: 0px 0px 10px 10px;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-out 0.3s;
    transition: all 0.3s ease-out 0.3s;
}

    header .menu-1 .sub-menu li {
        width: 100%;
        list-style: none;
        line-height: normal;
        padding: 0 40px;
        position: relative;
    }

        header .menu-1 .sub-menu li:hover > a {
            color: #00cad6;
        }

        header .menu-1 .sub-menu li:hover > .sub-menu {
            opacity: 1;
            visibility: visible;
            top: -20px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        header .menu-1 .sub-menu li:last-child > a {
            border: none !important;
        }

        header .menu-1 .sub-menu li a {
            text-decoration: none;
            white-space: nowrap;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
            padding: 15px 20px;
            display: block;
        }

        header .menu-1 .sub-menu li .sub-menu {
            position: absolute;
            top: 0;
            left: 100%;
            opacity: 0;
            visibility: hidden;
            margin-left: 1px;
            border-radius: 0px 10px 10px 0px;
            -webkit-transform: translateY(0);
            transform: translateY(0);
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

header.type-1 {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 120px;
    -webkit-box-shadow: 0 7px 30px rgba(0, 0, 0, 0.57);
    box-shadow: 0 7px 30px rgba(0, 0, 0, 0.57);
    background: #3f404a;
}

    header.type-1 .flexMenu-popup li a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    header.type-1 .flexMenu-popup li:last-child a {
        border: none;
    }

    header.type-1 .menu-1 .sub-menu li a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    header.type-1 .menu-1 li a {
        color: #fff;
    }

        header.type-1 .menu-1 li a:after {
            background-color: #fff;
        }

header.type-2 .flexMenu-popup li a {
    border-bottom: 1px solid rgba(88, 112, 157, 0.2);
}

header.type-2 .flexMenu-popup li:last-child a {
    border: none;
}

header.type-2 .bottom-line {
    -webkit-box-shadow: 0 0 29px rgba(102, 123, 164, 0.25);
    box-shadow: 0 0 29px rgba(102, 123, 164, 0.25);
}

header.type-2.affix-top .fixed-top {
    width: 100%;
    height: auto;
}

header.type-2 .bottom-line-wrapper {
    height: 120px;
}

header.type-2 .menu-1 li a:after {
    background-color: #58709d;
}

header.type-2 .menu-1 .sub-menu {
    background-color: #fff;
}

    header.type-2 .menu-1 .sub-menu li a {
        border-bottom: 1px solid rgba(88, 112, 157, 0.2);
    }

header.type-2 .container-fluid {
    padding: 13px 120px;
}

    header.type-2 .container-fluid > div {
        line-height: 30px;
    }

header.type-2 .sort-down {
    bottom: -14px;
}

header.type-3 {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

    header.type-3 .flexMenu-popup li a {
        border-bottom: 1px solid rgba(88, 112, 157, 0.2);
    }

    header.type-3 .flexMenu-popup li:last-child a {
        border: none;
    }

    header.type-3 .fixed-top {
        width: 100%;
        height: 80px;
        background: #3f404a;
    }

    header.type-3 .main-menu {
        padding: 0;
        left: 53%;
    }

    header.type-3 .flexMenu-popup {
        background-color: #fff;
    }

    header.type-3 .bottom-line-3 {
        height: 120px;
        -webkit-box-shadow: 0 0 29px rgba(102, 123, 164, 0.25);
        box-shadow: 0 0 29px rgba(102, 123, 164, 0.25);
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    header.type-3.affix-top {
        height: 120px;
    }

        header.type-3.affix-top .bottom-line-3 {
            height: 80px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        header.type-3.affix-top .affixed-hidden {
            display: none;
        }

        header.type-3.affix-top .fixed-top {
            width: 100%;
            height: 40px;
            background: #3f404a;
        }

            header.type-3.affix-top .fixed-top > div:first-child {
                height: 60px;
            }

    header.type-3 .menu-wrapper {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    header.type-3 .top-line {
        line-height: 40px;
    }

    header.type-3 .menu-1 > li {
        margin: 0 20px;
    }

        header.type-3 .menu-1 > li:first-child {
            margin-left: 0;
        }

        header.type-3 .menu-1 > li:last-child {
            margin-right: 0;
        }

        header.type-3 .menu-1 > li:before {
            top: auto;
            bottom: 0;
        }

        header.type-3 .menu-1 > li a:after {
            display: none;
        }

    header.type-3 .menu-1 .sub-menu {
        background: #fff;
    }

        header.type-3 .menu-1 .sub-menu li a {
            border-bottom: 1px solid rgba(88, 112, 157, 0.2);
        }

header.type-4 {
    position: absolute;
    width: 100%;
    z-index: 150;
    background-image: url('/Layouts/Net99/assets/img/Header_Black_Bar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    header.type-4 .main-menu {
        position: relative;
        left: 0;
        -webkit-transform: none;
        transform: none;
    }

    header.type-4 .fixed-top {
        width: 100%;
    }

    header.type-4 .flexMenu-popup {
        background-color: #f2f5fa;
        text-align: center;
    }

        header.type-4 .flexMenu-popup li a {
            border-bottom: 1px solid rgba(88, 112, 157, 0.2) !important;
        }

        header.type-4 .flexMenu-popup li:last-child a {
            border: none !important;
        }

    header.type-4 .bottom-line-wrapper {
        height: 60px;
    }

    header.type-4 .menu-1 > li {
        line-height: 60px;
    }

        header.type-4 .menu-1 > li .sub-menu {
            background: #f2f5fa;
        }

            header.type-4 .menu-1 > li .sub-menu a {
                border-bottom: 1px solid rgba(88, 112, 157, 0.2);
            }

        header.type-4 .menu-1 > li:before {
            top: auto;
            bottom: 0;
        }

        header.type-4 .menu-1 > li a {
            font-size: 14px;
            font-weight: 100;
            font-weight: 600;
        }

    header.type-4 .user-menu {
        line-height: 60px;
    }

        header.type-4 .user-menu > li {
            line-height: normal;
            cursor: pointer;
        }

        header.type-4 .user-menu a {
            opacity: 0.8;
            -webkit-transition: color 0.3s ease-out;
            transition: color 0.3s ease-out;
        }

            header.type-4 .user-menu a:hover i {
                color: #00cad6;
                -webkit-transition: color 0.3s ease-out;
                transition: color 0.3s ease-out;
            }

    header.type-4 .logo {
        line-height: 120px;
    }

    header.type-4 .top-line {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    header.type-4 .middle-line .phone-bl,
    header.type-4 .middle-line .schedule-bl {
        line-height: 120px;
    }

        header.type-4 .middle-line .phone-bl > div,
        header.type-4 .middle-line .schedule-bl > div {
            line-height: normal;
        }

    header.type-4 .social-icon {
        margin: 0 15px;
    }

        header.type-4 .social-icon:first-child {
            margin-left: 0;
        }

        header.type-4 .social-icon:last-child {
            margin-right: 0;
        }

        header.type-4 .social-icon a span {
            -webkit-transition: color 0.3s ease-out;
            transition: color 0.3s ease-out;
        }

            header.type-4 .social-icon a span:hover {
                color: #fff;
                -webkit-transition: color 0.3s ease-out;
                transition: color 0.3s ease-out;
            }

/* ==========================================================================
     FOOTER STYLE
     ========================================================================== */
footer input::-webkit-input-placeholder {
    color: #fff;
}

footer input::-moz-placeholder {
    color: #fff;
}

footer input:-moz-placeholder {
    color: #fff;
}

footer input::-ms-input-placeholder {
    color: #fff;
}

footer .footer-input {
    width: 100%;
    padding: 19px 90px 19px 30px;
}

footer button {
    width: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 0 10px 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    footer button:hover {
        color: #3f404a;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.footer-buttons {
    font-size: larger;
    font-weight: 700;
    margin: 0px 30px 20px 80px;
    padding: 5px;
    width: 165px;
}

    .footer-buttons a {
        color: black !important;
    }

.getfiber {
    background-image: url('/Layouts/Net99/assets/img/Footer_Button_Teal.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Open Sans Bold";
    border-radius: 12px;
}

.contact-us {
    background-image: url('/Layouts/Net99/assets/img/Footer_Button_Grey.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Open Sans Bold";
    border-radius: 12px;
}

.three-dot:after {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(/Layouts/Net99/assets/img/Header_Dot_Menu.svg);
    top: 15px;
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
}

.three-dot-menu {
    float: right !important;
}

footer.type-1 .copyright {
    border-top: 1px solid rgba(29, 54, 66, 0.2);
}

footer.type-2 .copyright {
    border-top: 1px solid rgba(29, 54, 66, 0.2);
}

footer.type-2 .footer-menu > li {
    margin-left: 15px;
    margin-right: 15px;
}

    footer.type-2 .footer-menu > li:last-child {
        margin-right: 0;
    }

    footer.type-2 .footer-menu > li a {
        text-transform: uppercase;
        text-decoration: none !important;
        color: #fff;
        -webkit-transition: color 0.3s ease-out;
        transition: color 0.3s ease-out;
        font-size: 14px;
        font-weight: 600;
    }

        footer.type-2 .footer-menu > li a:hover {
            color: #00cad6;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.footer-text {
    font-weight: normal;
    font-size: 16px;
}

    .footer-text b {
        font-weight: bold !important;
        font-size: 16px;
    }

/* ==========================================================================
     03. MODAL WINDOWS STYLE
     ========================================================================== */
.search_modal .search_form {
    height: 120px;
    background: #fff;
}

.search-wrap {
    line-height: 118px;
}

.search-input {
    width: 95%;
    padding-left: 80px;
}

    .search-input input {
        width: 100%;
        border: none;
        outline: none;
        font-family: "Open Sans";
        line-height: normal;
    }

.search-submit button {
    border: none;
    background: transparent;
    outline: none;
    line-height: normal;
}

.column_wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 5px;
}

    .column_wrap:before {
        content: "";
        position: absolute;
        top: 0px;
        z-index: 1;
        width: 100%;
        height: 5px;
        background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
        background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
    }

.modal_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 800px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal_input {
    border: none;
    outline: none;
    border-radius: 10px;
}

.login_modal .list1 li:before {
    margin-top: 7px;
}

.login_modal .link-reg:hover {
    color: #00cad6 !important;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

.login_modal .login_btn {
    outline: none;
}

.login_modal .lost_password {
    text-decoration: none;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

    .login_modal .lost_password:hover {
        color: #00cad6 !important;
        -webkit-transition: color 0.3s ease-out;
        transition: color 0.3s ease-out;
    }

.registration-modal .registration-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 800px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.rules {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #dae4f3;
    border-radius: 50%;
}

    .rules .fa-check {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .rules.checked .fa-check {
        opacity: 1;
        visibility: visible;
    }

.chackbox_rules {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    margin: 0 !important;
    cursor: pointer;
}

.btn-reg {
    outline: none !important;
    border: none;
}

/* ==========================================================================
     04. ABOUT SECTION
     ========================================================================== */
.points [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.quote input::-webkit-input-placeholder {
    color: #58709d;
}

.quote input::-moz-placeholder {
    color: #58709d;
}

.quote input:-moz-placeholder {
    color: #58709d;
}

.quote input::-ms-input-placeholder {
    color: #58709d;
}

.quote textarea::-webkit-input-placeholder {
    color: #58709d;
}

.quote textarea::-moz-placeholder {
    color: #58709d;
}

.quote textarea:-moz-placeholder {
    color: #58709d;
}

.quote textarea::-ms-input-placeholder {
    color: #58709d;
}

/* ==========================================================================
     05. PORTFOLIO SECTION
     ========================================================================== */
.portfolio [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.portfolio img {
    width: 100%;
}

.portfolio .portfolio-item:hover .shutter {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.portfolio .portfolio-item .shutter {
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.portfolio .shutter-info {
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .portfolio .shutter-info:hover .shutter-title {
        color: #3f404a;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.portfolio .shutter-title {
    font-size: 32px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.portfolio:hover .shutter-title {
    color: #3f404a;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.portfolio .shutter-text {
    line-height: 30px;
}

    .portfolio .shutter-text.main-shutter {
        padding-left: 40px;
        padding-right: 40px;
    }

.portfolio .portfolio-social {
    line-height: 58px;
    background: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

    .portfolio .portfolio-social:hover {
        background: #fff;
        color: #09c9d7;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

/* ==========================================================================
     06. SERVICES SECTION
     ========================================================================== */
.services .container {
    width: 1350px;
}

.services .nav-tabs {
    border-bottom: none;
}

    .services .nav-tabs.list-inline {
        margin-left: auto;
    }

    .services .nav-tabs > li {
        margin-bottom: 10px;
        padding: 0;
        float: none;
        display: inline-block;
        vertical-align: top;
    }

        .services .nav-tabs > li > a {
            margin: 0 5px;
            padding: 10px 30px;
        }

            .services .nav-tabs > li > a,
            .services .nav-tabs > li > a:hover,
            .services .nav-tabs > li > a:focus {
                color: #58709d;
                background-color: transparent;
                border: none;
                border-radius: 20px;
                border: 1px solid #e1e8f0;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

                .services .nav-tabs > li > a:hover,
                .services .nav-tabs > li > a:hover:hover,
                .services .nav-tabs > li > a:focus:hover {
                    background-color: transparent;
                    background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
                    background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
                    color: #fff;
                    -webkit-transition: all 0.3s ease-out;
                    transition: all 0.3s ease-out;
                }

        .services .nav-tabs > li.active > a,
        .services .nav-tabs > li.active > a:hover,
        .services .nav-tabs > li.active > a:focus {
            background-color: transparent;
            background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
            color: #fff;
            border: 1px solid transparent;
        }

.services .tab-content {
    z-index: 2;
    bottom: -70px;
}

/* ==========================================================================
     07. VIDEO SECTION
     ========================================================================== */
.video_bl {
    z-index: 1;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

    .video_bl .video-js {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .video_bl:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: #3f404a;
        opacity: 0.8;
        z-index: 1;
    }

    .video_bl .fa {
        position: relative;
        cursor: pointer;
    }

    .video_bl .play-show .fa-play {
        display: inline-block;
    }

    .video_bl .play-show .fa-pause {
        display: none;
    }

    .video_bl .pause-show .fa-play {
        display: none;
    }

    .video_bl .pause-show .fa-pause {
        display: inline-block;
    }

    .video_bl .btn-round:before {
        content: "";
        display: block;
        position: absolute;
        opacity: 1;
        visibility: visible;
        -webkit-animation: pulsecust 1.8s linear;
        animation: pulsecust 1.8s linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        background: #fff;
        -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
        transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
    }

    .video_bl .pause-show .btn-round:before,
    .video_bl .pause-show .btn-round:after {
        opacity: 0;
        visibility: hidden;
    }

.video-info {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    padding-top: 70px;
}

.btn-round {
    width: 80px;
    height: 80px;
    line-height: 80px;
}

.pp-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
}

/* ==========================================================================
     08. PRICE SECTION
     ========================================================================== */
.price-center {
    margin-top: -30px;
}

.price-holder {
    margin-bottom: 50px;
}

.price-title {
    opacity: 0.1;
}

.price-wrapper ul {
    list-style: none;
}

.price-wrapper .price-list {
    border-bottom: 1px solid #eaf0f8;
    padding: 20px 0;
}

    .price-wrapper .price-list:first-child {
        border-top: 1px solid #eaf0f8;
    }

.price-wrapper .price-btn {
    width: 220px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}

.price-wrapper .price-center .border-gradient:hover {
    color: inherit;
}

/* ==========================================================================
     09. TESTIMONIALS SECTION
     ========================================================================== */
.testimonials-slider {
    overflow: hidden;
}

    .testimonials-slider.slick-dotted.slick-slider {
        margin: 0;
    }

    .testimonials-slider .testimonial-img {
        background-repeat: no-repeat;
        background-position: center center;
        height: 615px;
        padding: 0;
        position: relative;
    }

        .testimonials-slider .testimonial-img:after {
            content: "";
            position: absolute;
            top: -5px;
            right: -25px;
            display: block;
            width: 50px;
            height: 103%;
            background: #f2f5fa;
            opacity: 1;
            -webkit-filter: blur(7px);
            filter: blur(7px);
        }

    .testimonials-slider .author-signature {
        display: inline-block !important;
    }

    .testimonials-slider .slick-dots {
        bottom: 150px;
        left: 52%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 10;
        width: auto;
    }

        .testimonials-slider .slick-dots li {
            width: auto;
            height: auto;
            margin: 0 10px;
        }

            .testimonials-slider .slick-dots li:first-child {
                margin-left: 0;
            }

            .testimonials-slider .slick-dots li:last-child {
                margin-right: 0;
            }

            .testimonials-slider .slick-dots li.slick-active button:before {
                opacity: 1;
            }

            .testimonials-slider .slick-dots li button {
                width: auto;
                height: auto;
                padding: 0;
            }

                .testimonials-slider .slick-dots li button:before {
                    content: "";
                    width: 6px;
                    height: 6px;
                    opacity: 0.3;
                    background-color: #58709d;
                    border-radius: 50%;
                }

/* ==========================================================================
     10. TEAM SECTION
     ========================================================================== */
.team {
    background-image: url("../images/team-bg.jpg");
    position: relative;
    background-repeat: no-repeat;
    background-size: auto 120%;
}

    .team .container-fluid {
        position: relative;
        z-index: 1;
    }

    .team:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #3f404a;
        opacity: 0.9;
    }

    .team .nav-tabs {
        background-color: transparent;
        border-bottom: none;
    }

        .team .nav-tabs > li {
            display: inline-block;
            float: none;
        }

            .team .nav-tabs > li .team-img-wrap {
                border: 5px solid transparent;
                background-image: none;
                overflow: hidden;
                width: 150px;
                height: 150px;
            }

            .team .nav-tabs > li a {
                display: inline-block;
                vertical-align: top;
                text-align: center;
                padding: 0;
                background-color: transparent !important;
                border: none;
                opacity: 0.6;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

            .team .nav-tabs > li.active {
                background-image: none;
            }

                .team .nav-tabs > li.active > a {
                    background-color: transparent !important;
                    border: none;
                    opacity: 1;
                    -webkit-transition: all 0.3s ease-out;
                    transition: all 0.3s ease-out;
                }

                    .team .nav-tabs > li.active > a .team-img-wrap {
                        background-image: -webkit-gradient( linear, left top, left bottom, from(#f2f5fa), to(#f2f5fa) ), -webkit-gradient(linear, left top, right top, from(#00cbd6), to(#0098d6));
                        background-image: linear-gradient(#f2f5fa, #f2f5fa), linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
                        background-origin: border-box;
                        background-clip: content-box, border-box;
                        padding: 0;
                        -webkit-transition: all 0.3s ease-out;
                        transition: all 0.3s ease-out;
                    }

                        .team .nav-tabs > li.active > a .team-img-wrap:hover {
                            -webkit-transition: all 0.3s ease-out;
                            transition: all 0.3s ease-out;
                        }

    .team .social-list {
        opacity: 0.8;
    }

        .team .social-list .social-grey a {
            border: 1px solid rgba(88, 112, 157, 0.5);
        }

    .team .team-slider-bl {
        padding: 0;
    }

    .team .team-slider {
        border-radius: 10px;
        overflow: hidden;
        -webkit-box-shadow: -5.4px 8.4px 29px rgba(36, 171, 179, 0.2);
        box-shadow: -5.4px 8.4px 29px rgba(36, 171, 179, 0.2);
        right: -40px;
        top: -40px;
    }

        .team .team-slider .team-slider-img {
            height: 420px;
            background-size: cover;
            background-position: center center;
        }

/* ==========================================================================
     11. BLOG SECTION
     ========================================================================== */
.more-link:hover {
    color: #00b4d6;
}

/* ==========================================================================
     12. CLIENT SECTION
     ========================================================================== */
.client-slider {
    padding-top: 70px;
    padding-bottom: 70px;
}

    .client-slider .col-client {
        outline: none;
        text-align: center;
    }

        .client-slider .col-client a {
            outline: none;
        }

        .client-slider .col-client img {
            display: inline-block;
            opacity: 0.5;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

            .client-slider .col-client img:hover {
                opacity: 1;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

    .client-slider .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

/* ==========================================================================
     13. ABOUT PAGE
     ========================================================================== */
.about-text .about-sizer-img {
    margin-top: 70px;
}

.about-info {
    background-image: url("../images/about/about-info-bg.jpg");
    background-repeat: no-repeat;
    background-size: 100% 120%;
    position: relative;
}

    .about-info:before {
        content: "";
        background: #3f404a;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.7;
    }

.about-testimonials-slider {
    text-align: center;
}

    .about-testimonials-slider .testimonial-nav {
        max-width: 340px;
        display: inline-block;
        margin-bottom: 0 !important;
    }

        .about-testimonials-slider .testimonial-nav .slick-arrow {
            display: none !important;
        }

    .about-testimonials-slider .testimonial-content {
        max-width: 700px;
        margin: 0 auto;
    }

        .about-testimonials-slider .testimonial-content .slick-dots li button::before {
            content: "";
            background: #58709d;
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        .about-testimonials-slider .testimonial-content .slick-arrow {
            top: 105px;
        }

            .about-testimonials-slider .testimonial-content .slick-arrow.slick-prev:before {
                content: "";
                display: block;
                width: 9px;
                height: 16px;
                background: url("../images/about/testimonial-arrow-prew.png");
            }

            .about-testimonials-slider .testimonial-content .slick-arrow.slick-next:before {
                content: "";
                display: block;
                width: 9px;
                height: 16px;
                background: url("../images/about/testimonial-arrow-next.png");
            }

        .about-testimonials-slider .testimonial-content .content-wrap {
            padding-bottom: 50px;
        }

    .about-testimonials-slider .slick-track {
        padding: 15px 0;
    }

    .about-testimonials-slider .item-author {
        text-align: center;
        -webkit-transform: scale(1);
        transform: scale(1);
        margin: 0 10px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .about-testimonials-slider .item-author .author-image-wrap {
            width: 90px;
            height: 90px;
            background-size: cover;
            display: inline-block;
            vertical-align: top;
            border-radius: 50%;
            overflow: hidden;
        }

        .about-testimonials-slider .item-author.slick-current {
            -webkit-transform: scale(1.3);
            transform: scale(1.3);
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

/* ==========================================================================
     14. FAQ PAGE
     ========================================================================== */
.accordion-item {
    border: none;
    list-style: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 10px !important;
}

    .accordion-item a {
        word-wrap: break-word;
        position: relative;
        display: block;
        color: #fff;
        border-radius: 10px 10px 0px 0px;
        padding: 19px 50px 19px 35px;
        background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#00cbd6) );
        background: linear-gradient(to right, #00cbd6 0%, #00cbd6 100%);
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .accordion-item a:after {
            content: "-";
            position: absolute;
            top: 0;
            right: 0;
            display: block;
            text-align: center;
            width: 50px;
            height: 60px;
            line-height: 60px;
            font-size: 20px;
            font-weight: 200;
        }

        .accordion-item a.collapsed {
            color: #58709d;
            background: #f2f5fa;
            border-radius: 10px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

            .accordion-item a.collapsed:hover {
                color: #fff;
                background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#01949c) );
                background: linear-gradient(to right, #00cbd6 0%, #00cbd6 100%);
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

                .accordion-item a.collapsed:hover:after {
                    color: #fff;
                }

                .accordion-item a.collapsed:hover i {
                    background: transparent;
                    color: #fff;
                    -webkit-text-fill-color: currentcolor;
                    -webkit-transition: all 0.3s ease-out;
                    transition: all 0.3s ease-out;
                }

            .accordion-item a.collapsed:after {
                content: "+";
                color: #0099d6;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

            .accordion-item a.collapsed i {
                background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
                background: linear-gradient(to right, #00cbd6 0%, #00cbd6 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .accordion-item a i {
            position: relative;
            width: 2em;
            padding-right: 30px;
            text-align: center;
            display: inline-block;
            color: #fff;
        }

/* ==========================================================================
     15. TEAM PAGE
     ========================================================================== */
.team-bl .alignment-container {
    display: block;
}

.team-bl .item-wrap {
    margin-bottom: 30px;
}

/* ==========================================================================
     16. SINGLE TEAM PAGE
     ========================================================================== */
.single-team textarea {
    resize: none;
    min-height: 170px;
}

.single-team .team-send-btn {
    outline: none;
    color: #fff;
}

.tabs .main-text {
    background: #f2f5fa;
    border-radius: 0px 0px 10px 10px;
}

/* ==========================================================================
     17. TYPOGRAPHY PAGE
     ========================================================================== */
p {
    line-height: 30px;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 60px;
    margin-bottom: 30px;
    word-break: break-word;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 16px;
}

blockquote {
    padding-top: 0;
    padding-bottom: 0;
    border-left: 3px solid #00cad6;
}

hr {
    border: none;
    height: 1px;
    margin-left: 0;
    margin-right: 0;
    background-color: #ddd;
}

.section_header + h2,
.section_header + h3,
.section_header + h4,
.section_header + h5,
.section_header + h6 {
    margin-top: 0;
    font-size: 30px;
}

/* ==========================================================================
  18. CLIENTS PAGE
  ========================================================================== */
.client-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

    .client-image img {
        width: 100%;
    }

    .client-image .logo-holder {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(30, 40, 60, 0.44);
    }

        .client-image .logo-holder .logo-wrap {
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

.client-item {
    margin-bottom: 60px;
    margin-left: -30px;
    margin-right: -30px;
}

    .client-item [class*="col-"] {
        padding-left: 30px;
        padding-right: 30px;
    }

.cssload-container {
    width: 100%;
    height: 30px;
    text-align: center;
}

.cssload-double-torus {
    width: 30px;
    height: 30px;
    opacity: 0.5;
    margin: 0 auto;
    border: 7px double;
    border-radius: 50%;
    border-color: transparent rgba(178, 178, 178, 0.9) rgba(0, 0, 0, 0.9);
    -webkit-animation: cssload-spin 1140ms infinite linear;
    animation: cssload-spin 1140ms infinite linear;
}

@-webkit-keyframes cssload-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes cssload-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ==========================================================================
     19. SERVICES PAGE
     ========================================================================== */
.services-bl .item-wrap {
    margin-bottom: 60px;
}

    .services-bl .item-wrap .info-text {
        padding-bottom: 40px;
        border: none;
    }

.services-bl .services-btn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.services-bl .alignment-item {
    margin-bottom: 30px;
}

/* ==========================================================================
     20. SINGLE SERVICE PAGE
     ========================================================================== */
.single-service .service-gallery .service-gallery-img {
    border-radius: 10px;
    overflow: hidden;
}

.single-service .service-gallery .slick-slide {
    margin-right: 30px;
}

/* ==========================================================================
     21. PORTFOLIO PAGE
     ========================================================================== */
.portfolio-page .item_container {
    position: relative;
    /*== PORTFOLIO REGULAR ==*/
    /*== PORTFOLIO FULLWIDTH ==*/
    /*== PORTFOLIO EXTENDED ==*/
}

    .portfolio-page .item_container .category-name {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .portfolio-page .item_container h5 {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 0 15px;
    }

        .portfolio-page .item_container h5 a {
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .portfolio-page .item_container.regular .hv-text,
    .portfolio-page .item_container.masonry .hv-text {
        text-align: center;
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        visibility: hidden;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .portfolio-page .item_container.regular a h5,
    .portfolio-page .item_container.masonry a h5 {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .portfolio-page .item_container.regular a h5:hover,
        .portfolio-page .item_container.masonry a h5:hover {
            color: #3f404a;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .portfolio-page .item_container.regular .item-content:hover .hv-text,
    .portfolio-page .item_container.masonry .item-content:hover .hv-text {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .portfolio-page .item_container.fullwidth .item {
        margin-bottom: 60px;
    }

    .portfolio-page .item_container.fullwidth [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .portfolio-page .item_container.extended .image-bl {
        border-radius: 10px;
        overflow: hidden;
    }

    .portfolio-page .item_container.extended .item-info-bl {
        background: #f2f5fa;
        border-radius: 10px;
        padding: 40px;
        margin: -60px 30px 0 30px;
        position: relative;
    }

        .portfolio-page .item_container.extended .item-info-bl .post-head h5 a:hover {
            color: #00c9d5;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.portfolio-page .filter_container {
    font-size: 0;
}

    .portfolio-page .filter_container .filter-item {
        font-size: 12px;
        display: inline-block;
        text-transform: uppercase;
        padding: 10px 30px;
        margin: 0 5px 20px 5px;
        border: 1px solid #e2e9f0;
        background: transparent;
        color: #58709d;
        border-radius: 20px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .portfolio-page .filter_container .filter-item.active {
            color: #fff;
            background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        .portfolio-page .filter_container .filter-item:hover {
            color: #fff;
            background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.portfolio-page .item {
    display: block;
    position: absolute;
    z-index: 1;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

    .portfolio-page .item .item-content {
        display: block;
    }

        .portfolio-page .item .item-content .image-bl {
            position: relative;
        }

            .portfolio-page .item .item-content .image-bl img {
                width: 100%;
            }

            .portfolio-page .item .item-content .image-bl:after {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                opacity: 0;
                visibility: hidden;
                background: #3f404a;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

        .portfolio-page .item .item-content:hover .image-bl:after {
            opacity: 0.85;
            visibility: visible;
            background: #00cbd6;
            background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
            -webkit-box-shadow: 0 21px 29px rgba(36, 171, 179, 0.3);
            box-shadow: 0 21px 29px rgba(36, 171, 179, 0.3);
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .portfolio-page .item.muuri-item-dragging {
        z-index: 3;
    }

    .portfolio-page .item.muuri-item-releasing {
        z-index: 2;
    }

    .portfolio-page .item.muuri-item-hidden {
        z-index: 0;
    }

.portfolio-page .item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
     22. SINGLE PORTFOLIO PAGE
     ========================================================================== */
.portfolio-single .item-info-bl {
    background: #f2f5fa;
    border-radius: 10px;
    padding: 60px;
    margin: 0 60px;
    position: relative;
    top: -90px;
}

    .portfolio-single .item-info-bl [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

.portfolio-single .related-posts [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.portfolio-single .related-posts > div:hover .image-bl:after {
    opacity: 0.85;
    visibility: visible;
    background: #00cbd6;
    background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
    background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.portfolio-single .related-posts > div .image-bl {
    position: relative;
}

    .portfolio-single .related-posts > div .image-bl:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        background: #3f404a;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.portfolio-single .related-posts h5 {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
}

/* ==========================================================================
     23. BLOG PAGE
     ========================================================================== */
.slider-wrap .blog-gallery {
    border-radius: 10px;
    overflow: hidden;
    z-index: 10;
    margin-bottom: 20px !important;
}

    .slider-wrap .blog-gallery .slider-container {
        width: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 4;
        line-height: 70px;
    }

    .slider-wrap .blog-gallery .item-gallery {
        position: relative;
    }

        .slider-wrap .blog-gallery .item-gallery a {
            position: relative;
            display: block;
        }

            .slider-wrap .blog-gallery .item-gallery a:after {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                opacity: 0.7;
                z-index: 2;
                background: #3f404a;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

        .slider-wrap .blog-gallery .item-gallery img {
            width: 100%;
        }

    .slider-wrap .blog-gallery .slick-dots {
        bottom: 60px;
        z-index: 3;
    }

        .slider-wrap .blog-gallery .slick-dots li button:before {
            content: "";
            background: #fff;
            border-radius: 50%;
            width: 6px;
            height: 6px;
            color: #fff;
            opacity: 0.3;
        }

        .slider-wrap .blog-gallery .slick-dots li.slick-active button:before {
            color: #fff;
            opacity: 1;
        }

.vertical-item {
    margin-bottom: 60px;
}

.format-video #vid1_Youtube_api {
    border-radius: 10px !important;
    overflow: hidden !important;
}

.format-video .madia-bdrs-10 {
    border-radius: 10px !important;
    overflow: hidden !important;
}

.format-video .media-responsive {
    display: block;
}

.format-video .vjs-fullscreen .vjs-control-bar {
    padding-bottom: 0 !important;
}

.format-video .vjs-control-bar {
    padding-bottom: 30px !important;
    height: auto !important;
}

.format-video .video-js .vjs-control {
    height: auto !important;
}

.format-quote {
    border-radius: 10px;
    overflow: hidden;
}

    .format-quote .author-link {
        text-decoration: none;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .format-quote .author-link:hover {
            color: #00c9d5;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .format-quote .item-bg {
        background: url("../images/blog/blog-quote-bg.jpg");
        background-size: cover;
        position: relative;
    }

        .format-quote .item-bg:after {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: 0.7;
            background: #3f404a;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .format-quote .post-testimonials-slider {
        position: relative;
        z-index: 10;
        text-align: center;
    }

        .format-quote .post-testimonials-slider .slick-track {
            padding: 15px 0;
        }

    .format-quote .testimonial-nav {
        max-width: 340px;
        display: inline-block;
        margin-bottom: 0 !important;
    }

        .format-quote .testimonial-nav .slick-arrow {
            display: none !important;
        }

        .format-quote .testimonial-nav .item-author {
            text-align: center;
            -webkit-transform: scale(1);
            transform: scale(1);
            margin: 0 10px;
            cursor: pointer;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

            .format-quote .testimonial-nav .item-author .author-image-wrap {
                width: 90px;
                height: 90px;
                background-size: cover;
                display: inline-block;
                vertical-align: top;
                border-radius: 50%;
                overflow: hidden;
            }

            .format-quote .testimonial-nav .item-author.slick-current {
                -webkit-transform: scale(1.3);
                transform: scale(1.3);
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

    .format-quote .testimonial-content {
        max-width: 100%;
        margin: 0 auto !important;
        padding: 0 60px;
    }

        .format-quote .testimonial-content .slick-arrow {
            display: none !important;
        }

        .format-quote .testimonial-content .content-wrap {
            padding-bottom: 50px;
        }

        .format-quote .testimonial-content .slick-dots {
            left: 0;
        }

            .format-quote .testimonial-content .slick-dots li button:before {
                content: "";
                background: #fff;
                width: 6px;
                height: 6px;
                border-radius: 50%;
            }

.format-gallery .info-wrap {
    margin-top: -60px;
}

.format-link {
    border-radius: 10px;
    background: #3f404a;
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: center;
}

.dark-post-wrap .info-category {
    color: #0099d6;
}

.dark-post-wrap .info-title {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .dark-post-wrap .info-title:hover,
    .dark-post-wrap .info-title:focus {
        color: #00c9d5;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.dark-post-wrap .info-management {
    border-top: 1px solid rgba(88, 112, 157, 0.15);
    padding-top: 30px;
}

    .dark-post-wrap .info-management .fa {
        color: #0099d6;
    }

    .dark-post-wrap .info-management span {
        color: #fff;
    }

.dark-post-wrap .info-text {
    color: #c2d4f8;
}

.format-continue-link .item-media {
    border-radius: 10px;
    overflow: hidden;
}

    .format-continue-link .item-media img {
        width: 100%;
    }

.format-small-image {
    position: relative;
}

    .format-small-image .item-media {
        border-radius: 10px;
        overflow: hidden;
        padding: 0;
    }

    .format-small-image .info-category {
        color: #0099d6;
    }

    .format-small-image .info-wrap {
        border-radius: 10px;
        background: #3f404a;
        padding-top: 40px;
        padding-bottom: 30px;
        padding-left: 40px;
        padding-right: 40px;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 63%;
    }

    .format-small-image .post-head {
        border: none;
        padding: 0;
    }

.format-aside .info-wrap .info-category {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.format-aside .info-wrap .info-title {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.format-aside .info-wrap .post-head {
    display: inline-block;
}

    .format-aside .info-wrap .post-head .info-title:hover {
        color: #00c9d5;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.format-aside .info-management {
    border-top: 1px solid rgba(88, 112, 157, 0.15);
    padding-top: 30px;
}

.format-chat .post-head {
    display: inline-block;
}

    .format-chat .post-head .info-category {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .format-chat .post-head .info-title {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .format-chat .post-head .info-title:hover {
            color: #00c9d5;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.format-chat .info-text p:nth-child(2n) {
    background: #fff;
    padding: 20px;
}

.format-chat .info-management {
    border-top: 1px solid rgba(88, 112, 157, 0.15);
    padding-top: 30px;
}

.insta-widget [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.insta-widget .instagram-item {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
    margin-bottom: 10px;
}

    .insta-widget .instagram-item:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        z-index: 10;
    }

    .insta-widget .instagram-item img {
        width: 100%;
    }

.search-tamplete-form {
    width: 100%;
}

    .search-tamplete-form .search-input {
        width: 100%;
        padding: 19px 90px 19px 30px;
        text-align: left;
    }

    .search-tamplete-form button {
        width: 60px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        border-radius: 0 10px 10px 0;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .search-tamplete-form button:hover {
            color: #3f404a;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.category-widget li {
    line-height: normal;
    padding: 20px 0;
    border-top: 1px solid rgba(88, 112, 157, 0.15);
}

    .category-widget li:before {
        margin-top: 7px;
    }

    .category-widget li:last-child {
        border-bottom: 1px solid rgba(88, 112, 157, 0.15);
    }

    .category-widget li a {
        color: #58709d;
        text-decoration: none;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .category-widget li a:hover {
            color: #00c9d5;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.tags-widget .tags-item {
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 27px;
    margin: 5px 5px 5px 5px;
    border: 1px solid #e2e9f0;
    background: transparent;
    color: #58709d;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .tags-widget .tags-item:hover {
        color: #fff;
        background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
        background: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.latest-widget .latest-item a .title-bl {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.latest-widget .latest-item a:hover .title-bl {
    color: #00c9d5;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.latest-widget .image-bl {
    max-width: 85px;
}

    .latest-widget .image-bl img {
        max-width: inherit;
    }

.latest-widget .info-bl {
    padding-left: 20px;
}

.latest-widget .latest-item {
    margin-bottom: 30px;
}

/* ==========================================================================
     24. POST PAGE
     ========================================================================== */
.post-default-tamplate .video-post .vjs-control-bar {
    padding-bottom: 0 !important;
}

.post-default-tamplate .post-wrapper .post-content {
    background: #f2f5fa;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px 40px 25px 40px;
}

    .post-default-tamplate .post-wrapper .post-content .category-name {
        color: #00c9d5;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .post-default-tamplate .post-wrapper .post-content .post-title {
        font-size: 24px;
        margin: 0 0 25px 0;
    }

    .post-default-tamplate .post-wrapper .post-content .info-management {
        border-top: 1px solid rgba(88, 112, 157, 0.15);
        padding-top: 25px;
    }

.post-default-tamplate .post-wrapper .author-post-info {
    position: relative;
    margin-top: 60px;
}

    .post-default-tamplate .post-wrapper .author-post-info .item-media {
        padding: 0;
    }

        .post-default-tamplate .post-wrapper .author-post-info .item-media img {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }

    .post-default-tamplate .post-wrapper .author-post-info .info-wrap {
        border-radius: 10px;
        background: #3f404a;
        padding-top: 40px;
        padding-bottom: 30px;
        padding-left: 40px;
        padding-right: 40px;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 63%;
    }

        .post-default-tamplate
        .post-wrapper
        .author-post-info
        .info-wrap
        .author-rights {
            color: #0099d6;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .post-default-tamplate .post-wrapper .author-post-info .info-wrap .info-text {
            color: #c2d4f8;
        }

        .post-default-tamplate
        .post-wrapper
        .author-post-info
        .info-wrap
        .author-social {
            opacity: 0.8;
        }

            .post-default-tamplate
            .post-wrapper
            .author-post-info
            .info-wrap
            .author-social
            .social-list.social-white
            li
            a
            div {
                will-change: transform;
            }

.post-default-tamplate .post-wrapper .post-commet-bl {
    background: #f2f5fa;
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
}

    .post-default-tamplate .post-wrapper .post-commet-bl .comment_list.children {
        padding-left: 30px;
    }

    .post-default-tamplate .post-wrapper .post-commet-bl .comment-body {
        display: table;
        width: 100%;
        margin-bottom: 30px;
    }

        .post-default-tamplate
        .post-wrapper
        .post-commet-bl
        .comment-body
        .comment-left,
        .post-default-tamplate
        .post-wrapper
        .post-commet-bl
        .comment-body
        .comment-right {
            display: table-cell;
        }

        .post-default-tamplate
        .post-wrapper
        .post-commet-bl
        .comment-body
        .comment-left {
            width: 90px;
            padding-right: 20px;
            vertical-align: top;
        }

            .post-default-tamplate
            .post-wrapper
            .post-commet-bl
            .comment-body
            .comment-left
            img {
                border-radius: 50%;
                overflow: hidden;
            }

    .post-default-tamplate .post-wrapper .post-commet-bl .comment-meta {
        display: table-row;
    }

        .post-default-tamplate .post-wrapper .post-commet-bl .comment-meta > div {
            display: table-cell;
        }

    .post-default-tamplate .post-wrapper .post-commet-bl .author-url {
        color: #3f404a;
        font-size: 20px;
        font-weight: 500;
        text-decoration: none;
        margin-right: 20px;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .post-default-tamplate .post-wrapper .post-commet-bl .author-url:hover {
            color: #00c9d5;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .post-default-tamplate .post-wrapper .post-commet-bl .reply {
        color: #00c9d5;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .post-default-tamplate .post-wrapper .post-commet-bl .reply:hover {
            color: #3f404a;
            text-decoration: none;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.post-default-tamplate .comment-form [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.post-default-tamplate .comment-form input {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 12px;
    outline: none;
}

    .post-default-tamplate .comment-form input[type="submit"] {
        margin-top: 30px;
        margin-bottom: 0;
    }

.post-default-tamplate .comment-form textarea {
    height: 160px;
    text-align: left;
    padding-left: 30px;
    resize: none;
    text-transform: uppercase;
    font-size: 12px;
}

/* ==========================================================================
     25. CONTACT PAGE
     ========================================================================== */
.contact-item {
    margin-bottom: 30px;
}

.icon-bl {
    width: 50px;
}

.email-bl a:hover {
    color: #3f404a;
}

.contact-us-form [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.contact-us-form .general_input {
    text-transform: uppercase;
    font-size: 12px;
    text-align: left;
    padding-left: 30px;
    margin-bottom: 20px;
}

.contact-us-form textarea {
    height: 160px;
    text-align: left;
    padding-left: 30px;
    resize: none;
    text-transform: uppercase;
    font-size: 12px;
}

/* ==========================================================================
     26. 404 PAGE
     ========================================================================== */
.error-page {
    background-image: url("../images/404/404_bg.jpg");
    background-repeat: no-repeat;
    background-size: auto 120%;
}

/* ==========================================================================
     27. ELEMENTS
     ========================================================================== */
.btn {
    display: inline-block;
    vertical-align: top;
    line-height: 30px !important;
    font-family: "Open Sans";
    text-transform: capitalize;
    border-radius: 12px;
    padding: 0 20px;
    outline: none;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

    .btn.white {
        color: #fff;
        border: 1px solid #fff;
    }

        .btn.white .slider_btn {
            color: #fff;
            -webkit-transition: color 0.3s ease-out;
            transition: color 0.3s ease-out;
        }

        .btn.white:hover {
            color: #00c9d5;
            -webkit-transition: color 0.3s ease-out;
            transition: color 0.3s ease-out;
        }

            .btn.white:hover .slider_btn {
                color: #00c9d5;
                -webkit-transition: color 0.3s ease-out;
                transition: color 0.3s ease-out;
            }

    .btn.theme-bg-gradient {
        background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
        background-image: linear-gradient(to right, #00cad6 0%, #12afb9 100%);
        /* -webkit-box-shadow: 0 5px 29px rgba(0, 205, 214, 0.3);
              box-shadow: 0 5px 29px rgba(0, 205, 214, 0.3); */
        color: #fff;
        -webkit-transition: color 0.3s ease-out;
        transition: color 0.3s ease-out;
    }

        .btn.theme-bg-gradient .slider_btn {
            color: #fff;
            -webkit-transition: color 0.3s ease-out;
            transition: color 0.3s ease-out;
        }

        .btn.theme-bg-gradient:hover {
            color: #3f404a;
            -webkit-transition: color 0.3s ease-out;
            transition: color 0.3s ease-out;
        }

            .btn.theme-bg-gradient:hover .slider_btn {
                color: #3f404a;
                -webkit-transition: color 0.3s ease-out;
                transition: color 0.3s ease-out;
            }

    .btn.border-gradient {
        border: 1px solid transparent;
        background-image: -webkit-gradient( linear, left top, left bottom, from(#f2f5fa), to(#f2f5fa) ), -webkit-gradient(linear, left top, right top, from(#00cbd6), to(#0098d6));
        background-image: linear-gradient(#f2f5fa, #f2f5fa), linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
        background-origin: border-box;
        background-clip: content-box, border-box;
        padding: 0;
        -webkit-transition: color 0.3s ease-out;
        transition: color 0.3s ease-out;
    }

        .btn.border-gradient:hover {
            color: #3f404a;
            -webkit-transition: color 0.3s ease-out;
            transition: color 0.3s ease-out;
        }

        .btn.border-gradient.light {
            background-image: -webkit-gradient( linear, left top, left bottom, from(#fff), to(#fff) ), -webkit-gradient(linear, left top, right top, from(#00cbd6), to(#0098d6));
            background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
        }

.border-gradient {
    border: 1px solid transparent;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#fff), to(#fff) ), -webkit-gradient(linear, left top, right top, from(#00cbd6), to(#0098d6));
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 6px;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

    .border-gradient:hover {
        color: #3f404a;
        -webkit-transition: color 0.3s ease-out;
        transition: color 0.3s ease-out;
    }

.main-slider .btn {
    min-width: 220px !important;
    padding: 0;
    height: auto;
}

.partition_left:before {
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0;
    background: #00cad6;
}

.general_input {
    width: 100%;
    height: 60px;
    line-height: 59px;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 5px;
    background: rgba(218, 225, 237, 0.5);
}

.general_textarea {
    width: 100%;
    height: 150px;
    text-align: center;
    border: none;
    outline: none;
    resize: none;
    border-radius: 5px;
    background: rgba(218, 225, 237, 0.5);
}

.subtitle {
    font-size: 12px;
    text-transform: uppercase;
}

.title {
    font-size: 0;
}

    .title span {
        font-size: 40px;
        font-weight: 500;
        line-height: 40px;
    }

.spliter {
    display: inline-block;
    height: 3px;
    width: 73px;
    clear: both;
    background: #00cad6;
}

.background-theme-50-opacity {
    position: relative;
}

    .background-theme-50-opacity:before {
        content: "";
        background: #3f404a;
        opacity: 0.5;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.scale-1 {
    -webkit-transform: scale(1);
    transform: scale(1);
    border-radius: 0px;
    overflow: hidden;
    z-index: 10;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .scale-1:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        z-index: 99;
        border-radius: 10px;
        overflow: hidden;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .scale-1:hover:before {
            opacity: 0.85;
            background: #00cbd6;
            background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
            -webkit-box-shadow: 0 21px 29px rgba(36, 171, 179, 0.3);
            box-shadow: 0 21px 29px rgba(36, 171, 179, 0.3);
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.breadcrumbs span {
    padding: 0 40px;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    padding: 0 40px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .breadcrumbs a:hover {
        color: #00cad6;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.page_input {
    border: none;
    outline: none;
    border-radius: 10px;
}

.search-btn-icon {
    border: none;
    outline: none;
    background: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.pagination-page {
    font-size: 0;
}

    .pagination-page .page-numbers {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        width: 60px;
        height: 60px;
        text-decoration: none;
        border-radius: 50%;
        color: #58709d;
        border: 1px solid #e1e8f0;
        text-align: center;
        line-height: 59px;
        margin: 0 5px 5px 5px;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

        .pagination-page .page-numbers.dots:hover {
            color: inherit;
            background: transparent;
        }

        .pagination-page .page-numbers:first-child {
            margin-left: 0;
        }

        .pagination-page .page-numbers:last-child {
            margin-right: 0;
        }

        .pagination-page .page-numbers.active {
            color: #fefeff;
            background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
        }

        .pagination-page .page-numbers:hover {
            color: #fefeff;
            background: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
            -webkit-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
        }

#toTop {
    width: 50px;
    height: 50px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
    position: fixed;
    bottom: 15px;
    right: 40px;
    display: none;
    border-radius: 50%;
    font-size: 34px;
    z-index: 9999;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    #toTop:hover {
        color: #58709d;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

.testimonial-bg {
    background: url(../images/testimonial-icon.png) no-repeat;
}

.progressbar-text {
    opacity: 0.8;
    color: #58709d !important;
    top: 0 !important;
    left: auto !important;
    right: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.progress-line svg {
    width: 100%;
    height: 6px;
    border: 1px solid #e1e8f0;
    border-radius: 2px;
}

    .progress-line svg path:first-child {
        border-radius: 2px;
    }

.item-wrap {
    display: block;
    max-width: 370px;
    margin: 0 auto 60px auto;
}

    .item-wrap.mwidth {
        max-width: 100%;
    }

    .item-wrap .info-category {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .item-wrap .info-title {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .item-wrap:hover .image {
        position: relative;
        background: transparent;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .item-wrap:hover .image:after {
            opacity: 0.7;
            visibility: visible;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .item-wrap .image {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

        .item-wrap .image:after {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: 0;
            visibility: hidden;
            background: #3f404a;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

    .item-wrap .info-wrap {
        position: relative;
        margin: -30px 15px 0 15px;
    }

        .item-wrap .info-wrap .info-text {
            line-height: 30px;
        }

        .item-wrap .info-wrap.plr30 {
            padding-left: 31px;
            padding-right: 31px;
        }

    .item-wrap .info-management {
        border-top: 1px solid rgba(88, 112, 157, 0.15);
        padding-top: 30px;
    }

    .item-wrap .post-head {
        display: inline-block;
    }

        .item-wrap .post-head .info-title:hover {
            color: #00c9d5;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.arrow-btn .slick-arrow {
    width: 40px;
    height: 80px;
    z-index: 10;
}

.arrow-btn .slick-next {
    right: 0;
}

.arrow-btn .slick-prev {
    left: 0;
}

.arrow-btn .slick-next:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: url("../images/arrow-next.png");
}

.arrow-btn .slick-prev:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: url("../images/arrow-prev.png");
}

.widget-bl {
    margin-bottom: 60px;
}

.widget-title {
    font-size: 24px;
    font-weight: 500;
    color: #3f404a;
    text-align: center;
    line-height: normal;
}

.widget-wrapper {
    margin-top: 30px;
}

.social-item-wrapper {
    display: table;
    width: 100%;
    position: relative;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

    .social-item-wrapper:last-child {
        margin-bottom: 0;
    }

    .social-item-wrapper:hover .social-item:before {
        opacity: 0.3;
        visibility: visible;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .social-item-wrapper .social-item {
        display: table-row;
        height: 60px;
        line-height: 60px;
        background-color: #f2f5fa;
        position: relative;
        z-index: 10;
    }

        .social-item-wrapper .social-item:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: 0;
            visibility: hidden;
            background: #3f404a;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        .social-item-wrapper .social-item .social-icon {
            width: 60px;
            display: table-cell;
            text-align: center;
            border-radius: 10px 0px 0px 10px;
            overflow: hidden;
        }

            .social-item-wrapper .social-item .social-icon .fa {
                font-size: 16px;
                color: white;
            }

            .social-item-wrapper .social-item .social-icon.facebook {
                background: #507cbe;
            }

            .social-item-wrapper .social-item .social-icon.twitter {
                background: #00abef;
            }

            .social-item-wrapper .social-item .social-icon.google {
                background-color: #d93e2d;
            }

        .social-item-wrapper .social-item .social-info {
            display: table-cell;
            padding: 0 30px;
        }

            .social-item-wrapper .social-item .social-info .social-name {
                font-size: 12px;
                font-weight: 600;
                color: #3f404a;
                text-transform: uppercase;
            }

        .social-item-wrapper .social-item .social-counter {
            display: table-cell;
            border-radius: 0px 10px 10px 0px;
            overflow: hidden;
            font-size: 12px;
            color: #58709d;
        }

.calendar-bl .date-picker-wrapper table .caption > th:first-of-type {
    width: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-bl .date-picker-wrapper table .caption > th:last-of-type {
    width: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-bl .date-picker-wrapper {
    padding: 0 !important;
    border: none;
    font-family: "Open Sans";
    width: 100% !important;
}

    .calendar-bl .date-picker-wrapper .month-wrapper {
        border: none;
        width: 100%;
    }

        .calendar-bl .date-picker-wrapper .month-wrapper table .day {
            font-size: 16px;
            padding: 12.5px 0;
        }

            .calendar-bl .date-picker-wrapper .month-wrapper table .day.toMonth.valid {
                color: #58709d;
            }

            .calendar-bl .date-picker-wrapper .month-wrapper table .day.real-today {
                background-color: transparent;
                color: #00c9d6 !important;
            }

                .calendar-bl .date-picker-wrapper .month-wrapper table .day.real-today.checked {
                    color: #fff !important;
                }

        .calendar-bl .date-picker-wrapper .month-wrapper table td {
            font-weight: 500;
        }

            .calendar-bl .date-picker-wrapper .month-wrapper table td:first-child {
                padding-left: 30px;
            }

            .calendar-bl .date-picker-wrapper .month-wrapper table td:last-child {
                padding-right: 30px;
            }

        .calendar-bl .date-picker-wrapper .month-wrapper table th {
            font-weight: 500;
        }

        .calendar-bl .date-picker-wrapper .month-wrapper table .caption {
            height: 60px;
            font-size: 24px;
            font-weight: 500 !important;
            color: #fff;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
            background-image: -webkit-gradient( linear, left top, right top, from(#00cbd6), to(#0098d6) );
            background-image: linear-gradient(to right, #00cbd6 0%, #0098d6 100%);
        }

            .calendar-bl .date-picker-wrapper .month-wrapper table .caption .next:hover {
                background-color: transparent;
                color: #3f404a;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

            .calendar-bl .date-picker-wrapper .month-wrapper table .caption .prev:hover {
                background-color: transparent;
                color: #3f404a;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

        .calendar-bl .date-picker-wrapper .month-wrapper .month1 {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }

            .calendar-bl .date-picker-wrapper .month-wrapper .month1 tbody {
                background-color: #f2f5fa;
            }

                .calendar-bl
                .date-picker-wrapper
                .month-wrapper
                .month1
                tbody
                tr:last-child
                td {
                    padding-bottom: 15px;
                }

                .calendar-bl
                .date-picker-wrapper
                .month-wrapper
                .month1
                tbody
                tr:first-child
                td {
                    padding-top: 15px;
                }

        .calendar-bl .date-picker-wrapper .month-wrapper .month-name {
            text-transform: capitalize;
        }

        .calendar-bl .date-picker-wrapper .month-wrapper .week-name {
            color: #fff;
            background: #3f404a;
            padding: 0 30px;
        }

            .calendar-bl .date-picker-wrapper .month-wrapper .week-name th {
                font-size: 12px;
                font-weight: 600;
                padding: 17px 6px;
            }

                .calendar-bl .date-picker-wrapper .month-wrapper .week-name th:first-child {
                    padding-left: 30px;
                }

                .calendar-bl .date-picker-wrapper .month-wrapper .week-name th:last-child {
                    padding-right: 30px;
                }

    .calendar-bl .date-picker-wrapper .footer {
        display: none;
    }

.posts-nav {
    margin-top: 60px;
}

    .posts-nav .col-md-6 {
        margin-bottom: 15px;
    }

    .posts-nav .nav-btn {
        display: block;
        padding: 40px;
        border-radius: 10px;
        overflow: hidden;
        background-size: cover;
        background-position: 50% 0;
    }

        .posts-nav .nav-btn:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 15px;
            right: 15px;
            opacity: 0.7;
            border-radius: 10px;
            visibility: visible;
            background: #3f404a;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        .posts-nav .nav-btn:hover:before {
            opacity: 0.7;
            background: #58709d;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

        .posts-nav .nav-btn .nav-title {
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .posts-nav .nav-btn .nav_content {
            position: relative;
            z-index: 10;
        }

    .posts-nav .nav_next {
        text-align: right;
    }

.page-name {
    background-image: url("../images/section-title-bg.png");
    background-repeat: no-repeat;
    background-size: auto 120%;
}

.default-tabs .nav-tabs {
    border-bottom: 4px solid #00c9d6;
    margin-left: 0;
}

    .default-tabs .nav-tabs li {
        padding: 0;
    }

        .default-tabs .nav-tabs li.active a {
            background-color: #00c9d6;
            color: #fff;
            border-color: transparent;
        }

            .default-tabs .nav-tabs li.active a:hover,
            .default-tabs .nav-tabs li.active a:focus {
                border-color: transparent;
                border-bottom: none;
            }

        .default-tabs .nav-tabs li a {
            border-radius: 10px 10px 0px 0px;
            border: 1px solid rgba(88, 112, 157, 0.5);
            border-bottom: none;
            padding: 19px 50px;
            margin-right: 1px;
            color: #58709d;
            line-height: normal;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

            .default-tabs .nav-tabs li a:hover,
            .default-tabs .nav-tabs li a:focus {
                background-color: #00c9d6;
                color: #fff;
                border-color: transparent;
                -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

.notifications {
    padding: 20px 40px;
    border-radius: 30px;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

    .notifications.congratulations {
        background-color: #6dbf3b;
    }

    .notifications.information {
        background-color: #00b4d6;
    }

    .notifications.alert {
        background-color: #f0d156;
    }

    .notifications.error {
        background-color: #f5523c;
    }

.table td {
    padding: 5px !important;
}

.table > th, .table > thead > th {
    padding: 40px !important;
    background-color: #f2f5fa;
    font-weight: 400 !important;
}

.table > thead > tr > th {
    vertical-align: middle !important;
}

.blink {
    font-size: 10pt;
}

.open-fibre-logo {
    max-width: 250px;
}

/* ==========================================================================
     28. Custom Styles
     ========================================================================== */

.circle p {
    line-height: 80px !important;
}
