@charset "UTF-8";

/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&amp;display=swap");
body {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #777777;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #474747;
    margin: 0px;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/*===== Custom Container =====*/
@media only screen and (min-width: 1400px) {
    .custom-container {
        max-width: 1560px;
    }
}

/*===== All Button Style =====*/
.main-btn {
    display: inline-block;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 40px;
    font-size: 16px;
    height: 65px;
    line-height: 65px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    background-color: #15151a;
    position: relative;
}
@media (max-width: 767px) {
    .main-btn {
        height: 45px;
        line-height: 45px;
        padding: 0 25px;
        font-size: 14px;
    }
}
.main-btn i {
    margin-left: 3px;
    color: #3197db;
}
.main-btn::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50%;
    top: 0;
    left: 0;
    border-top: 2px solid #3197db;
    border-left: 2px solid #3197db;
    background-color: transparent;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.main-btn:hover {
    background-color: #3197db;
    color: #fff;
    border-color: #3197db;
}
.main-btn:hover i {
    color: #fff;
}
.main-btn:hover::before {
    border-color: #fff;
}
.main-btn.main-btn-2 {
    background-color: #3197db;
    color: #fff;
    border-color: #3197db;
}
.main-btn.main-btn-2 i {
    color: #fff;
}
.main-btn.main-btn-2::before {
    border-color: #fff;
}
.main-btn.main-btn-2:hover {
    background-color: #15151a;
}
.main-btn.main-btn-2:hover i {
    color: #3197db;
}
.main-btn.main-btn-2:hover::before {
    border-color: #3197db;
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
    outline: 0;
}

/*===== All Section Title Style =====*/
.section-title .sub-title {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3197db;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .section-title .sub-title {
        font-size: 14px;
    }
}
.main-title{
	text-transform: uppercase;
}
.section-title .main-title {
    font-size: 36px;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .section-title .main-title {
        font-size: 24px;
    }
}
.section-title .main-title span {
    color: #3197db;
}
.section-title.section-title-2 .main-title {
    color: #fff;
}

/*===== All tab content Custom Style =====*/
.tab-content .tab-pane {
    display: block;
    overflow: hidden;
    height: 0;
    visibility: hidden;
    max-width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    overflow: visible;
}

/*===== All Pagination Style =====*/
.pagination-items .pagination li {
    padding: 0 5px;
}
.pagination-items .pagination li a {
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(21, 21, 26, 0.1);
    color: #15151a;
    border-radius: 3px;
    font-size: 16px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.pagination-items .pagination li a.active,
.pagination-items .pagination li a:hover {
    color: #fff;
    background-color: #3197db;
    border-color: #3197db;
}

/*===== All Form Style =====*/
.single-form {
    margin-top: 25px;
}
.single-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}
.single-form input,
.single-form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #eceff8;
    padding: 0 15px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #777777;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.single-form input + input,
.single-form textarea + input {
    margin-top: 10px;
}
.single-form input:focus,
.single-form textarea:focus {
    border-color: #3197db;
}
.single-form textarea {
    height: 200px;
    padding-top: 10px;
    resize: none;
}

/*===== All Overlay Style =====*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 21, 26, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
}


/*===========================
        02.HEADER css 
===========================*/
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
	    padding: 0;
}
.navbar .custom-container {
    position: relative;
}
.navbar .navbar-toggler {
    padding: 0 5px;
    border: 0;
}
.navbar .navbar-toggler:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #15151a;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}
.navbar-brand img {
    width: 180px;
}
.navbar.sticky img {
    width: 110px;
}
.off-canvas-sidebar img{
	width:300px;
}
.slider-active .owl-theme .owl-nav {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-collapse {
        position: absolute;
        top: 130%;
        left: 0;
        width: 100%;
        background-color: #15151a;
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}
@media (max-width: 767px) {
    .navbar .navbar-collapse {
        position: absolute;
        top: 130%;
        left: 0;
        width: 100%;
        background-color: #15151a;
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}
.navbar .navbar-nav li {
    margin: 0 15px;
    position: relative;
}
.navbar .navbar-nav li:last-child{
	border: 1px solid #3197db;
	padding:  0 10px;
}
.sticky .navbar-nav li:last-child{
	border: 1px solid #000;
	padding:  0 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-nav li {
        margin: 5px 0;
    }
}
@media (max-width: 767px) {
    .navbar .navbar-nav li {
        margin: 5px 0;
    }
}
.navbar .navbar-nav li a {
    font-size: 14px;
    text-transform: uppercase;
    color: #15151a;
    font-weight: 700;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding:14px 0;
    display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-nav li a {
        padding: 5px 0;
    }
}
.navbar .navbar-nav li .sub-menu {
    position: absolute;
    top: 115%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 170px;
    z-index: 9;
    background-color: #fff;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
    -moz-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
    box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-nav li .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transition: all 0s linear;
        -moz-transition: all 0s linear;
        -ms-transition: all 0s linear;
        -o-transition: all 0s linear;
        transition: all 0s linear;
        border-top: 0;
        padding: 0 10px;
        background-color: #15151a;
    }
}
@media (max-width: 767px) {
    .navbar .navbar-nav li .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transition: all 0s linear;
        -moz-transition: all 0s linear;
        -ms-transition: all 0s linear;
        -o-transition: all 0s linear;
        transition: all 0s linear;
        border-top: 0;
        padding: 0 10px;
        background-color: #15151a;
    }
}
.navbar .navbar-nav li .sub-menu li a {
    color: #15151a;
    padding: 8px 12px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-nav li .sub-menu li a {
        color: #fff;
    }
}
@media (max-width: 767px) {
    .navbar .navbar-nav li .sub-menu li a {
        color: #fff;
    }
}
.navbar .navbar-nav li .sub-menu li:hover > a {
    color: #3197db;
    padding-left: 15px;
}
.navbar .navbar-nav li .sub-nav-toggler {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-nav li .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #777777;
        font-size: 16px;
        border: 0;
        width: 35px;
        height: 35px;
    }
}
@media (max-width: 767px) {
    .navbar .navbar-nav li .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #777777;
        font-size: 16px;
        border: 0;
        width: 35px;
        height: 35px;
    }
}
.navbar .navbar-nav li .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}
.navbar .navbar-nav li.active > a,
.navbar .navbar-nav li:hover > a {
    color: #3197db;
}
.offcanvas_main_menu li.active a{
	color: #3197db;
}
.navbar .navbar-nav li:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
        left: 0;
    }
}
@media (max-width: 767px) {
    .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
        left: 0;
    }
}
.navbar .navbar-side-menu a {
    position: relative;
    padding-left: 45px;
}
.navbar .navbar-side-menu a .menu {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.navbar .navbar-side-menu a .line {
    display: block;
    background-color: #fff;
    height: 1px;
    margin: 7px 0;
    margin-left: auto;
}
.navbar .navbar-side-menu a .line:nth-of-type(1) {
    width: 30px;
}
.navbar .navbar-side-menu a .line:nth-of-type(2) {
    width: 36px;
}
.navbar .navbar-side-menu a .line:nth-of-type(3) {
    width: 28px;
}
.navbar .navbar-side-menu a .line:nth-of-type(4) {
    width: 32px;
}
.navbar.sticky {
  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: sticky 1s;
    -moz-animation: sticky 1s;
    -o-animation: sticky 1s;
    animation: sticky 1s;
    -webkit-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
    -moz-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
    box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
    background-color: #fff;
}
.navbar.sticky .navbar-toggler .toggler-icon {
    background-color: #15151a;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar.sticky .navbar-collapse {
        background-color: #fff;
    }
}
@media (max-width: 767px) {
    .navbar.sticky .navbar-collapse {
        background-color: #fff;
    }
}
.navbar.sticky .navbar-nav li a {
    color: #15151a;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar.sticky .navbar-nav li a {
        color: #15151a;
    }
}
@media (max-width: 767px) {
    .navbar.sticky .navbar-nav li a {
        color: #15151a;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar.sticky .navbar-nav li .sub-menu {
        background-color: #fff;
    }
}
@media (max-width: 767px) {
    .navbar.sticky .navbar-nav li .sub-menu {
        background-color: #fff;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar.sticky .navbar-nav li .sub-menu li a {
        color: #15151a;
    }
}
@media (max-width: 767px) {
    .navbar.sticky .navbar-nav li .sub-menu li a {
        color: #15151a;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar.sticky .navbar-nav li .sub-nav-toggler span {
        border-color: #15151a;
    }
}
@media (max-width: 767px) {
    .navbar.sticky .navbar-nav li .sub-nav-toggler span {
        border-color: #15151a;
    }
}
.navbar.sticky .navbar-nav li.active > a,
.navbar.sticky .navbar-nav li:hover > a {
    color: #3197db;
}
.navbar.sticky .navbar-side-menu a .menu {
    color: #15151a;
}
.navbar.sticky .navbar-side-menu a .line {
    background-color: #15151a;
}
.navbar.navbar-dark.sticky {
    background-color: #110f14;
    -webkit-box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.15);
    -moz-box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.15);
    box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.15);
}
.navbar.navbar-dark.sticky .navbar-toggler .toggler-icon {
    background-color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar.navbar-dark.sticky .navbar-collapse {
        background-color: #15151a;
    }
}
@media (max-width: 767px) {
    .navbar.navbar-dark.sticky .navbar-collapse {
        background-color: #15151a;
    }
}
.navbar.navbar-dark.sticky .navbar-nav li a {
    color: #fff;
}
.navbar.navbar-dark.sticky .navbar-nav li .sub-menu {
    background-color: #15151a;
}
.navbar.navbar-dark.sticky .navbar-nav li .sub-menu li a {
    color: #fff;
}
.navbar.navbar-dark.sticky .navbar-nav li .sub-nav-toggler span {
    border-color: #fff;
}
.navbar.navbar-dark.sticky .navbar-nav li.active > a,
.navbar.navbar-dark.sticky .navbar-nav li:hover > a {
    color: #3197db;
}
.navbar.navbar-dark.sticky .navbar-side-menu a .menu {
    color: #fff;
}
.navbar.navbar-dark.sticky .navbar-side-menu a .line {
    background-color: #fff;
}

