/*-----------------------------------------------------------------------------------

-----------------------------------------------------------------------------------
    
    CSS INDEX
    ===================
	
    01. Theme default CSS
    02. Header CSS
    03. Main-banner-area CSS
	04. About Section CSS
    05. Project Main Section CSS
    06. Service Section CSS
	07. Testimonial Section CSS
    08. Team Section CSS
    09. Index Blog Section CSS
	10. FooterTop Section CSS
    11. Contact Section CSS
    12. Footer Section CSS
	13. Blog Page CSS
    14. Portfolio Page CSS
	15. BackGround Lines  CSS
-----------------------------------------------------------------------------------*/


/*=============== 01. Theme default CSS =====================*/

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.site-wrapper {
    height: 100%;
}

.holder {
    position: relative;
}

body {
    background-color: #f5f6f9;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body[data-rtl="rtl"] {
    direction: rtl;
    text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222222;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 36px;
}


/*
@media only screen and (max-width: 767px) {
	h1 {
		font-size: 32px;
	}
}

@media only screen and (max-width: 575px) {
	h1 {
		font-size: 30px;
	}
}

@media only screen and (max-width: 479px) {
	h1 {
		font-size: 24px;
	}
}*/

h2 {
    font-size: 30px;
}


/*
@media only screen and (max-width: 767px) {
	h2 {
		font-size: 26px;
	}
}

@media only screen and (max-width: 575px) {
	h2 {
		font-size: 24px;
	}
}

@media only screen and (max-width: 479px) {
	h2 {
		font-size: 18px;
	}
}
*/

h3 {
    font-size: 24px;
}


/*
@media only screen and (max-width: 767px) {
	h3 {
		font-size: 20px;
	}
}

@media only screen and (max-width: 575px) {
	h3 {
		font-size: 18px;
	}
}

@media only screen and (max-width: 479px) {
	h3 {
		font-size: 16px;
	}
}
*/

h4 {
    font-size: 18px;
}


/*
@media only screen and (max-width: 767px) {
	h4 {
		font-size: 16px;
	}
}

@media only screen and (max-width: 479px) {
	h4 {
		font-size: 14px;
	}
}*/

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a,
button,
img,
input,
span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

*:focus {
    outline: none !important;
}

a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #d0a97e;
}

button,
input[type="submit"] {
    cursor: pointer;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.width-100 {
    width: 100%;
}

.position-absolute {
    position: absolute !important;
}

.float-right {
    float: right !important;
}

a,
a:active,
a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}


/*================ 1.1 Loader CSS ===============*/

html,
body {
    overflow-y: hidden;
    height: 100%;
}

html.animate,
body.animate {
    overflow-y: auto;
    height: auto;
}

header,
.holder,
.bglines {
    opacity: 0;
    transition: all .6s ease-in-out;
}

header.animate,
.holder.animate,
.bglines.animate {
    opacity: 1 !important;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgb(255, 255, 255);
    opacity: 1;
}

.loader-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0px auto;
}

.loader-img {
    padding-bottom: 50px;
}


/*=============== 02. Header CSS =====================*/

header {
    height: 70px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.logo {
    position: relative;
    top: 0;
    left: 0;
    z-index: 999;
    width: 190px;
    background-color: #f4f5f7;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*================ 2.1 MENU CSS ===================*/

.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #ffffff;
    margin-bottom: 4px;
    transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, background-color .5s ease;
    transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}

.menu-icon__line-left {
    width: 15px;
}

.menu-icon__line-right {
    width: 15px;
    float: right;
}

.nav {
    z-index: 1;
    width: calc(100% - 475px);
    position: relative;
    transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    -webkit-transform: translateX(0%) translateY(-150%);
    transform: translateX(0%) translateY(-150%);
}

.nav::before,
.nav::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 70px;
    z-index: -1;
    transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    -webkit-transform: translateX(0%) translateY(-100%);
    transform: translateX(0%) translateY(-100%);
}

.nav::after {
    background: #20394d !important;
    transition-delay: 0s;
}

.nav::before {
    transition-delay: .1s;
    background: rgba(32, 57, 77, 0.1);
}

.nav__content {
    text-align: left;
    font-size: 25px;
    font-weight: 200;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
}

.nav__list-item a {
    position: relative;
    border-left: none;
    border-top: none;
    padding: 10px 15px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 15px;
    color: #f4f5f7;
    font-weight: 400;
    transition: all .5s ease-in-out;
    margin-right: 25px;
    transition-delay: 0s !important;
}

.nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    -webkit-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
}

body.nav-active .menu-icon__line {
    background-color: #fff;
    -webkit-transform: translateX(0px) rotate(-45deg);
    transform: translateX(0px) rotate(-45deg);
}

body.nav-active .menu-icon__line-left {
    -webkit-transform: translateX(1px) rotate(45deg);
    transform: translateX(1px) rotate(45deg);
}

body.nav-active .menu-icon__line-right {
    -webkit-transform: translateX(-2px) rotate(45deg);
    transform: translateX(-2px) rotate(45deg);
}

body.nav-active .nav {
    visibility: visible;
}

body.nav-active .nav,
body.nav-active .nav::before,
body.nav-active .nav::after {
    -webkit-transform: translateX(0%) translateY(0%);
    transform: translateX(0%) translateY(0%);
}

body.nav-active .nav::after {
    transition-delay: .1s;
}

body.nav-active .nav::before {
    transition-delay: 0s;
}

body.nav-active .nav__list {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    transition: all .5s ease-in-out;
    transition-delay: 0.8s !important;
}

