@charset "UTF-8";

/*-----------------
    @Typography
-----------------*/

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900');

/*---------------------------
** Global css
---------------------------*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #4e5861;
    font-size: 16px;
    font-weight: 400;
}

body p {
    line-height: 28px;
}

a.boxed-btn,
button.boxed-btn {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 15px 35px;
    text-align: center;
    border-radius: 3px;
    background-color: #58bed3;
    border: none;
    text-decoration: none;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

a.boxed-btn:hover,
button.boxed-btn:hover {
    color: #58bed3;
}

a.boxed-btn span,
button.boxed-btn span {
    position: relative;
    z-index: 1;
    margin: 0px;
    padding: 0px;
}

a.boxed-btn::before,
button.boxed-btn::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 0%;
    background-color: #fff;
}

a.boxed-btn::after,
button.boxed-btn::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0%;
    background-color: #fff;
    -webkit-transition: width .5s;
    -o-transition: width .5s;
    transition: width .5s;
}

a.boxed-btn:hover::before,
button.boxed-btn:hover::before {
    -webkit-transition: width .5s;
    -o-transition: width .5s;
    transition: width .5s;
    width: 100%;
}

a.boxed-btn:hover::after,
button.boxed-btn:hover::after {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    visibility: hidden;
    width: 100%;
}

a.readmore {
    display: inline-block;
    position: relative;
    color: #58bed3;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

a.readmore::after {
    content: "\f101";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    top: 2px;
    right: 0px;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

a.readmore:hover::after {
    opacity: 1;
    right: -13px;
}

span.title {
    color: #797e82;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
}

h2.subtitle {
    color: #183650;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 90px;
}

h2.subtitle::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #58bed3;
    left: 0px;
    bottom: -34px;
}

.form-element {
    margin-bottom: 20px;
}

.select-wrapper {
    position: relative;
}

.form-element input[type="text"],
.form-element input[type="password"],
.form-element input[type="tel"],
.form-element input[type="number"],
.form-element input[type="url"],
.form-element input[type="email"],
.form-element select,
.form-element textarea {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: none;
    outline: 0;
    padding-left: 20px;
    color: #4e5861;
}

.form-element textarea {
    height: 120px;
}

.form-element select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-element button[type="submit"],
.form-element input[type="submit"] {
    border: none;
    position: relative;
    background-color: #58bed3;
    color: #fff;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #58bed3;
    font-size: 14px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.form-element button[type="submit"]:hover span {
    position: relative;
    z-index: 1;
    color: #58bed3;
}

.form-element button[type="submit"]::before,
.form-element input[type="submit"]::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 0%;
    background-color: #fff;
}

.form-element button[type="submit"]::after,
.form-element input[type="submit"]::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0%;
    background-color: #fff;
    -webkit-transition: width .5s;
    -o-transition: width .5s;
    transition: width .5s;
}

.form-element button[type="submit"]:hover::before,
.form-element input[type="submit"]:hover::before {
    -webkit-transition: width .5s;
    -o-transition: width .5s;
    transition: width .5s;
    width: 100%;
}

.form-element button[type="submit"]:hover::after,
.form-element input[type="submit"]:hover::after {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    visibility: hidden;
    width: 100%;
}

.select-wrapper::after {
    position: absolute;
    content: "\f0d7";
    font-weight: 700;
    font-size: 12px;
    color: #a2a7ac;
    font-family: "Font Awesome 5 Free";
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.quote-form-section .form-element select {
    color: #a2a7ac;
}

::-webkit-input-placeholder {
    color: #a2a7ac;
}

:-ms-input-placeholder {
    color: #a2a7ac;
}

::-ms-input-placeholder {
    color: #a2a7ac;
}

::placeholder {
    color: #a2a7ac;
}

.back-to-top {
    bottom: 30px;
    right: 0px;
    position: fixed;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #58bed3;
    border: 1px solid #58bed3;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.back-to-top:hover {
    background-color: #fff;
    color: #58bed3;
}

.back-to-top.show {
    opacity: 1;
    right: 30px;
}

.buttonBar {
    display: none;
}

.lb-cancel {
    background: url(../img/loading.gif) no-repeat;
}

.lb-nav a.lb-prev {
    background: url(../img/prev.png) left 48% no-repeat;
}

.lb-nav a.lb-next {
    background: url(../img/next.png) right 48% no-repeat;
}

.lb-data .lb-close {
    background: url(../img/close.png) top right no-repeat;
}

.lightbox {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10000;
    width: 100%;
    font-weight: 400;
}

.lightboxOverlay {
    position: fixed;
}


/*---------------------------
** Helper Css
---------------------------*/

.height-100 {
    height: 100%;
}

.no-margin {
    margin: 0px;
}

.no-padding {
    padding: 0px;
}

.outer {
    display: table;
    height: 100%;
}