.navbar-white .navbar-toggler .toggler-icon {
    background-color: #15151a;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-white .navbar-collapse {
        background-color: #fff;
    }
}
@media (max-width: 767px) {
    .navbar-white .navbar-collapse {
        background-color: #fff;
    }
}
.navbar-white .navbar-nav li a {
    color: #15151a;
}
.navbar-white .navbar-nav li.active > a,
.navbar-white .navbar-nav li:hover > a {
    color: #3197db;
}
.navbar-white .navbar-side-menu a .menu {
    color: #15151a;
}
.navbar-white .navbar-side-menu a .line {
    background-color: #15151a;
}

@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
/*===========================
        03.Slider css 
===========================*/
.main-slider{
	position:relative;
	top:0;
}
.slider-social {
    position: absolute;
    top: 50%;
    left: 32px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    z-index: 9;
}
.slider-social i{
	color:#fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-social {
        left: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-social {
        display: none;
    }
}
@media (max-width: 767px) {
   .slider-social {
        display: none;
    }
}
.slider-social li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-bottom: 1px solid transparent;
}
.slider-social li {
    background: rgba(250, 250, 250, 0.3);
    width: 50px;
    border-radius: 50%;
    height: 50px;
    line-height: 50px;
    margin: 5px 0;
}
.slider-social li:hover {
    color: #3197db;
    border: 1px solid #3197db;
}
.slider-email {
    position: absolute;
    top: 50%;
    right: -70px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    text-align: center;
    z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .slider-email {
        right: -120px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
   .slider-email {
        display: none;
    }
}
@media (max-width: 767px) {
    .slider-email {
        display: none;
    }
}
.slider-email p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Oswald", sans-serif;
}
.slider-email p i {
    font-size: 20px;
    margin-right: 10px;
}