body.nav-active .nav__list-item a:hover,
body.nav-active .nav__list-item .active {
    color: #0ab7f9 !important
}

.menu-trigger {
    background: #20394d none repeat scroll 0% 0%;
    height: 70px;
    width: 70px;
    display: table;
    position: relative;
    line-height: 78px;
    color: #FFF;
    text-align: center;
    font-size: 35px;
    z-index: 777;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu-btn {
    width: 19px;
    height: 30px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-btn span {
    position: absolute;
    background: #fff;
    width: 19px;
    height: 2px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.menu-btn span:nth-of-type(1) {
    top: 35%;
    left: 35%;
}

.menu-btn span:nth-of-type(2) {
    top: 45%;
    left: 35%;
    opacity: 1;
    transition: opacity .1s .4s;
}

.menu-btn span:nth-of-type(3) {
    top: 55%;
    left: 35%;
    width: 14px;
}

.menu-trigger:hover .menu-btn span:nth-of-type(3) {
    width: 19px;
}

.menu-trigger .close span:nth-of-type(2) {
    opacity: 0;
    transition: opacity .1s .4s;
}

.menu-trigger .close span:nth-of-type(1) {
    top: 45%;
    transform: rotate(45deg);
}

.menu-trigger .close span:nth-of-type(3) {
    width: 19px;
    top: 45%;
    transform: rotate(-45deg);
}


/*sub menu*/

.sub-menu-parent {
    position: relative;
}

.sub-menu-parent:hover .sub-menu {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.sub-menu {
    opacity: 1;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
    padding: 10px 0px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    z-index: 100;
    list-style-type: none;
    position: absolute;
    top: 55px;
    left: 0px;
    margin: 0;
    background-color: #20394d;
    text-align: left;
    border-top: 2px solid #0ab7f9;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    margin-right: 0px;
    clear: both;
    color: #fff;
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: 1px;
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

.sub-menu li a:hover {
    background: transparent;
}

.sub-menu-parent:focus .sub-menu,
.sub-menu-parent:hover .sub-menu {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}


/*=============== 03. Main-banner-area Section CSS =====================*/

.main-banner-area {
    overflow: hidden;
    position: relative;
}

.main-banner-area .right-bg {
    float: right;
    width: 42%;
    right: 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: url(../../images/banner/hero-bg.png);
    height: 100vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.main-banner-area .right-bg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.main-banner-area .hero-text {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
    z-index: 4;
}

.main-banner-area .hero-text h1 {
    font-size: 45px;
    font-weight: 300;
    line-height: 70px;
    letter-spacing: 2px;
    color: #20394d;
}

.fw-600 {
    font-weight: 600;
}

.color-3ac81e {
    color: #0ab7f9 !important;
}

.main-banner-area .hero-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.main-banner-area .hero-text .email-box {
    width: 85%;
    position: relative;
    background: none;
    overflow: hidden;
}

.main-banner-area .hero-text .email-box span {
    display: block;
    font-size: 13px;
    padding-left: 5px;
}

.play-button-wrapper {
    position: absolute;
    width: 100%;
    top: 45%;
    transform: perspective(1px) translateY(-45%);
    z-index: 4;
    width: 50%;
    right: 0px;
}

.lity.lity-opened {
    opacity: 1;
    z-index: 100000;
    overflow: hidden;
}

.story-video {
    height: 100%;
}

.play-button-wrapper .btn-play {
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 50%;
    height: 120px;
    width: 120px;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    text-align: center;
    margin: auto;
    left: 20%;
    right: 0px;
    position: absolute;
    overflow: hidden;
    top: 0;
    bottom: 0;
    z-index: 3;
}

.right-blue {
    width: 215px;
    height: 70px;
    background: rgba(10, 183, 249, 1);
    cursor: pointer;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: fixed;
    right: 0;
    top: 0;
}

.btn-play:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


/*=============== 04. About Section CSS =====================*/

.about-innerbox {
    z-index: 99;
    position: relative;
    margin-top: -117px;
}

.about-innerbox-left,
.about-innerbox-right {
    position: relative;
}

.about-innerbox-left {
    z-index: 1000;
    position: relative;
    padding: 150px 80px;
    float: left;
    height: 1000px;
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
}

.about-innerbox-left:before {
    content: " ";
    position: absolute;
    top: -1px;
    left: -1px;
    border-width: 0px 0px 130px 130px;
    border-style: solid;
    border-color: #f5f6f9 #f5f6f9 transparent #f5f6f9;
    display: inline-block;
}

.about-innerbox-left:after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    border-width: 0px 0px 130px 130px;
    border-style: solid;
    border-color: transparent transparent #f5f6f9 transparent;
    display: inline-block;
}

.about-title {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 1px;
}

.about-title span {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-innerbox-left p {
    font-size: 15px;
    color: #fff;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 0px;
}

.about-innerbox-left .about-buttons {
    width: 100%;
}

.about-innerbox-left .about-buttons a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    width: 50%;
    height: 70px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.about-innerbox-left .about-buttons a:nth-child(1) {
    color: #20394d;
    background: #fff;
    border: 2px solid #fff;
}

.about-innerbox-left .about-buttons a:nth-child(1):hover {
    color: #fff;
    background: transparent;
}

.about-innerbox-left .about-buttons a:nth-child(2) {
    color: #fff;
    background-color: #20394d;
    border: 2px solid #20394d;
}

.about-innerbox-left .about-buttons a:nth-child(2):hover {
    color: #20394d;
    background: transparent;
}

.about-innerbox-left .ct-heading-tag {
    font-size: 38px;
    line-height: 1.16667;
    letter-spacing: 0;
    color: #fff;
}

.about-innerbox-right {
    padding: 0px;
    z-index: 1000;
    position: relative;
    height: calc(1000px - 130px);
}

.about-innerbox-right .inner-box {
    position: relative;
    padding: 0px 50px;
    width: 50%;
    height: 255px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    background: #29435a;
    border: 1px solid #20394d;
}

.about-innerbox-right .inner-box .big-letter {
    position: absolute;
    left: 100%;
    bottom: -20px;
    color: #29435a;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.about-innerbox-right .inner-box .icon-box {
    position: relative;
    line-height: 1em;
    margin-bottom: 12px;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-innerbox-right .inner-box div {
    position: relative;
    font-weight: 600;
    line-height: 1.7em;
}

.about-innerbox-right .inner-box div a {
    position: relative;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-innerbox-right .e-innerbox-img {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 45vw;
    background-image: url('../../images/about/about-bg.png');
    height: 360px;
    position: relative;
}

.about-innerbox-right .e-innerbox-img:after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    border-width: 0px 0px 130px 130px;
    border-style: solid;
    border-color: transparent transparent #f5f6f9 transparent;
    display: block;
}

.about-innerbox-right .inner-box:hover {
    background-color: #20394d;
}

.about-innerbox-right .inner-box:hover .big-letter {
    left: 50px;
}

.about-innerbox-right .e-innerbox-text {
    margin: 50px 50px 0px;
}

.about-innerbox-right .e-innerbox-text p {
    font-size: 23px;
    color: #29435a;
    font-weight: 500;
    position: relative;
    margin-bottom: 35px;
    line-height: 35px;
    letter-spacing: 1px;
}

.about-innerbox-right .e-innerbox-text p:after {
    content: '';
    position: absolute;
    top: 84px;
    left: 0;
    background-color: #0ab7f9;
    height: 2px;
    width: 60px;
    -webkit-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
    transition: all .6s ease-out;
}

.about-innerbox-right .e-innerbox-text span {
    font-size: 14px;
    color: #20394d;
    font-weight: 700;
}


/*=============== 05. Project Section CSS =====================*/

.project-main-container {
    padding: 100px 0px 0px;
    overflow-x: hidden;
    width: 100%;
}

.project-main-container .project-bg-title {
    font-size: 333px;
    font-weight: 100;
    color: #e3e6e9;
    letter-spacing: 10px;
    position: relative;
    z-index: 99;
}

.project-main-container .project-innerbox {
    position: relative;
    z-index: 99;
    margin-top: -80px;
}

.project-innerbox-slider {
    margin: 0 auto;
}

.project-innerbox-slider .project-slider-main {
    width: 100%;
    position: relative;
    max-height: 100%;
    padding-bottom: 100px;
}

.project-innerbox-slider .project-slider-main .project-slider-left {
    height: 700px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.project-innerbox-slider .project-slider-main .project-slider-left:before,
.project-slider-main .project-slider-left .project-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-width: 0px 0px 130px 130px;
    border-style: solid;
    border-color: transparent #f5f6f9 transparent;
    display: block;
}

.project-slider-main .project-slider-left .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(32, 57, 77, .9);
}

.project-slider-left .project-details {
    position: relative;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    height: 100%;
    opacity: 0;
    transition: transform 1s cubic-bezier(.175, .885, .32, 1.275) 1s, opacity 1s ease-out 1s;
    transform: translateY(-15%);
}

.owl-item.active .project-slider-left .project-details {
    opacity: 1;
    transform: translateY(0);
}

.owl-carousel .owl-stage-outer {
    width: 100%;
}

.owl-carousel .owl-dots {
    width: 100%;
    margin: 0 0 1.875rem;
    margin-top: 3.125rem;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin: 0px auto;
    max-width: 63%;
    transform: translateY(-230px);
    list-style-type: none;
    font-size: 0px;
}

.owl-carousel .owl-dots .owl-dot {
    display: block;
    pointer-events: auto;
    padding: 0px 5px !important;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 0%;
    background-color: transparent;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    transform: rotate(135deg);
    border: 2px solid #88949f;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #0ab7f9;
    border: 2px solid transparent;
}

.counters-list--home .counter {
    color: #fff;
    margin-bottom: 0
}

.counters-list--home .counter + .counter {
    margin-top: 1.875rem
}

.counters-list--home .counter__count {
    color: #fff;
    font-size: 30px;
}

.counter {
    line-height: 1.25;
    margin-bottom: 2.8125rem
}

.counter__count {
    color: #58dd11;
    font-size: 3.875rem;
    font-weight: 300;
    margin-bottom: 0.625rem;
    line-height: 1
}

.project-slider-left .project-details h3 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    max-width: 250px;
}

.project-slider-left .project-details p {
    font-size: 15px;
    max-width: 450px;
    line-height: 30px;
    letter-spacing: 1px;
    padding-bottom: 30px;
    margin-bottom: 0px;
    text-align: justify;
}

.project-slider-left .project-button a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #20394d;
    background: #fff;
    border: 2px solid #fff;
    text-transform: uppercase;
    cursor: pointer;
    width: 233px;
    height: 70px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    margin-bottom: 50px;
}

.project-slider-left .project-button a:hover {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

.project-innerbox-slider .project-slider-main .project-slider-right {
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    position: absolute;
    right: 0;
    top: 50px;
    padding: 100px 32px;
}

.project-innerbox-slider .project-slider-main .project-slider-right:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 0px 0px 130px 130px;
    border-style: solid;
    border-color: transparent transparent #f5f6f9 transparent;
    display: block;
}

.project-slider-main .project-slider-right .project-right-title {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.project-slider-right .project-right-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px 30px;
    width: 50%;
    height: 224px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    background: rgba(15, 113, 3, 0.2);
}

.project-slider-right .project-right-list li:first-child {
    background: rgba(15, 113, 3, 0.1);
}

.project-slider-right .project-right-list li:last-child {
    background: transparent;
}

.project-slider-right .project-right-list li:last-child a img {
    width: auto !important;
}

.project-slider-right .project-right-list li .project-right-icon {
    padding-bottom: 20px;
}

.project-slider-right .project-right-list li .project-right-icon img {
    width: 40px;
    height: auto;
}

.project-slider-right .project-right-list li h4,
.project-slider-right .project-right-list li span {
    font-size: 30px;
    color: #fff;
    margin-bottom: 0px;
    padding-bottom: 20px;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.project-slider-right .project-right-list li p {
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    /*line-height: 30px;*/
}

.project-slider-right .project-right-list li .project-right-text {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 20px;
}


/*=========== 06. Service section CSS ==========*/

.icon-title-text-list {
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url('../../images/laptop.png');
    position: relative;
    padding: 100px 0px 0px;
}

.main-title {
    font-size: 55px;
    color: #20394d;
    font-weight: 200;
    margin: 0 0 1.875rem;
    position: relative;
    z-index: 1000;
    letter-spacing: 1px;
}

.main-title:before {
    width: 80px;
    height: 2px;
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    position: absolute;
    content: '';
    left: 0;
    top: 80px;
}

.service-main-container {
    position: relative;
    z-index: 99;
    padding: 100px 0px 0px;
}

.service-inner-box-column-2 {
    transform: translateY(40%);
    transition: transform 0s linear 0s;
    will-change: transform;
}

.icon-title-text__icon-inner img {
    height: 34px;
}

.icon-title-text__icon span {
    width: 70px;
    height: 70px;
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-title-text__icon span:before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-width: 0px 0px 15px 15px;
    border-style: solid;
    border-color: transparent transparent #f5f6f9 transparent;
    display: block;
}

.icon-title-text__icon span:after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    border-width: 0px 0px 15px 15px;
    border-style: solid;
    border-color: transparent #f5f6f9 transparent;
    display: block;
}

.main-title--box {
    margin: 30px 0;
    font-size: 18px;
    color: #20394d;
    font-weight: 600;
}

.icon-title-text__body {
    margin-bottom: 80px;
}

.icon-title-text__body li {
    font-size: 15px;
    color: #294354;
    line-height: 30px;
    letter-spacing: 1px;
}


/*========= 07. Testimonial Section Css =============*/

.slide__caption {
    font-size: 29px;
    line-height: 1.38;
    color: #333399;
}

.slide.short {
    height: 70vh;
}

.testimonial-title .main-title {
    line-height: 80px;
}

.testimonial-title .main-title:before {
    width: 80px;
    height: 2px;
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    position: absolute;
    content: '';
    left: 0;
    top: 170px;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track::before,
.slick-track::after {
    display: table;
    content: "";
}

.slick-track::after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    margin: 0px auto;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    float: none;
}

.slick-arrow {
    display: none !important;
}

.testimonial-slide-reviews-item {
    height: 360px;
}

.testimonial-slide-reviews-item > p,
.testimonial-slide-reviews-item > div {
    height: 50%;
}

.testimonial-slide-reviews-item > p {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.5;
}

.testimonial-slide-reviews-item > div {
    line-height: 1.05;
}

.testimonial-slide-reviews-item > div > span {
    display: block;
    font-weight: bold;
    line-height: 1.0;
}

.testimonial-slide .testimonial-inner-half[data-position="right"] {
    height: 460px;
}

.testimonial-slide-reviews-item > p {
    height: 130px;
    color: #294354;
}

.testimonial-slide-reviews-item > div {
    padding: 25px 0px;
    font-size: 17px;
    color: #20394d;
}

.testimonial-slide-reviews-item > div > span {
    margin-bottom: 13px;
    font-size: 24px;
}

.slick-slide img {
    display: block;
    opacity: 0.5;
}

.testimonial-slide-logos-item.slick-current img {
    opacity: 1;
}

.testimonial-slide-reviews .slick-list::before,
.testimonial-slide-reviews .slick-list::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 60px;
    z-index: 1;
}

.testimonial-slide-reviews .slick-list::before {
    top: 0;
    background-color: transparent;
}

.testimonial-slide-reviews .slick-list::after {
    bottom: 0;
    background-color: transparent;
}

.testimonial-slide-logos {
    position: absolute !important;
    top: auto;
    right: 0;
    bottom: 80px;
    left: 0px;
    height: 35px;
    z-index: 1;
    margin: 0px auto;
}

.testimonial-slide-logos-item {
    position: relative;
    height: 35px;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.testimonial-slide-logos-item > svg {
    max-height: 100%;
    max-width: 80%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    margin: auto;
}

.testimonial-slide-logos-item > svg path,
.testimonial-slide-logos-item > svg rect,
.testimonial-slide-logos-item > svg polygon {
    fill: rgba(255, 255, 255, 0.25);
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.testimonial-slide-logos-item.slick-current {
    cursor: default;
}

.testimonial-slide {
    z-index: 99;
    position: relative;
}

.testimonial-slide::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    height: 200px;
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
}

.customers-testimonial-title {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.testimonial-slide::after {
    content: '';
    display: block;
    position: absolute;
    right: 48.5%;
    height: 20px;
    bottom: 35%;
    width: 20px;
    background: #f5f6f9;
    transform: rotate(45deg);
}

.customers-testimonial-title {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.slide {
    position: relative;
    width: 100%;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 400ms ease;
    -moz-transition: -moz-transform 400ms ease;
    transition: transform 400ms ease;
    padding: 100px 0px 0px;
}

.testimonial-slide-inner {
    position: relative;
    height: 100%;
}

.testimonial-inner-half {
    position: relative;
    width: 50%;
}

.testimonial-inner-half[data-position="left"] {
    padding-right: 20px;
}

.testimonial-inner-half[data-position="right"] {
    padding-left: 20px;
}

.slide__caption {
    font-size: 29px;
    line-height: 1.38;
    color: #333399;
}

.slide.short {
    height: 70vh;
}


/*============ 08. Team Section CSS =========*/

.team {
    position: relative;
    z-index: 99;
    padding: 100px 0px 0px;
}

.team-box {
    height: 340px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all .6s ease-in-out;
    overflow: hidden;
}

.team-box::after {
    z-index: 1;
    content: '';
    color: rgb(255, 255, 255);
}

.button,
.team-box::after {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    background: #0ab7f9;
    transition: all 0.5s ease-in-out;
    bottom: 0;
    right: 0;
}

.button {
    z-index: 5;
    color: rgb(255, 255, 255);
    font-size: 32px;
    text-decoration: none !important;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.screen {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: 20px 20px 10px;
}

.screen.intro {
    z-index: 1;
}

.team-li-bloc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.team-li-bloc-name {
    font-size: 18px;
    color: #20394d;
    font-weight: 600;
    transition: all .6s ease;
}

.screen.overlay .team-li-bloc-name,
.screen.overlay .team-li-bloc-social .fa {
    color: #fff;
}

.screen.overlay p {
    height: 181px;
    margin: 0;
    text-align: justify;
    font-size: 15px;
    line-height: 30px;
    color: #fff;
    width: 100%;
}

.team-box.open .screen.overlay {
    z-index: 2;
}

.screen.overlay {
    padding: 20px 20px 10px;
    opacity: 0;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease-in-out;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}

.content {
    position: relative;
}

.team-box.open::after {
    width: 100%;
    height: 100%;
}

.button > img {
    transition: all 0.6s ease-in-out;
}

.team-box.open .button > img {
    transform: rotate(135deg);
    box-shadow: none;
}

.team-box.open .screen.overlay {
    animation-name: slideFadeUp;
}

@keyframes slideFadeUp {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.team-li-bloc-img {
    background-position: center;
    background-repeat: no-repeat;
    width: 181px;
    height: 181px;
    border-radius: 50%;
    transition: all .6s ease;
}

.team-li-bloc-social {
    margin: 25px 0px 0px;
    z-index: 1;
}

.team-li-bloc-social .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 18px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    height: 30px;
    width: 30px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    float: left;
    margin: 0px 5px;
    transition: all .6s ease;
    cursor: pointer;
    color: #20394d;
}

.intro .team-li-bloc .team-li-bloc-social i:hover {
    color: rgb(66, 208, 38) !important;
}


/*====== 09. Index page Blog CSS  =========*/

.color-0ab7f9 {
    color: #0ab7f9;
}

.blog-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-list li {
    width: 330px;
}

#Blog {
    padding: 100px 0px 0px;
}

#Blog-page {
    margin-top: -120px;
    padding-bottom: 100px;
}

#blog-bg {
    background: #e6eaf1;
    height: 484px;
}

#Blog,
#Blog-detail-page,
#Blog-page,
#portfolio {
    position: relative;
    z-index: 100;
}

.blog-inner {
    padding: 100px 0px 0px;
}

.blog-item {
    height: 356px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    display: block;
}

.blog-main {
    position: relative;
    overflow: hidden;
}

.blog-main:hover .blog-item {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
    overflow: hidden;
}

.img-box {
    position: relative;
}

.img-box-inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.img-box:before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-width: 0px 0px 52px 52px;
    border-style: solid;
    border-color: transparent transparent #f5f6f9 transparent;
    display: block;
    z-index: 1;
}

.img {
    cursor: pointer;
    background-size: cover;
    background-position: center;
    height: 356px;
    -ms-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.img:hover {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden;
}

.blog-pb {
    padding: 25px 0px 60px;
    color: #20394d;
}

.blog-pb h4 {
    color: #20394d;
    position: relative;
    margin: 20px 0;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}

.load-btn {
    width: 233px;
    height: 70px;
    background: #d6dce1;
    text-align: center;
    line-height: 70px;
    font-size: 15px;
    color: #20394d;
    font-weight: 500;
    margin: 50px 0px 100px;
    transition: all 0.6s ease-in-out;
    letter-spacing: 1px;
}

.load-btn:hover {
    background: #20394d;
    color: #fff;
}


/*============== 10. FooterTop Section CSS =============*/

#f-top {
    position: relative;
    z-index: 100;
    padding: 40px 0px 0px;
}

.list-img {
    display: flex;
}

.li-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-img li {
    transition: all 0.6s ease;
    position: relative;
    width: 350px;
}

.v-overlay1 {
    position: absolute;
    background: transparent;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    transition: all 0.6s ease;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.v-overlay1 .search {
    opacity: 0 !important;
    transform: translate(0%, -100%);
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

.li-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.li-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.list-img li:hover .search {
    transform: translate(0%, 0%);
    opacity: 1 !important;
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
    z-index: 10000;
    position: relative;
    opacity: 1;
}

.v-overlay1 .search {
    opacity: 0 !important;
    transform: translate(0%, -100%);
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

.list-img li:hover:after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.list-img li {
    transition: all 0.6s ease;
    position: relative;
}

.list-img li:after {
    transition: all 0.6s ease;
}

.list-img li .li-image img {
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    position: relative;
    display: block;
}

.list-img li:hover .li-image img {
    -webkit-transform: scale(1.1);
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
    overflow: hidden;
}


/*=============  11. Contact  CSS  =============*/

#contact {
    position: relative;
    z-index: 100;
}

.contact-from {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-from input {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-input-half {
    width: 45%;
}

.contact-from .error-msg {
    position: relative;
    font-size: 20px;
    color: #fff;
    width: calc(100% - 233px);
    text-align: center;
}

.contact-form-input {
    position: relative;
    padding-top: 15px;
    margin-top: 50px;
}

.contact-form-input input {
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: transparent;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    color: #fff;
}

.contact-form-input textarea {
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: transparent;
    border: none;
    padding: 15px 0 10px;
    font-size: 16px;
    color: #fff;
    max-width: 100%;
    height: 50px;
    resize: none;
}

.contact-form-input:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    background-color: #fff;
}

.contact-form-input label {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 1;
    margin: 0;
    -webkit-transition: 0.4s all ease-out;
    -moz-transition: 0.4s all ease-out;
    -ms-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.5px;
}

.contact-form-input label.active {
    opacity: 0;
}

.contact-form-input input:focus + label {
    top: 0;
}

.contact-form-input textarea:focus + label {
    top: 0;
}

.contact-form-input .line {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    background-color: #0ab7f9 !important;
    transform: translate(-50%, 0);
    left: 50%;
    -webkit-transition: 0.4s all ease-out;
    -moz-transition: 0.4s all ease-out;
    -ms-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
}

.contact-form-input input:focus ~ div.line {
    width: 100%;
}

.contact-form-input textarea:focus ~ div.line {
    width: 100%;
}

.contact-input-full {
    width: 100%;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
}

.contact-input-left {
    width: 70%;
}

.contact-input-right {
    width: 25%;
}

.contact-input-left {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.contact-input-full {
    margin-top: 50px;
}

.contact-from .con-button {
    float: right;
    width: 100%;
    cursor: pointer;
    margin-top: 60px;
}

.contact-from .con-button button {
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    background: #0ab7f9;
    text-transform: uppercase;
    -webkit-transition: 0.4s all ease-out;
    -moz-transition: 0.4s all ease-out;
    -ms-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    width: 233px;
    height: 70px;
    cursor: pointer;
    float: right;
    position: relative;
    letter-spacing: 1px;
}

.contact-from .con-button button:hover {
    color: #20394d;
    background-color: #f4f5f7;
    -webkit-transition: 0.4s all ease-out;
    -moz-transition: 0.4s all ease-out;
    -ms-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
}

.con-inner {
    position: relative;
    padding: 100px 0px 100px 100px;
    margin-top: -7%;
    height: 580px;
}

.footer-b {
    position: relative;
    padding-bottom: 100px;
}

.bg-container:before {
    content: '';
    position: absolute;
    background: #193952;
    top: 0;
    bottom: 1px;
    left: 1px;
    right: 0;
    width: 95vw;
}

.con-inner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-width: 130px 0px 0px 130px;
    border-style: solid;
    border-color: transparent #f5f6f9 transparent;
    display: block;
}

.con-left {
    width: 40%;
}

.con-right {
    width: 60%;
}

.con-left h2 {
    font-size: 55px;
    color: #fff;
    font-weight: 200;
    margin: 0 0 1.875rem;
    position: relative;
    z-index: 1000;
    letter-spacing: 1px;
    color: #ffff;
    max-width: 400px;
    line-height: 70px;
    position: relative;
}

.con-left h2:before {
    width: 80px;
    height: 2px;
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    position: absolute;
    content: '';
    left: 0;
    bottom: -30px;
}

.con-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.con-top ul {
    width: calc(33% - 20px);
}

.con-top li {
    margin-bottom: 20px;
}

.con-top li a {
    font-size: 25px;
    color: #cacaca;
}

.con-top li i {
    font-size: 25px;
    color: #cacaca;
    margin-right: 15px;
}

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: 40px;
}

.select-styled {
    height: 40px;
}

.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 10px;
    right: 10px;
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
}

.select-options li {
    margin: 0;
    padding: 10px 0;
    text-indent: 15px;
    color: #000;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.select-options li:hover {
    color: #000;
    background: #fff;
}

.select-options li[rel="hide"] {
    display: none;
}


/*============   12.  Footer CSS      ==================*/

#footer {
    position: relative;
    z-index: 100;
}

.footer-inner .row {
    padding: 0px 0px 50px;
}

.footer-inner ul li:first-child {
    font-size: 18px;
    color: #20394d;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-inner ul li {
    font-size: 15px;
    color: #294354;
    line-height: 30px;
    letter-spacing: 1px;
}

.footer-social li {
    width: 47px;
    height: 47px;
    background: #20394d;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    color: #fff;
    margin-right: 15px;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.6s all ease;
    -ms-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
    cursor: pointer;
}

.footer-social li:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    border-width: 12px 0px 0px 12px;
    border-style: solid;
    border-color: transparent #f5f6f9 transparent;
    display: block;
}

.footer-social li:after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    border-width: 12px 0px 0px 12px;
    border-style: solid;
    border-color: #f5f6f9 transparent;
    display: block;
}