.inner {
    display: table-cell;
    vertical-align: middle;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.parallax {
    background-attachment: fixed;
}


/*---------------------------
** Preloader css
---------------------------*/

.loader-container {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.loader {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    border: 4px solid #58bed3;
    -webkit-animation: loader 2s infinite ease;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #58bed3;
    -webkit-animation: loader-inner 2s infinite ease-in;
    animation: loader-inner 2s infinite ease-in;
}

.loader-fadeout {
    opacity: 0;
    visibility: hidden;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/*---------------------------
** Header Area Css
---------------------------*/

.header-area .info-bar {
    background-color: #183650;
    width: 100%;
    color: #fff;
    padding: 11px 0px 13px;
}

.header-area .info-bar .right-content {
    text-align: right;
}

.info-bar ul.social-links {
    list-style-type: none;
    padding-left: 0px;
    margin: 0px;
}

.info-bar ul.social-links li {
    display: inline-block;
    margin-right: 20px
}

.info-bar ul.social-links li a {
    color: #fff;
    font-size: 14px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.info-bar ul.social-links li a:hover {
    color: #58bed3;
}

.header-area span.working-time {
    display: inline-block;
    font-size: 14px;
    position: relative;
    margin-right: 40px;
}

.header-area span.working-time::after {
    content: "|";
    position: absolute;
    right: -20px;
    color: #6889a3;
}

.header-area .language {
    font-size: 14px;
    display: inline-block;
    position: relative;
}

.header-area .language a i {
    font-size: 8px;
    margin-left: 2px;
}

.header-area .language ul.language-dropdown {
    position: absolute;
    list-style-type: none;
    padding-left: 0px;
    width: 120px;
    background-color: #183650;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-60px, 20px);
    -ms-transform: translate(-60px, 20px);
    transform: translate(-60px, 20px);
    left: 50%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 100;
}

.header-area .language ul.language-dropdown.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-60px, 0px);
    -ms-transform: translate(-60px, 0px);
    transform: translate(-60px, 0px);
}

.header-area .language ul.language-dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-area .language ul.language-dropdown li:last-child {
    border-bottom: none;
}

.header-area .language ul.language-dropdown li a {
    display: block;
    padding: 5px 0px;
}

.header-area .language ul.language-dropdown li a:hover {
    background-color: #fff;
    color: #183650;
}

.language a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.language a:hover {
    color: #58bed3;
}

.logo-wrapper {
    display: table;
    height: 100%;
}

.logo-wrapper-inner {
    display: table-cell;
    vertical-align: middle;
}

.logo-wrapper img {
    max-width: 230px;
    max-height: 55px;
}

.support-bar {
    position: relative;
    background-color: #1f415f;
    color: #fff;
    padding: 30px 0px;
    border-bottom: 2px solid #274a69;
}

.support-bar::before {
    content: "";
    position: absolute;
    left: -47px;
    background-color: #1f415f;
    border-bottom: 2px solid #274a69;
    width: 100px;
    height: 102%;
    top: 0px;
    -webkit-transform: skewX(37deg);
    -ms-transform: skewX(37deg);
    transform: skewX(37deg);
}

.support-bar::after {
    position: absolute;
    content: "";
    right: -50%;
    top: 0px;
    width: 50%;
    height: 102%;
    background-color: #1f415f;
    border-bottom: 2px solid #274a69;
}

.support-bar .support-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.support-bar .support-info .right-content {
    display: table;
}

.support-bar .support-info .right-content-inner {
    display: table-cell;
    vertical-align: center;
}

.support-bar .support-info i {
    font-size: 30px;
    margin-right: 15px;
    color: #58bed3;
}

.support-bar .support-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
}

.support-bar .support-info p {
    font-size: 14px;
    margin: 0px;
}

.support-bar a.boxed-btn {
    float: right;
}

#mobileMenu {
    display: none;
}

.navbar-area {
    position: relative;
    background-color: #1f415f;
    margin-left: 53px;
    padding: 20px 0px;
}

.navbar-area::before {
    content: "";
    position: absolute;
    background-color: #1f415f;
    height: 100%;
    width: 58px;
    left: -33px;
    top: 0px;
    -webkit-transform: skewX(37deg);
    -ms-transform: skewX(37deg);
    transform: skewX(37deg);
}

.navbar-area::after {
    content: "";
    position: absolute;
    background-color: #1f415f;
    height: 100%;
    width: 60%;
    right: -60%;
    top: 0px;
}

.navbar-area nav ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0px;
    margin-top: -2px;
}

.navbar-area nav ul li {
    display: inline-block;
    margin: 0px 18px;
    position: relative;
}

.navbar-area nav ul li.active::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    background-color: #58bed3;
    border-radius: 50%;
    top: 50%;
    left: -9px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navbar-area nav ul li.active a {
    color: #58bed3;
}

.navbar-area nav ul li.dropdown.active::after {
    color: #58bed3;
}

.navbar-area nav ul li:last-child {
    margin-right: 0px;
}

.navbar-area nav ul li:first-child {
    margin-left: 20px;
}