/*===========================
        03.Slider css 
===========================*/
.slider-area {
    position: relative;
}
.slider-area .slider-social {
    position: absolute;
    top: 50%;
    left: 70px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .slider-social {
        left: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .slider-social {
        display: none;
    }
}
@media (max-width: 767px) {
    .slider-area .slider-social {
        display: none;
    }
}
.slider-area .slider-social li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-bottom: 1px solid transparent;
}
.slider-area .slider-social li {
    background: rgba(250, 250, 250, 0.1);
    width: 50px;
    border-radius: 50%;
    height: 50px;
    line-height: 50px;
    margin: 5px 0;
}
.slider-area .slider-social li:hover {
    color: #3197db;
    border: 1px solid #3197db;
}
.slider-area .slider-email {
    position: absolute;
    top: 50%;
    right: -90px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    text-align: center;
    z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .slider-email {
        right: -120px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .slider-email {
        display: none;
    }
}
@media (max-width: 767px) {
    .slider-area .slider-email {
        display: none;
    }
}
.slider-area .slider-email p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Oswald", sans-serif;
}
.slider-area .slider-email p i {
    font-size: 20px;
    margin-right: 10px;
}

.slider-active .swiper-pagination {
    bottom: 80px;
    left: calc(15% - 170px);
    width: 490px;
    top: auto;
    background-color: rgba(255, 255, 255, 0.1);
    height: 2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-active .swiper-pagination {
        left: calc(20% - 170px);
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-active .swiper-pagination {
        left: calc(27% - 170px);
    }
}
@media (max-width: 767px) {
    .slider-active .swiper-pagination {
        width: 220px;
        left: calc(60% - 170px);
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-active .swiper-pagination {
        width: 220px;
        left: calc(35% - 170px);
    }
}
.slider-active .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: #3197db;
}

.single-slider {
    height: 750px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
@media only screen and (min-width: 1400px) {
    .single-slider {
        height: 950px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-slider {
        height: 700px;
    }
}
@media (max-width: 767px) {
    .single-slider {
        height: 600px;
    }
}
.single-slider .slider-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.single-slider .slider-image .image {
    width: 775px;
    padding: 0 70px;
}
.single-slider .slider-shape {
    width: 830px;
    height: 510px;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: -425px;
    left: -505px;
    z-index: -1;
    border-radius: 50%;
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    transform: rotate(-30deg);
    opacity: 0.04;
}

.slider-content {
    max-width: 600px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-content {
        max-width: 500px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-content {
        max-width: 400px;
    }
}
.slider-content .sub-title {
    font-size: 18px;
    font-weight: 400;
    color: #3197db;
}
@media (max-width: 767px) {
    .slider-content .sub-title {
        font-size: 14px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-content .sub-title {
        font-size: 16px;
    }
}
.slider-content .main-title {
    font-size: 72px;
    color: #fff;
    text-transform: uppercase;
}
.slider-content .main-title span {
    color: #3197db;
    display: contents;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-content .main-title {
        font-size: 58px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-content .main-title {
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .slider-content .main-title {
        font-size: 28px;
        margin-top: 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-content .main-title {
        font-size: 38px;
        margin-top: 5px;
    }
}
.slider-content p {
    color: #fff;
    margin-top: 12px;
}
@media (max-width: 767px) {
    .slider-content p {
        font-size: 14px;
    }
}
.slider-content .slider-btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    padding-left: 70px;
    position: relative;
    margin-top: 50px;
}
@media (max-width: 767px) {
    .slider-content .slider-btn {
        font-size: 14px;
        padding-left: 50px;
    }
}
.slider-content .slider-btn::before {
    width: 60px;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #3197db;
    bottom: 2px;
    left: 0;
}
@media (max-width: 767px) {
    .slider-content .slider-btn::before {
        width: 40px;
    }
}

.slider-play {
    padding-top: 70px;
}
.slider-play .play {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.slider-play .play i {
    font-size: 46px;
    margin-right: 15px;
}


/*===========================
        04.About css 
===========================*/

.about-title {
    position: relative;
    margin-top: 10px;
}
.about-title .title {
    font-size: 296px;
    background-image: url(../images/text-bg.jpg);
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 284px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-title .title {
        font-size: 240px;
        line-height: 250px;
    }
}
@media (max-width: 767px) {
    .about-title .title {
        font-size: 200px;
        line-height: 220px;
    }
}
.about-title .experiences {
    font-size: 21px;
    font-family: "Oswald", sans-serif;
    color: rgba(21, 21, 26, 0.4);
    font-weight: 700;
    left: 0;
    line-height: 37px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-title .experiences {
        left: 200px;
    }
}
@media (max-width: 767px) {
    .about-title .experiences {
        left: 170px;
        font-size: 14px;
    }
}
.about-title .polygon {
    position: absolute;
    bottom: 0px;
    transform: rotate(180deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-title .polygon {
        width: 50px;
        left: 257px;
    }
}
@media (max-width: 767px) {
    .about-title .polygon {
        width: 50px;
        left: 220px;
    }
}



  .about-content .title {
    font-size: 32px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .about-content .title {
        font-size: 24px;
    }
    .about-content .title br {
        display: none;
    }
}
.about-content .sub-title {
    font-size: 14px;
    font-family: "Oswald", sans-serif;
    color: #3197db;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 25px;
}
@media (max-width: 767px) {
    .about-content .sub-title {
        letter-spacing: 0;
    }
}
.about-content p {
    font-size: 16px;
    margin-top: 20px;
}

.about-content .more {
    margin-top: 50px;

    position: relative;
    display: inline-block;
    background: #2a2a86;
    color: #ffffff;
    font-size: 16px;
    line-height: 60px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Rubik", sans-serif;
    padding: 0 30px 0;
    transition: all 500ms ease;
}
.about-content .more::before {
    width: 60px;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #3197db;
    bottom: 2px;
    left: 0;
}
.about-content .more::after {
    width: 60px;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #3197db;
    top: 2px;
    right: 0;
}
.about-content .more:hover {
    color: #3197db;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--thm-base);
    color: var(--thm-black);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


.btn-style-one .btn-title {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	padding: 19px 50px 16px;
	z-index: 1;
	font-family: "Oswald", sans-serif;
}

.btn-style-one:hover {
	background: var(--thm-base);
	color: #ffffff;
}

.btn-style-one .btn-curve {
	position: absolute;
	right: -15px;
	top: 0;
	width: 26px;
	height: 100%;
	background: var(--thm-black);
	opacity: 0.20;
	z-index: 0;
	transform: skewX(-22deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.btn-style-one:hover .btn-curve {
	opacity: 1;
	right: 0;
	width: 100%;
	transform: skewX(0deg);
}
.theme-btn {
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-top:20px;
	
}

.theme-btn i {
	position: relative;
	display: inline-block;
	font-size: 14px;
	margin-left: 3px;
}

.centered {
	text-align: center !important;
}
:root {
	--thm-font: 'Montserrat', sans-serif;
	--thm-base: linear-gradient(160deg, #A5621E, #CB982D, #FFE253, #C79832, #9F631B);;
	--thm-black: #222429;
	--thm-text: #686a6f;
}
/*===== About Dark =====*/
.about-dark {
    background-color: #110f14;
}
.about-dark .about-title .experiences {
    color: rgba(255, 255, 255, 0.3);
}
.about-dark .about-content .title {
    color: #fff;
}
.about-dark .about-content .more {
    color: #fff;
}
.about-dark .about-content .more:hover {
    color: #3197db;
}








/*===========================
   16.Off Canvas Sidebar css 
===========================*/
.off-canvas-sidebar {
    position: fixed;
    top: 0;
    right: -430px;
    width: 420px;
    height: 100%;
    z-index: 999999;
    background-color: #fff;
    overflow: auto;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .off-canvas-sidebar {
        padding: 30px;
        width: 380px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .off-canvas-sidebar {
        padding: 30px;
        width: 340px;
    }
}
@media (max-width: 767px) {
    .off-canvas-sidebar {
        padding: 15px;
        width: 260px;
    }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper {
    padding-top: 50px;
    position: relative;
}
.off-canvas-sidebar-about {
    text-align: center;
}
.off-canvas-sidebar-about img {
    width: 85%;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .sidebar-close {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size: 30px;
    color: rgba(34, 34, 34, 0.6);
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .sidebar-close:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about p {
    font-size: 16px;
    color: #777777;
    margin-top: 15px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social {
    margin-top: 25px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li {
    display: inline-block;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li + li {
    margin-left: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li + li {
        margin-left: 13px;
    }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(34, 34, 34, 0.04);
    border-radius: 50%;
    color: #15151a;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}
@media (max-width: 767px) {
    .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-about .footer-social li a:hover {
    color: #3197db;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-image {
    padding-top: 30px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-image img {
    width: 100%;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info {
	margin:30px 30px 30px 50px;
}
.off-canvas-sidebar-info .item-icon{
	width:31px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .sidebar-title {
    font-size: 24px;
    font-weight: 500;
    color: #15151a;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .sidebar-title {
        font-size: 20px;
    }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .sidebar-title span {
    color: #3197db;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info > p {
    color: #777777;
    font-family: "Oswald", sans-serif;
    margin-top: 35px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info > p span {
    color: #3197db;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-icon i {
    font-size: 30px;
	line-height: 36px;
	color: #3197db;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-icon i {
        font-size: 26px;
    }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content {
    padding-left: 30px;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content {
        padding-left: 20px;
    }
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content p {
    font-size: 16px;
    color: #777777;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content p a {
    color: #777777;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.off-canvas-sidebar .off-canvas-sidebar-wrapper .off-canvas-sidebar-box .off-canvas-sidebar-info .info-items li .single-item .item-content p a:hover {
    color: #3197db;
}
.off-canvas-sidebar.open {
    right: 0;
}


/*# sourceMappingURL=style.css.map */