.footer-social li:hover {
    background: #0ab7f9;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.6s all ease;
    -ms-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
}

.footer-social li img {
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.6s all ease;
    -ms-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
}

.footer-social li:hover img {
    transform: scale(1.1);
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.6s all ease;
    -ms-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
}

.foot-info {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e2e2e2;
    padding: 30px 0px;
    font-size: 16px;
    color: #20394d;
    font-weight: 600;
}


/*===================== 13. Blog page CSS =====================*/

.blog-main {
    position: relative;
    z-index: 99;
    margin-top: -200px;
    padding-bottom: 100px;
}

.blog-main-inner {
    padding: 90px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-img-arrow {
    width: calc(100% - 990px);
}

.blog-head {
    width: 990px;
    font-size: 35px;
    color: #fff;
    font-weight: 500;
    line-height: 50px;
}

.half-bg {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 750px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.blog:before {
    width: 1506px;
    height: 660px;
    background: rgba(10, 183, 249, 1);
    background: -moz-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(10, 183, 249, 1)), color-stop(100%, rgba(10, 183, 249, 1)));
    background: -webkit-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -o-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: -ms-linear-gradient(top, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    background: linear-gradient(to bottom, rgba(10, 183, 249, 1) 0%, rgba(10, 183, 249, 1) 100%);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -999;
}

.blog-details-blog {
    background: #f5f6f9;
    padding: 50px 50px 0px;
    -webkit-clip-path: polygon(130px 0%, 100% 0%, 100% calc(100% - 130px), calc(100% - 0px) 100%, 0% 100%, 0% 130px);
    clip-path: polygon(130px 0%, 100% 0%, 100% calc(100% - 130px), calc(100% - 0px) 100%, 0% 100%, 0% 130px);
}

.blog-post__header {
    padding: 0px 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.blog-post__header-icon img {
    margin-right: 10px;
}

.blog-post__header-tags span {
    color: #20394d;
    font-size: 16px;
    font-weight: 600;
}

.blog-post__header-tags-list {
    float: left;
    line-height: 1;
}

.blog-post__header-social-icons a {
    margin-left: 10px;
    text-decoration: none;
}

.blog-post-wrapper {
    padding: 50px 0px 0px;
}

.blog-post__content p {
    color: #294354;
    font-size: 15px;
    text-align: justify;
    line-height: 30px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.firstcharacter {
    color: #0ab7f9;
    float: left;
    font-size: 58px;
    line-height: 40px;
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 3px;
}

.blog-post__image {
    width: 100%;
    margin-bottom: 50px;
    overflow: hidden;
}

.blog-post__image img {
    width: 100%;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
}

.blog-post__image img:hover {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
}

.quote_body {
    position: relative;
    margin: 0;
}

.quote_body span:before {
}

.blog-post__quote q {
    position: relative;
    font-family: 'Abril Fatface', cursive;
    font-size: 35px;
    letter-spacing: 0.2px;
    color: #20394d;
}

.blog-post__quote {
    margin: 100px 0px;
}

.blog-post__quote q {
    position: relative;
}

.blog-post__quote q::before {
    content: url(../../images/blog/comma-left.png);
    top: -55px;
    left: 0px;
    line-height: 1;
}

.blog-post__quote q::after {
    content: url(../../images/blog/comma-right.png);
    right: 0px;
    line-height: 1;
}

.blog-post__quote q::before,
.blog-post__quote q::after {
    z-index: -1;
    position: absolute;
}

.blog-post__content p .text-underline {
    position: relative;
    transition: all 0.6s ease-in-out;
}

.blog-post__content p .text-underline:hover {
    color: #20394d !important;
}

.blog-post__content p .text-underline:hover:after {
    background: #20394d;
}

.blog-post__content p .text-underline:after {
    position: absolute;
    content: '';
    width: 95%;
    height: 1px;
    background: #0ab7f9;
    bottom: 0;
    left: 0;
    transition: all 0.6s ease-in-out;
}

.blog-post__quote:before {
    content: '';
    position: absolute;
    z-index: 1;
    background: url(images/banner/hero-bg.png);
    height: 200px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.blog-post__content-list li {
    color: #294354;
    font-size: 15px;
    text-align: justify;
    line-height: 30px;
    letter-spacing: 1px;
}

.blog-post__content-list li:before {
    background: #0ab7f9;
    content: "";
    display: inline-block;
    height: 3px;
    position: relative;
    vertical-align: middle;
    width: 24px;
    margin-right: 20px;
}

.post-comments {
    padding: 100px 0px 0px;
}

.latest-comments ul .latest-comments-list {
    background: #fff;
    padding: 45px 30px;
    border: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

.comments-avatar {
    float: left;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-right: 20px;
}

.comments-avatar img {
    border-radius: 50%;
}

.comments-text {
    overflow: hidden;
}

.avatar-name {
    margin-bottom: 10px;
    overflow: hidden;
}

.avatar-name h5 {
    color: #20394d;
}

.avatar-head {
    margin-bottom: 20px;
}

.avatar-name {
    float: left;
}

.avatar-replay {
    float: right;
    width: 99px;
    height: 40px;
    background: #0ab7f9;
    transition: all 0.6s ease-in-out;
}

.avatar-replay:hover {
    background: #20394d;
    transition: all 0.6s ease-in-out;
}

.avatar-replay a {
    color: #fff;
    transition: all 0.6s ease-in-out;
}

.avatar-name > h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.avatar-name > span {
    color: #294354;
    font-size: 16px;
    text-align: justify;
    font-weight: 500;
    letter-spacing: 1px;
}

.comments-text > p {
    color: #294354;
    font-size: 15px;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 30px;
}

.comments-text > a {
    border: 1px solid #ddd;
    color: #444;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 20px;
    text-transform: uppercase;
}

.comments-reply {
    padding-left: 88px;
    padding-top: 45px;
}

.comments-reply .comments-box {
    border-left: 3px solid #0ab7f9;
    padding: 0px 0 0px 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.email-form-row {
}

.email-form textarea {
    width: 100%;
    border: 1px solid rgb(229, 229, 229);
    padding: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 115px;
    margin-bottom: 10px;
    resize: none;
}

.email-form .input-contact-half {
    height: 68px;
    width: 350px;
    border: 1px solid rgb(229, 229, 229);
    padding: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 10px;
}

.email-form .submit-contact {
    width: 138px;
    height: 68px;
    border-radius: 0px;
    color: #fff;
    background: #0ab7f9;
    font-size: 14px;
    transition: all 0.6s ease-in-out;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.email-form .submit-contact:hover {
    background: #20394d;
}


/*=============== 14. Portfolio Page CSS ===============*/

#portfolio-main {
    background: #e6eaf1;
    height: 300px;
}

#portfolio {
    margin-top: -180px;
    overflow: hidden;
}

#portfolio-bg {
    background: #e6eaf1;
    height: 300px;
}

.portfolio-tab {
    width: 100%;
    margin: 80px 0px 0px;
}

.portfolio-tab > button {
    border: 1px solid transparent;
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #20394d;
    text-align: center;
    margin-right: 10px;
    border-radius: 2px;
    font-size: 15px;
    letter-spacing: 1px;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.6s all ease-in-out;
    -ms-transition: 0.6s all ease-in-out;
    -o-transition: 0.6s all ease-in-out;
    transition: 0.6s all ease-in-out;
    background: transparent;
}

.filter {
    width: 550px;
    padding: 0px 15px;
}

.filter-button.active.focus,
.filter-button.active:focus,
.filter-button.active:hover,
.filter-button:active.focus,
.filter-button:active:focus,
.filter-button:active:hover,
.filter-button:hover,
.filter-button:active,
.filter-button.active {
    color: #fff;
    background-color: transparent;
    background: #0ab7f9;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.6s all ease-in-out;
    -ms-transition: 0.6s all ease-in-out;
    -o-transition: 0.6s all ease-in-out;
    transition: 0.6s all ease-in-out;
    border: none;
}

.gal {
    width: 100%;
    margin: 80px 0px 0px;
}

.portfolio-list-img {
    position: relative;
}

.portfolio-list-img:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    border-width: 0px 0px 80px 80px;
    border-style: solid;
    border-color: transparent #f5f6f9 transparent;
    display: block;
    z-index: 1;
}

.portfolio-teaser {
    position: relative;
    background-color: rgb(0, 0, 0);
    display: block;
    height: 550px;
    margin: 0px 0px 2rem;
    overflow: hidden;
}

.portfolio-teaser-title {
    color: #fff;
    line-height: 1;
    padding: 4.375rem 3.75rem;
}

.portfolio-teaser-title em,
.portfolio-teaser-title span,
.portfolio-teaser-title strong {
    display: block;
}

.portfolio-teaser-title em {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all .3s ease-out;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-teaser-title strong {
    font-size: 24px;
    font-weight: 300;
    margin: 30px 0px 10px;
    text-transform: none !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-teaser-title span {
    font-size: 15px;
    transition: all .3s ease-out 0s;
    letter-spacing: 1px;
    opacity: .5;
    letter-spacing: 1px;
}

.portfolio-teaser-img {
    max-width: 100%;
    height: auto;
    transform: translateY(10%);
    z-index: 2;
    transition: all .3s ease-out 0s;
}

.portfolio-teaser:hover .portfolio-teaser-img {
    transform: translateY(0%);
}

.icon-title-text__body li::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #0ab7f9;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: -1px;
}
/*==============  15.  BackGround Lines  CSS ==================*/

.bglines {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    z-index: -999;
}

.decolines__marker {
    position: absolute;
    left: 0.0625rem;
    width: 2px;
    height: 65px;
    background-color: #0ab7f9;
    z-index: 5;
}

.js-decoline-marker-one {
    top: 20%;
}

.js-decoline-marker-two {
    top: 80%;
}

.bglines__line {
    position: absolute;
    width: 0.0625rem;
    height: 100vh;
    top: 0;
    background-color: #e7e9ed;
}

.bglines__line:first-child {
    left: 10%;
}

.bglines__line:nth-child(2) {
    left: 20%;
}

.bglines__line:nth-child(3) {
    left: 30%;
}

.bglines__line:nth-child(4) {
    left: 40%;
}

.bglines__line:nth-child(5) {
    left: 50%;
}

.bglines__line:nth-child(6) {
    left: 60%;
}

.bglines__line:nth-child(7) {
    left: 70%;
}

.bglines__line:nth-child(8) {
    left: 80%;
}

.bglines__line:nth-child(9) {
    left: 90%;
}

.project-right-list h4 {
    font-size: 19px !important;
}

.powered {
    position: absolute;
    bottom: 220px;
    left: calc(50% - 35px);
}