.navbar-area nav ul li a {
    color: #fff;
    text-transform: uppercase;
    padding: 0px;
    font-weight: 600;
    padding: 20px 0px;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.navbar-area nav ul li:hover a {
    color: #58bed3;
}

.navbar-area nav ul li.dropdown {
    position: relative;
    margin-right: 32px;
}

.navbar-area nav ul li.dropdown::after {
    position: absolute;
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #fff;
    top: 4px;
    right: -13px;
    font-size: 12px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.navbar-area nav ul li.dropdown:hover::after {
    color: #58bed3;
}

.navbar-area nav ul li.dropdown ul {
    position: absolute;
    z-index: 10;
    color: #fff;
    visibility: hidden;
    -webkit-transform: translate(-50%, 50px);
    -ms-transform: translate(-50%, 50px);
    transform: translate(-50%, 50px);
    opacity: 0;
    left: 50%;
    top: 40px;
    width: 200px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.navbar-area nav ul li.dropdown:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
}

.navbar-area nav ul li.dropdown ul li {
    display: block;
    text-align: center;
    background-color: #1f415f;
    margin: 0px;
    position: relative;
    z-index: -1;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.home-2 .navbar-area nav ul li.dropdown ul li {
    background-color: #234966;
}

.navbar-area nav ul li.dropdown ul li:last-child {
    border-bottom: none;
}

.navbar-area nav ul li.dropdown ul li a {
    display: block;
    padding: 12px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.navbar-area nav ul li.dropdown ul li a:hover {
    color: #1f415f;
}

.navbar-area nav ul li.dropdown ul li a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0;
    height: 0;
    border-bottom: 0px solid #fff;
    border-right: 0px solid transparent;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    z-index: -1;
}

.navbar-area nav ul li.dropdown ul li a::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0;
    height: 0;
    border-top: 0px solid #fff;
    border-left: 0px solid transparent;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    z-index: -1;
}

.navbar-area nav ul li.dropdown ul li a:hover::before {
    border-bottom: 220px solid #fff;
    border-right: 220px solid transparent;
}

.navbar-area nav ul li.dropdown ul li a:hover::after {
    border-top: 220px solid #fff;
    border-left: 220px solid transparent;
}

.navbar-area nav ul li.dropdown ul li.active {
    background-color: #fff;
}

.navbar-area nav ul li.dropdown ul li.active a {
    color: #1f415f;
}

.navbar-area nav ul li.dropdown ul li.active::before {
    display: none;
}

.navbar-area nav ul li.dropdown ul li.dropdown-submenus {
    position: relative;
}

.navbar-area nav ul li.dropdown ul li.dropdown-submenus ul {
    position: absolute;
    width: 200px;
    left: 200px;
    top: 2px;
    opacity: 0;
    visibility: hidden;
    display: none;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.navbar-area nav ul li.dropdown ul li.dropdown-submenus:hover ul {
    opacity: 1;
    visibility: visible;
    display: block;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.navbar-area nav ul li.dropdown ul li.dropdown-submenus ul li a {
    color: #fff;
}

.navbar-area nav ul li.dropdown ul li.dropdown-submenus ul li.active a {
    color: #1f415f;
}

.navbar-area nav ul li.dropdown ul li.dropdown-submenus ul li:hover a {
    color: #1f415f;
}

.navbar-area nav ul li.dropdown ul li.dropdown-submenus a i {
    font-size: 9px;
    margin-left: 2px;
}

ul.search-cart-area {
    display: inline-block;
    list-style-type: none;
    padding-left: 0px;
    margin: 0px;
    float: right;
}

.search-cart-area li {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.search-cart-area li:first-child {
    margin-right: 40px;
}

.search-cart-area li:first-child::after {
    content: "|";
    top: -1px;
    position: absolute;
    right: -23px;
    color: #6889a3;
}

.search-cart-area li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.search-cart-area li a:hover {
    color: #58bed3;
}

.shopping-icon span.count {
    position: absolute;
    top: -8px;
    right: -13px;
    color: #fff;
    background-color: #58bed3;
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.shopping-icon:hover span.count {
    background-color: #fff;
    color: #58bed3;
}

.sticky-navbar {
    border: none;
    -webkit-animation: navFadeIn 1s;
    animation: navFadeIn 1s;
}

@-webkit-keyframes navFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.header-area.sticky-navbar .info-bar {
    display: none;
}

.header-area.sticky-navbar .support-bar {
    display: none;
}

.header-area.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-area.sticky-navbar .support-nav-area {
    background-color: #fff;
}

.header-area.sticky-navbar .navbar-area {
    padding: 30px 0px;
}

.header-area.sticky-navbar .navbar-area::before {
    width: 65px;
}

/*---------------------------
** Gaming section 
------------------------------*/
.gaming-section .subtitle{
	margin-top: 90px;
}
.gamming-inner {
    position: relative;
}
.gaming-content{
	position: absolute;
    bottom: 2.308rem;
    left: 2.308rem;
    right: 2.308rem;
}
.gaming-title a {
    color: #fff;
    font-size: 2em;
    font-weight: 700;
}
.gaming-title a:hover{
	text-decoration: none;
}
.game-detail {
    padding: 0;
    list-style: none;
    color: #fff;
}
.platform {
    display: inline-block;
    margin-right: 20px;
}
.platform a{
	color: #fff;
}
.gamming-inner:after{
	width: 100%;
    height: 100%;
    content: '';
	position: absolute;
    display: block;
    opacity: 0.6;
    bottom: 0;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.75) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.75) 100%);
}
.gaming-wrapper {
    margin:15px 0px;
}
.platform a:hover{
	text-decoration: none;
}
.platform i {
    color: #25d3dc;
	margin: 0 6px;
}
/*---------------------------
** Search popup css
---------------------------*/

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 150;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.search-popup.popup {
    opacity: 1;
    visibility: visible;
}

.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #183650;
    opacity: .9;
    cursor: pointer;
}

.search-popup form.search-form {
    position: fixed;
    z-index: 1;
    max-width: 768px;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.search-popup form.search-form .form-element input[type="text"],
.search-popup form.search-form .form-element input[type="search"] {
    height: 60px;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
}

.search-popup form.search-form .form-element input[type="text"]::-webkit-input-placeholder,
.search-popup form.search-form .form-element input[type="search"]::-webkit-input-placeholder {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.search-popup form.search-form .form-element input[type="text"]:-ms-input-placeholder,
.search-popup form.search-form .form-element input[type="search"]:-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.search-popup form.search-form .form-element input[type="text"]::-ms-input-placeholder,
.search-popup form.search-form .form-element input[type="search"]::-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.search-popup form.search-form .form-element input[type="text"]::placeholder,
.search-popup form.search-form .form-element input[type="search"]::placeholder {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.search-popup button {
    background-color: transparent;
    border: none;
    position: fixed;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    outline: 0;
}


/*---------------------------
** Hero Area Css
---------------------------*/

.hero-bg {
    background-image: url('../img/home_1/hero_bg.jpg');
    background-size: cover;
}

.hero-area {
    padding: 182px 0px 440px 0px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.hero-txt {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    background-color: #0b2b32;
    opacity: 0.2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero-area .hero-txt > span {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}

.hero-area h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 37px;
    line-height: 1.1;
}

.hero-area a.boxed-btn {
    font-size: 16px;
    padding: 20px 50px;
    border: none;
}


/*---------------------------
** Feature Section CSS
---------------------------*/


/*---------------------------
** Service Section CSS
---------------------------*/

.service-section {
    padding: 111px 0px 116px;
    position: relative;
}

.service-section h2.subtitle {
    margin-bottom: 93px;
}

.service-section .single-service {
    border-radius: 3px;
    border: 1px solid #f1f1f1;
    position: relative;
}

.service-section .single-service .img-wrapper {
    overflow: hidden;
}

.service-section .single-service img {
    width: 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: 10s;
    -o-transition: 10s;
    transition: 10s;
}

.service-section .single-service:hover img {
    -webkit-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
}

.service-section .single-service::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    border-top: 2px solid #58bed3;
    border-right: 2px solid #58bed3;
    z-index: 1;
}

.service-section .single-service:hover::before {
    opacity: 1;
    right: 0px;
    bottom: 0px;
    -webkit-transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
    -o-transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
    transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}

.service-section .single-service::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 2px solid #58bed3;
    border-left: 2px solid #58bed3;
    z-index: 1;
}

.service-section .single-service:hover::after {
    -webkit-transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    -o-transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    opacity: 1;
    left: 0px;
    top: 0px;
}

.single-service p.service-para {
    margin-bottom: 13px;
}

.service-carousel.owl-carousel .owl-item {
    margin-bottom: 4px;
}

.service-carousel.owl-carousel .owl-nav {
    position: absolute;
    top: -114px;
    right: 0px;
}

.service-carousel.owl-carousel .owl-nav button.owl-next,
.service-carousel.owl-carousel .owl-nav button.owl-prev {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #bfc2c5;
    color: #1f415f;
    font-weight: 900;
    font-size: 10px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.service-carousel.owl-carousel .owl-nav button.owl-next:hover,
.service-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #58bed3;
    color: #fff;
    border: 1px solid #58bed3;
}

.service-section .single-service img {
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.service-section .single-service .service-txt {
    padding: 34px 40px;
    position: relative;
    z-index: 2;
}

.service-section .single-service .service-txt h4 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    color: #183650;
    margin-bottom: 15px;
}

.service-section .single-service .service-txt a.readmore {
    color: #58bed3;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}


/*---------------------------
** About Section CSS
---------------------------*/

.about-bg {
    background-image: url('../img/about_bg.jpg');
    background-size: cover;
}

.about-section {
    color: #fff;
    position: relative;
}

.about-section span.subtitle {
    margin-bottom: 89px;
}

.about-section h2.subtitle {
    margin-bottom: 86px;
}

.about-section .comment-content {
    position: relative;
    z-index: 1;
    padding: 111px 0px 386px;
}

.about-section span.title,
.about-section h2.subtitle {
    color: #fff;
}

.about-section img.ceo-pic {
    margin-top: 150px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.ceo-details {
    margin-top: 31px;
}

.ceo-details h5 {
    font-weight: 600;
    margin: 5px 0px 3px;
    font-size: 18px;
}

.ceo-details span {
    font-size: 14px;
}

.about-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #1f415f;
    opacity: .9;
}


/*---------------------------
** Testimonial Section CSS
---------------------------*/

.testimonial-section {
    margin-top: -273px;
    position: relative;
    z-index: 1;
}

.testimonial-section p {
    color: #4e5861;
}

.testimonial-section h2.subtitle {
    margin-bottom: 86px;
    margin-left: 50px;
}

.testimonial-container {
    border: 1px solid #cccece;
    position: relative;
}

.testimonial-container::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../img/temonial-1.jpg');
    background-size: cover;
    z-index: -3;
}

.testimonial {
    background-color: #fff;
    position: relative;
    z-index: 0;
    padding: 90px 0px 95px 0px;
}

.testimonial::after {
    content: "";
    position: absolute;
    right: -105px;
    top: 0px;
    height: 100%;
    width: 180px;
    background-color: #fff;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
    z-index: -1;
}

.testimonial h5 {
    color: #1f415f;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 27px;
    margin-bottom: 3px;
}

.testimonial span.title {
    font-size: 14px;
    font-weight: 600;
    margin-left: 50px;
}

.testimonial-carousel .single-testimonial {
    padding-left: 50px;
}

.testimonial-section .quote-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #5bbccf;
    line-height: 100px;
    text-align: center;
    font-size: 30px;
    color: #fff;
    opacity: .80;
}


/*---------------------------
** Partner Section CSS
---------------------------*/

.partner-section .border-bottom {
    border-bottom: 2px solid #dbddde;
}

.single-partner-item {
    height: 210px;
    text-align: center;
}

.single-partner-item .outer-container {
    margin: 0 auto;
}


/*---------------------------
** FAQ Section CSS
---------------------------*/

.faq-section {
    padding: 120px 0px;
}

.faq-section h2.subtitle::after {
    bottom: -33px;
}

.faq-section h2.subtitle {
    margin-bottom: 93px;
}

.targets .box {
    border: 2px solid #f1f1f1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 34px 39px 29px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

.targets .box::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    border-top: 2px solid #58bed3;
    border-right: 2px solid #58bed3;
}

.targets .box:hover::before {
    opacity: 1;
    right: 0px;
    bottom: 0px;
    -webkit-transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
    -o-transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
    transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}

.targets .box::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 2px solid #58bed3;
    border-left: 2px solid #58bed3;
}

.targets .box:hover::after {
    -webkit-transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    -o-transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    opacity: 1;
    left: 0px;
    top: 0px;
}

.targets .box .icon-wrapper {
    margin-right: 29px;
}

.targets .box .icon-wrapper i {
    font-size: 60px;
    color: #5bbccf;
}

.targets .box:first-child {
    margin-bottom: 30px;
}

.targets .box h4 {
    color: #183650;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 10px;
}

.targets .box p {
    color: #4e5861;
    line-height: 28px;
}

.faq-section .accordion .card {
    margin-bottom: 20px;
    border: none;
    border-radius: 0px;
}

.faq-section .card-header {
    padding: 0px;
}

.faq-section .accordion .card .card-header {
    background-color: #ededed;
    border: none;
}

.faq-section .accordion .card .card-header .btn {
    font-weight: 700;
    color: #1f415f;
    font-weight: 18px;
    border-radius: 3px;
    padding: 12px 30px 16px;
    text-decoration: none;
    position: relative;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.faq-section .accordion .card .card-header .btn:hover {
    background-color: #5bbccf;
    color: #fff;
}

.faq-section .accordion .card .card-header .btn[aria-expanded="true"] {
    background-color: #5bbccf;
    color: #fff
}

.faq-section .accordion .card .card-header .btn::after {
    position: absolute;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 11px;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-section .accordion .card .card-header .btn[aria-expanded="true"]::after {
    position: absolute;
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-size: 11px;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-section .card-body {
    line-height: 28px;
    padding: 32px 20px 12px;
}


/*---------------------------
** Quote Section CSS
---------------------------*/

.quote-section {
    padding: 120px 0px;
}

.quote-section span.title {
    margin-bottom: 15px
}

.quote-section h2.subtitle {
    margin-bottom: 95px;
}

.quote-bg {
    background-image: url('../img/quote_bg.jpg');
    background-size: cover;
}

.quote-bg.parallax {
    background-position: top;
}

.quote-section img {
    width: 100%;
}

.quote-section h2.subtitle,
.quote-section span.title {
    color: #fff;
}

.quote-form-section {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 52px 45px 60px;
	width: 57%;
	margin: 0 auto;
}

.quote-form-section input[type="submit"],
.quote-form-section button[type="submit"] {
    padding: 12px 38px;
    border-radius: 3px;
    position: relative;
}


/*---------------------------
** News Section CSS
---------------------------*/

.news-section {
    padding: 111px 0px 114px;
	padding-top: 0;
}

.news-section h2.subtitle {
    margin-bottom: 94px;
}

.single-news img {
    width: 100%;
    -webkit-filter: grayscale(0%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.single-news:hover img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.single-news .news-txt span {
    color: #797e82;
    font-size: 14px;
    margin-top: 25px;
    display: inline-block
}

.single-news .news-txt a.title {
    display: block;
    text-decoration: none;
}

.single-news .news-txt h3 {
    color: #1f415f;
    font-size: 22px;
    font-weight: 600;
    margin-top: 9px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.single-news .news-txt h3:hover {
    color: #58bed3;
}

.single-news .news-txt a.readmore {
    margin-top: 10px;
}



/*---------------------------
** Footer Section CSS
---------------------------*/

footer {
    background-color: #1f415f;
    color: #b7cee1;
}

footer .logo-wrapper {
    height: auto;
    margin-bottom: 32px;
}

footer .logo-wrapper img {
    max-width: 230px;
    max-height: 55px;
}

footer .top-footer {
    padding: 90px 0px 68px;
    border-bottom: 2px solid #2e567a;
}

footer h4 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 28px;
}

footer ul.userful-links {
    list-style-type: none;
    padding-left: 0px;
}

footer ul.userful-links li {
    margin-bottom: 10px;
}

footer ul.userful-links li a {
    text-transform: uppercase;
    color: #b7cee1;
    font-size: 14px;
    display: inline-block;
    position: relative;
    padding-left: 10px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    text-decoration: none;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

footer ul.userful-links li a:hover {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
    color: #58bed3;
}

footer ul.userful-links li a::before {
    content: '\f054';
    position: absolute;
    left: 0px;
    top: 4px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 8px;
    color: #4ca5bb;
}

.footer-contact .contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
}

.footer-contact .contact-info i {
    font-size: 16px;
    display: inline-block;
    margin-top: 3px;
    color: #4ca5bb;
}

.footer-contact .contact-info p {
    margin-left: 15px;
    margin-bottom: 0px;
}

footer .bottom-footer {
    padding: 15px 0px 3px;
    font-size: 16px;
}



/*---------------------------
** Home Page CSS
---------------------------*/

.home-3.hero-area {
    /*padding: 341px 0px 190px 0px;*/
	padding: 0px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    border: none;
	width: 100%;
    height: 100vh;
}
.video{
	position: absolute;
	bottom:0;
	right: 0;
	z-index:-1;
	overflow:hidden;
}
@media(min-aspect-ratio: 16/9){
	.video{
		width: 100%;
		height: auto;
	}
}
@media(max-aspect-ratio: 16/9){
	.video{
		width: 100%;
		height: auto;
	}
}
.hero-bg-3 {
   /* background-image: url('../img/home_3/hero_bg.jpg');
    background-size: cover;*/
}

.home-3.hero-area .hero-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #0b2b32;
    opacity: 0;
}

.header-area.home-3 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
}

.header-area.home-3 .language {
    top: -1px;
}

.header-area.home-3 .info-bar {
    background-color: rgba(0, 0, 0, .3);
}

#mobileMenuHome3 {
    display: none;
}

.home-3 .navbar-area {
    text-align: right;
    background-color: transparent;
}

.home-3 .navbar-area::after {
    display: none;
}

.home-3 .navbar-area::before {
    display: none;
}

.home-3 ul.search-cart-area {
    margin-left: 22px;
}

.home-3 ul.social-links {
    display: inline-block;
    margin-right: 40px;
    position: relative;
}

.home-3 ul.social-links li:last-child {
    margin-right: 0px;
}

.home-3 ul.social-links::after {
    position: absolute;
    content: "|";
    right: -20px;
    top: 0px;
}

.home-3 nav.main-menu {
    display: inline-block;
}

.home-3 .contact-infos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    padding-top: 3px;
}

.home-3 .contact-infos .email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 50px;
}

.home-3 .contact-infos .email .icon-wrapper {
    margin-right: 10px;
}

.home-3 .contact-infos .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-3 .contact-infos .phone .icon-wrapper {
    margin-right: 10px;
}

.home-3 .support-nav-area {
    padding: 23px 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.home-3 .search-cart-area li:first-child::after {
    color: #fff;
}

.header-area.sticky-navbar.home-3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-area.sticky-navbar.home-3 .support-nav-area {
    background-color: #1f415f;
    border: none;
}

.home-3.sticky-navbar .support-nav-area {
    padding: 0px;
}

.service-section.home-3 .col-lg-4:nth-child(3n) {
    margin-bottom: 30px;
}

.service-section.home-3 .col-lg-4:nth-child(3n):last-child {
    margin-bottom: 0px;
}

.service-section.home-3 .single-service {
    border: none;
    position: relative;
    background-color: #f9f9f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 45px 30px 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow: hidden;
}
.solution-services{
	list-style: none;
}
.assets-section{
	margin-bottom: 50px;
}
.service-section.home-3 .single-service * {
    position: relative;
    margin: 0px;
    padding: 0px;
    z-index: 1;
	margin-bottom: 10px;
}

.service-section.home-3 .single-service i,
.service-section.home-3 .single-service h4,
.service-section.home-3 .single-service p {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.service-section.home-3 .single-service:hover i,
.service-section.home-3 .single-service:hover h4,
.service-section.home-3 .single-service:hover p,
.service-section.home-3 .single-service:hover li {
    color: #fff;
}

.service-section.home-3 .single-service::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 0;
    height: 0;
    border-top: 0px solid #58bed3;
    border-right: 0px solid transparent;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.service-section.home-3 .single-service:hover::before {
    border-top: 201px solid #58bed3;
    border-right: 362px solid transparent;
}

.service-section.home-3 .single-service::after {
    position: absolute;
    content: "";
    bottom: 0px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: 0;
    border-bottom: 0px solid #58bed3;
    border-left: 0px solid transparent;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.service-section.home-3 .single-service:hover::after {
    border-bottom: 200px solid #58bed3;
    border-left: 360px solid transparent;
}

.service-section.home-3 .single-service .service-txt {
    padding: 0px;
}

.service-section.home-3 .single-service .icon-wrapper {
    margin-right: 25px;
    margin-top: 12px;
}

.service-section.home-3 .single-service h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-section.home-3 .single-service i {
    font-size: 60px;
    color: #58bed3;
}

.about-section {
    position: relative;
}

.about-section .about-txt {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px;
}

.about-section .about-txt p {
    margin-bottom: 32px;
}

.about-txt h5 {
    margin: 5px 0px 1px;
    font-weight: 700;
    font-size: 16px;
}

.about-txt span {
    font-size: 14px;
}

.about-bg-3::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -81%;
    top: 0px;
    width: 210%;
    height: 100%;
    background-image: url('../img/home_3/about_bg.jpg');
    background-size: cover;
}

.about-section .about-points {
    padding: 120px 0px 96px;
    background-color: #1f415f;
    position: relative;
}

.about-section .about-points::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -120%;
    height: 100%;
    width: 120%;
    background-color: #1f415f;
}

.about-section .about-points h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-section .about-points .single-point {
    margin-left: -35px;
    margin-bottom: 25px;
}

.about-section .about-points .single-point:last-child {
    margin-bottom: 0px;
}

.about-section .about-points .single-point::after {
    content: "";
    display: block;
    clear: both;
}

.about-section .about-points .single-point .icon-wrapper {
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 65px;
    font-size: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: 20px;
    float: left;
    background-color: #58bed3;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: border .5s, background-color .5s, color .5s;
    -o-transition: border .5s, background-color .5s, color .5s;
    transition: border .5s, background-color .5s, color .5s;
}

.about-section .about-points .single-point:hover .icon-wrapper {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: #fff;
    color: #58bed3;
    border: 3px solid #58bed3;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.single-point .point-txt {
    float: left;
    width: 80%;
}

.home-3.testimonial-section {
    padding-top: 120px;
    margin: auto;
}

.home-3.testimonial-section h2.subtitle {
    margin-bottom: 93px;
}

.home-3.testimonial-section h2.subtitle {
    margin-left: 0px;
}

.testimonial-section.home-3 .section-title {
    color: #afb2be;
}

.testimonial-section.home-3 .section-summary {
    margin: 17px 0px 51px;
}

.single-testimonial img {
    display: inline-block;
    width: 70px;
    border-radius: 50%;
}

.home-3 .single-testimonial::after {
    content: "";
    display: block;
    clear: both;
}

.home-3 .single-testimonial .img-wrapper {
    float: left;
}

.home-3 .client-desc {
    margin-left: 100px;
}

.home-3 .single-testimonial {
    padding: 40px 40px 16px;
    background-color: #f7f7f7;
    position: relative;
}

.home-3 .single-testimonial::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    border-top: 2px solid #58bed3;
    border-right: 2px solid #58bed3;
}

.home-3 .single-testimonial:hover::before {
    opacity: 1;
    right: 0px;
    bottom: 0px;
    -webkit-transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
    -o-transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
    transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}

.home-3 .single-testimonial::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 2px solid #58bed3;
    border-left: 2px solid #58bed3;
}

.home-3 .single-testimonial:hover::after {
    -webkit-transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    -o-transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    opacity: 1;
    left: 0px;
    top: 0px;
}

.home-3 .single-testimonial p.icon-wrapper {
    margin-bottom: 0px;
}

.home-3 .single-testimonial p.icon-wrapper i {
    font-size: 20px;
    color: #58bed3;
}

.home-3 .single-testimonial p.comment {
    font-weight: 400;
}

.home-3 .single-testimonial h5 {
    font-weight: 700;
    color: #1f415f;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.home-3 .single-testimonial p.rank {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
}



.home-4.hero-area {
    padding: 0px;
}

.home-4.hero-area .hero-carousel .single-hero-item {
    padding: 182px 0px 440px 0px;
    position: relative;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.hero-carousel .owl-item.active .hero-txt span {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.hero-carousel .owl-item.active .hero-txt a.boxed-btn,
.hero-carousel .owl-item.active .hero-txt h1 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.hero-carousel {
    position: relative;
}

.hero-carousel.owl-theme .owl-dots {
    position: absolute;
    right: 28px;
    width: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero-carousel.owl-theme .owl-dots .owl-dot {
    outline: none;
}

.hero-carousel.owl-theme .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, .2);
    height: 20px;
    width: 20px;
}

.hero-carousel.owl-theme .owl-dots .owl-dot.active span {
    background-color: #58bed3;
}



.home-2.hero-area.home-5 {
    padding: 0px;
}

.home-2.hero-area.home-5 .single-hero-item {
    padding: 219px 0px 617px 0px;
}


.home-3.hero-area.home-6 {
    padding: 0px;
}

.home-3.hero-area.home-6 .single-hero-item {
    padding: 341px 0px 190px 0px;
}



.breadcrumb-area {
    position: relative;
    padding: 152px 0px 137px;
}

.breadcrumb-area .breadcrumb-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #0b2b32;
    opacity: .6;
}

.about-breadcrumb-bg {
    background-image: url('../img/about/breadcrumb_bg.jpg');
    background-size: cover;
}

.breadcrumb-area .breadcrumb-txt {
    position: relative;
    z-index: 1;
}

.breadcrumb-area span {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.breadcrumb-area h1 {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 60px;
    margin-bottom: 27px;
}

.breadcrumb {
    background: transparent;
    padding: 0px;
}

.breadcrumb a,
.breadcrumb li {
    font-size: 18px;
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f054";
    font-size: 12px;
}

.about-section.about {
    padding: 80px 0px 80px;
}

.about-section.about .about-txt {
    padding: 0px;
    background-color: transparent;
}

.about-section.about .about-txt h2.subtitle {
    color: #183650;
    margin-bottom: 85px;
}

.about-section.about .about-txt span.title {
    color: #797e82;
}

.about-section.about .about-txt p {
    color: #4e5861;
    line-height: 28px;
}

.about-section.about .about-txt h5 {
    color: #58bed3;
}

.about-section.about .about-txt span {
    color: #4e5861;
}

.about-section.about .about-right-bg {
    background-image: url('../img/about/about.jpg');
    height: 100%;
    width: 100%;
    background-size: cover;
}

.about-section.about .targets {
    margin-top: 80px;
}

.about-section.about .targets .box:first-child {
    margin-bottom: 0px;
}

.partner-section.border-top {
    border-top: 2px solid #dbddde;
}

/*---------------------------
** Contact Page CSS
---------------------------*/


.contact-section {
    padding: 120px 0px;
	padding-top:0px;
}

.contact-section .single-info {
    margin-bottom: 30px;
    padding: 40px 42px;
}

.contact-section .single-info::after {
    content: "";
    display: block;
    clear: both;
}

.contact-section .single-info:last-child {
    margin-bottom: 0px;
}

.contact-section .single-info .icon-wrapper {
    border: 1px solid #58bed3;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #fff;
    float: left;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
}

.contact-section .single-info:hover .icon-wrapper {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: #58bed3;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.contact-section .single-info .icon-wrapper i {
    font-size: 20px;
    color: #58bed3;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.contact-section .single-info:hover .icon-wrapper i {
    color: #fff;
}

.contact-section .single-info .info-txt {
    float: left;
    width: 73%;
}

.contact-section .single-info p {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 28px;
}

.contact-section .single-info-col:first-child {
    border: 1px solid #f1f1f1;
}

.contact-section .single-info-col:nth-child(2) {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.contact-section .single-info-col:last-child {
    border: 1px solid #f1f1f1;
}

.contact-form-section .form-element input {
    border: 1px solid #e3e3e3;
}

.contact-form-section {
    margin-top: 90px;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}

.contact-form-section h2.subtitle {
    margin-bottom: 94px;
}

.contact-form-section .form-element textarea {
    border: 1px solid #e3e3e3;
}

.map-wrapper {
    height: 100%;
}

div#map {
    height: 100%;
}

.contact-form-section .form-element button[type="submit"],
.contact-form-section .form-element input[type="submit"] {
    padding: 10px 30px;
}
