@import url('sofia.css');
@import url('font.css');
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif !important;
}

body,
a,
p {
    font-family: 'Rubik', sans-serif !important;
}

button,
input {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    font-size: 18px;
    color: #868686;
    line-height: 34px;
    font-weight: 400;
    background: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
    .container {
        max-width: 1170px;
        padding: 0px 15px;
    }
}

.large-container {
    max-width: 1500px;
    padding: 0px 15px;
    margin: 0 auto;
}

.container-fluid {
    padding: 0px;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.small-container {
    max-width: 680px;
    margin: 0 auto;
}

.boxed_wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden !important;
    width: 100%;
    min-width: 300px;
}

a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

a:hover {
    text-decoration: none;
    outline: none;
}

input,
button,
select,
textarea {
    font-family: 'Rubik', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
}

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

input {
    transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

p {
    position: relative;
    color: #868686;
    font-weight: 400;
    margin: 0px;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: 400;
    color: #1c1c1c;
    margin: 0px;
    transition: all 500ms ease;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 999999;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
}

.centred {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

figure {
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


/** button **/

.theme-btn-one {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #fff !important;
    text-align: center;
    padding: 13px 20px;
    letter-spacing: 1px;
    z-index: 1;
    font-family: 'Montserrat', sans-serif !important;
}

.theme-btn-one:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    background: #1b1b1b;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-one:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    background: #1b1b1b;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-one:hover:before,
.theme-btn-one:hover:after {
    height: 50%;
}

.pagination {
    position: relative;
    display: block;
}

.pagination li {
    display: inline-block;
    margin: 0px 3px;
}

.pagination li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    height: 75px;
    width: 75px;
    line-height: 75px;
    background: #f6f6f6;
    text-align: center;
    color: #868686;
    z-index: 1;
    transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current {
    color: #fff;
}

.pagination li:first-child a:hover,
.pagination li:last-child a:hover {
    background: #1c1c1c;
}

.sec-pad {
    padding: 110px 0px 120px 0px !important;
}

.mr-0 {
    margin: 0px !important;
}

.scroll-top {
    width: 55px;
    height: 55px;
    line-height: 55px;
    position: fixed;
    bottom: 105%;
    right: 30px;
    font-size: 24px;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: 1s ease;
    border-radius: 50%;
    background-color: #f6f6f6;
}

.scroll-top img {
    width: 25px;
}

.scroll-top.open {
    bottom: 75px;
}

.scroll-top span {
    color: #fff;
}

.sec-title {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 43px;
    padding-left: 0;
    font-weight: 600;
    margin: 0px;
    color: #05305e;
}

.sec-title h2:before {
    position: absolute;
    content: '';
    width: 28px;
    height: 3px;
    left: 0px;
    top: 28px;
    display: none
}

.sec-title.light h2 {
    color: #fff;
}

.sec-title.centred {
    text-align: center !important;
}

.sec-title.centred h2 {
    display: inline-block;
}


/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/** header-upper **/

.header-upper {
    position: relative;
    background: #fff;
    width: 100%;
}

.main-header .logo-box {
    position: relative;
    float: left;
    padding: 32px 0px;
}

.main-header .logo-box .logo {
    position: relative;
    display: inline-block;
    max-width: 104px;
    width: 100%;
}

.main-header .logo-box .logo img {
    padding: 0;
    margin-top: 7px;
    width: 200px;
}

.header-upper .right-column .info,
.header-upper .right-column .social-links {
    position: relative;
    display: inline-block;
    float: left;
}

.header-upper .right-column .info li {
    position: relative;
    display: inline-block;
    float: left;
    padding-left: 50px;
    padding-right: 40px;
    margin-right: 40px;
}

.header-upper .right-column .info li:last-child {
    margin: 0px !important;
}

.header-upper .right-column .info li i {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 30px;
    line-height: 30px;
}

.header-upper .right-column .info li h6 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.header-upper .right-column .info li h6 a {
    display: inline-block;
    color: #1c1c1c;
}

.header-upper .right-column .info li h6 a:hover {}

.header-upper .right-column .info li p {
    font-size: 14px;
    line-height: 20px;
}

.header-upper .right-column {
    position: relative;
    margin-top: 43px;
}

.main-header .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.main-header .social-links li:last-child {
    margin: 0px !important;
}

.main-header .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 12px;
    width: 41px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    border: 1px solid #dfdfdf;
    color: #868686;
}

.main-header .social-links li a:hover {
    color: #fff;
}

.main-header.style-one .header-lower {
    position: relative;
    width: 100%;
    background: transparent;
}

.main-header.style-one .header-lower .outer-box {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    background: rgba(27, 27, 27, 0.2);
    padding-left: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header.style-one .support-box {
    position: relative;
    display: inline-block;
    background: #1b1b1b;
    padding: 18px 30px 18px 95px;
}

.main-header .support-box i {
    position: absolute;
    left: 40px;
    top: 19px;
    font-size: 40px;
    line-height: 40px;
}

.main-header.style-one .support-box h6 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
}

.main-header.style-one .support-box h6 a {
    display: inline-block;
    color: #fff;
}

.main-header .support-box h6 a:hover {}

.main-header .support-box p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #7b7b7b;
}


/** main-menu **/

.main-menu {
    float: right;
    margin-top: 26px;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    margin: 0px;
}

.main-menu .navigation > li {
    position: inherit;
    float: left;
    z-index: 2;
    padding: 24px 0px 22px 0px;
    margin: 0px 8px;
}

.main-menu .navigation > li:last-child {
    margin-right: 0px !important;
}

.main-menu .navigation > li:first-child {
    margin-left: 0px !important;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    font-weight: 300;
    opacity: 1;
    color: #fff;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {}

.main-menu .navigation > li > a:before {
    position: absolute;
    content: '';
    width: 0px;
    height: 3px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 500ms ease;
}

.sticky-header .main-menu .navigation > li > a:before {
    background: #fff;
}

.sticky-header .outer-box {
    position: relative;
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu {
    position: absolute;
    left: inherit;
    top: 100%;
    width: 250px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0px;
    filter: alpha(opacity=0);
    background: #fff;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -webkit-box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    padding: 0px 30px;
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.main-menu .navigation > li:hover > ul > li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.main-menu .navigation > li > ul > li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+4) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+5) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+6) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+7) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+8) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a {
    position: relative;
    display: block;
    padding: 3px 0px;
    line-height: 24px;
    font-weight: normal;
    font-size: 15px;
    text-transform: capitalize;
    color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover {}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > a:hover {}

.main-menu .navigation > li > ul > li.dropdown > a:after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 14px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    right: 100%;
    top: 0%;
    width: 230px;
    z-index: 100;
    display: none;
    padding: 10px 0px;
    filter: alpha(opacity=0);
    background: #1c1c1c;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -webkit-box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.main-menu .navigation > li > ul > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    padding: 0px 30px;
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    padding: 0px 30px;
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.main-menu .navigation > li > ul > li:hover > ul > li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+4) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 14px 0px;
    line-height: 24px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 12px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    top: 100%;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0%;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: -32px;
    top: 66px;
    width: 34px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: #3b3b3b;
    cursor: pointer;
    display: none;
    z-index: 5;
    transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
    display: none;
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #3786ff;
    display: none;
}

.menu-area .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 2px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header.style-two .menu-area .mobile-nav-toggler .icon-bar {
    background: #1c1c1c;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0px;
}

.main-header .sticky-header .logo-box {
    padding: 25px 85px 22px 0px;
}

.main-header .sticky-header .main-menu .navigation > li {
    padding: 23px 0px !important;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu {
    position: absolute;
    width: 100%;
    padding: 0px 50px 0px 50px;
    left: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.02)
}

.main-menu .navigation > li.dropdown > .megamenu .col-lg-4:last-child {
    border-right: 0px;
    padding: 0px;
}

.main-menu .navigation > li.dropdown > .megamenu .col-lg-4 {
    border-right: 1px solid #eee;
}

.main-menu .navigation > li.dropdown > .megamenu ul {
    padding: 33px 0 33px 5px
}

.main-menu .navigation li.dropdown .megamenu li h4 {
    font-weight: 500;
    padding: 3px 0px;
    color: #000;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #3786ff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 50px 25px;
    text-align: left;
    padding-bottom: 100px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.40;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #05305e;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn img {
    width: 30px;
    position: relative;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(253, 253, 253, 0.02);
}

.mobile-menu .navigation:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li > a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li > a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current > a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn img {
    width: 30px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    color: #3b3b3b;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {}

div#mCSB_1_container {
    top: 0px !important;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
    color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li a:hover {}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0px;
}


/** banner-section **/

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
}

.banner-carousel .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 230px 0px 210px 0px;
}

.banner-carousel .slide-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #111111;
    top: 0px;
    right: 0px;
    z-index: 1;
    opacity: 0.25;
}

.banner-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition: all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;
}

.banner-carousel .content-box {
    position: relative;
    display: block;
    max-width: 700px;
    z-index: 5;
}

.banner-carousel .content-box h4 {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 58px;
    margin-bottom: 29px;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner-carousel .active .content-box h4 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.banner-carousel .content-box h4:before {
    position: absolute;
    content: '';
    width: 48px;
    height: 3px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-carousel .content-box h1 {
    position: relative;
    display: block;
    color: #fff;
    font-size: 100px;
    line-height: 90px;
    font-weight: 600;
    margin-bottom: 44px;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1300ms ease;
    -moz-transition: all 1300ms ease;
    -ms-transition: all 1300ms ease;
    -o-transition: all 1300ms ease;
    transition: all 1300ms ease;
}

.banner-carousel .active .content-box h1 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1300ms;
    -moz-transition-delay: 1300ms;
    -ms-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.banner-carousel .content-box .btn-box {
    position: relative;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1600ms ease;
    -moz-transition: all 1600ms ease;
    -ms-transition: all 1600ms ease;
    -o-transition: all 1600ms ease;
    transition: all 1600ms ease;
}

.banner-carousel .active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1600ms;
    -moz-transition-delay: 1600ms;
    -ms-transition-delay: 1600ms;
    -o-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
    display: none !important;
}

.banner-carousel .owl-nav svg {
    width: 50px;
}

.banner-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%) rotate(180deg);
    width: 75px;
    height: 75px;
    text-align: center;
    line-height: 75px;
    font-size: 24px;
    font-weight: 600;
    color: #1c1c1c;
    cursor: pointer;
    opacity: 0.3;
    transition: all 500ms ease;
}

.banner-carousel .owl-nav .owl-next {
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    text-align: center;
    line-height: 75px;
    font-size: 24px;
    font-weight: 600;
    color: #1c1c1c;
    cursor: pointer;
    opacity: 0.3;
    transition: all 500ms ease;
}

.banner-carousel .owl-nav .owl-prev:hover,
.banner-carousel .owl-nav .owl-next:hover {
    opacity: 1;
}


/** feature-section **/

.feature-section {
    position: relative;
}

.feature-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 699px;
    height: 636px;
    background-repeat: no-repeat;
}

.feature-section .inner-container {
    position: relative;
    background: #1c1c1c;
    margin-top: -60px;
    z-index: 1;
}

.feature-section .inner-container .single-item {
    position: relative;
    float: left;
    width: 50%;
}

.feature-section .inner-container .single-item .inner-box {
    position: relative;
    padding: 32px 30px 34px 145px;
}

.feature-section .inner-container .single-item:first-child .inner-box {}

.feature-section .inner-container .single-item .inner-box .icon-box {
    position: absolute;
    left: 50px;
    top: 28px;
    font-size: 65px;
    line-height: 65px;
}

.feature-section .inner-container .single-item:first-child .inner-box .icon-box {
    color: #fff;
}

.feature-section .inner-container .single-item .inner-box p {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.feature-section .inner-container .single-item .inner-box h3 {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
}


/** about-section **/

.about-section {
    position: relative;
    padding: 120px 0px;
}

.about-section .icon-layer {
    position: absolute;
    right: 270px;
    bottom: 0px;
}

.image_block_1 .image-box {
    position: relative;
    display: block;
    margin-right: 60px;
    padding-bottom: 110px;
}

.image_block_1 .image-box img {
    width: 100%;
}

.image_block_1 .image-box .image-2 {
    position: absolute;
    right: -30px;
    bottom: 0px;
    border: 30px solid #fff;
    border-bottom: none;
}

.image_block_1 .image-box .image-1 {
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
}

.image_block_1 .image-box .image-1:after {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.image_block_1 .image-box:hover .image-1:after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.image_block_1 .image-box .image-1:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 110px;
    height: 10px;
}

.image_block_1 .image-box .image-content {
    position: absolute;
    left: -60px;
    top: 60px;
    background: #fff;
    border: 1px solid #dfdfdf;
    width: 170px;
    padding: 15px;
    text-align: center;
    z-index: 1;
}

.image_block_1 .image-box .image-content:before {
    position: absolute;
    content: '';
    background: #dfdfdf;
    width: 60px;
    height: 50px;
    left: 0px;
    bottom: -50px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0px 0px);
}

.image_block_1 .image-box .image-content .inner {
    position: relative;
    display: block;
    padding: 20px 15px 19px 15px;
    border: 1px dashed #dfdfdf;
}

.image_block_1 .image-box .image-content .inner h2 {
    display: block;
    font-size: 54px;
    line-height: 47px;
    font-weight: 700;
    margin-bottom: 0px;
}

.image_block_1 .image-box .image-content .inner h5 {
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600
}

.content_block_1 .content-box {
    position: relative;
    margin-top: -10px;
}

.content_block_1 .content-box .text {
    position: relative;
    margin-bottom: 40px;
}

.content_block_1 .content-box .text p {
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
}

.content_block_1 .content-box .list-item li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: #1c1c1c;
    padding-left: 27px;
}

.content_block_1 .content-box .list-item li:before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 0px;
}

.content_block_1 .content-box .list-item {
    margin-bottom: 40px;
}

.content_block_1 .content-box blockquote {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 31px 50px 32px 50px;
    margin: 0px;
    margin-bottom: 50px;
}

.content_block_1 .content-box blockquote:before {
    position: absolute;
    content: '';
    background: #f6f6f6;
    width: 40px;
    height: 30px;
    left: 0px;
    bottom: -30px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}

.content_block_1 .content-box blockquote .icon {
    position: absolute;
    left: 50px;
    top: -10px;
    font-size: 80px;
    line-height: 60px;
    font-weight: 700;
}

.content_block_1 .content-box blockquote h3 {
    display: block;
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
}

.content_block_1 .content-box .author-box {
    position: relative;
    display: block;
    padding-left: 120px;
}

.content_block_1 .content-box .author-box .author-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 87px;
    height: 86px;
    background: #fff;
    padding: 7px;
}

.content_block_1 .content-box .author-box .author-thumb img {
    width: 100%;
}

.content_block_1 .content-box .author-box .signature {
    position: relative;
    margin-bottom: 10px;
}

.content_block_1 .content-box .author-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-color-1 {
    background: #f6f6f6;
}


/** service-section **/

.service-section {
    position: relative;
    padding: 50px 0px 60px 0px;
}

.service-section .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 570px;
}

.service-section .title-inner .sec-title,
.service-section .title-inner .text {
    position: relative;
    width: 50%;
}

.service-section .title-inner .text {
    margin-top: 10px;
    float: right;
}

.service-section .title-inner .text p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
    float: right;
}

.service-section .sumtech-btn.b2 {
    margin-top: 0px;
}

.service-section .title-inner .sec-title {
    margin-bottom: 0px;
}

.service-section .title-inner {
    position: relative;
    margin-bottom: 54px;
}

.service-block-one .inner-box {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}

.service-block-one .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    background: #151515;
}

.service-block-one .inner-box .image-box img {
    width: 100%;
    transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box img {
    opacity: 0.7;
    transform: scale(1.1);
}

.service-block-one .inner-box .lower-content {
    position: relative;
    margin: 0px 15px;
}

.service-block-one .inner-box .lower-content .inner {
    position: relative;
    background: #fff;
    margin-top: -20px;
    border: 1px solid #dfdfdf;
    z-index: 1;
}

.service-block-one .inner-box .lower-content .inner:before {
    position: absolute;
    content: '';
    background: #f6f6f6;
    width: 100%;
    height: 0%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .inner:before {
    height: 100%;
    top: 0px;
}

.service-block-one .inner-box .lower-content .inner .text {
    position: relative;
    padding: 43px 30px 31px 30px;
}

.service-block-one .inner-box .lower-content .inner .category-box {
    position: absolute;
    left: 0px;
    top: -21px;
    width: 100%;
    text-align: center;
}

.service-block-one .inner-box .lower-content .inner .category-box span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 28.5px;
    letter-spacing: 1px;
}

.service-block-one .inner-box .lower-content .inner .category-box .category {
    position: relative;
    display: inline-block;
}

.service-block-one .inner-box .lower-content .inner .category-box .category .shape {
    position: absolute;
    width: 10px;
    height: 19px;
}

.service-block-one .inner-box .lower-content .inner .category-box .category .shape-1 {
    left: -10px;
    top: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0px 0px);
}

.service-block-one .inner-box .lower-content .inner .category-box .category .shape-2 {
    left: -10px;
    bottom: 0px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0px 0px);
}

.service-block-one .inner-box .lower-content .inner .category-box .category .shape-3 {
    right: -10px;
    top: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}

.service-block-one .inner-box .lower-content .inner .category-box .category .shape-4 {
    right: -10px;
    bottom: 0px;
    clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%, 0px 0px);
}

.service-block-one .inner-box .lower-content .inner h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 13px;
}

.service-block-one .inner-box .lower-content .inner h3 a {
    display: inline-block;
    color: #1c1c1c;
}

.service-block-one .inner-box .lower-content .inner h3 a:hover {}

.service-block-one .inner-box .lower-content .inner p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.service-block-one .inner-box .lower-content .inner .link {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 9px 30px 8px 30px;
}

.service-block-one .inner-box .lower-content .inner .link a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #868686;
    font-weight: 600;
}

.service-block-one .inner-box .lower-content .inner .link a i {
    font-size: 12px;
    margin-right: 10px;
    font-weight: 700;
}

.service-block-one .inner-box .lower-content .inner .link a:hover {}

.service-section .chat-box {
    position: relative;
    display: block;
    margin-top: 63px;
}

.chat-box .inner {
    position: relative;
    display: inline-block;
    padding-left: 150px;
    text-align: left;
    padding-bottom: 7px;
}

.chat-box .inner .image-box {
    position: absolute;
    left: 0px;
    top: -4px;
    width: 67px;
    height: 73px;
}

.chat-box .inner .image-box i {
    position: absolute;
    right: -50px;
    top: 5px;
    height: 62px;
    width: 63px;
    font-size: 30px;
    color: #fff;
    line-height: 62px;
    text-align: center;
    z-index: 1;
}

.chat-box .inner p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.chat-box .inner h3 {
    display: block;
    font-size: 24px;
    font-weight: 600;
}

.chat-box .inner h3 a {}

.chat-box .inner h3 a:hover {
    text-decoration: underline;
}

.bg-color-2 {
    background: #1c1c1c;
}


/** certified-section **/

.certified-section {
    position: relative;
    padding: 111px 0px 116px 0px;
}

.certified-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 1652px;
    height: 749px;
    background-repeat: no-repeat;
}

.certified-section .icon-layer {
    position: absolute;
    right: 140px;
    bottom: 0px;
}

.certified-section .author-box .image-box {
    position: absolute;
    left: 270px;
    bottom: 0px;
    z-index: 1;
}

.certified-section .author-box .signature {
    position: absolute;
    left: 400px;
    bottom: 140px;
    z-index: 2;
}

.certified-section .author-box .text {
    position: absolute;
    left: 140px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 37px 30px 35px 100px;
    z-index: 2;
    width: 285px;
}

.certified-section .author-box .text:before {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 30px;
    height: 20px;
    right: 0px;
    bottom: -20px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0px 0px);
}

.certified-section .author-box .text .icon-box {
    position: absolute;
    left: 27px;
    top: 30px;
    font-size: 65px;
    line-height: 65px;
}

.certified-section .author-box .text h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.tabs-box .tab {
    position: relative;
    display: none;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
    display: block;
}

.tabs-box .tab {
    transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
    transform: scale(1) translateY(0px);
}

.content_block_2 .content-box {
    position: relative;
    margin-left: 70px;
}

.content_block_2 .content-box .tab-btn-box {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.content_block_2 .content-box .tab-btns li {
    position: relative;
    display: inline-block;
    float: left;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    background: #232323;
    border: 1px solid #2e2e2e;
    cursor: pointer;
    padding: 13px 26.5px;
    text-align: center;
    letter-spacing: 1px;
    margin-right: 15px;
    transition: all 500ms ease;
}

.content_block_2 .content-box .tab-btns li:last-child {
    margin: 0px !important;
}

.content_block_2 .content-box .tab-btns li:hover,
.content_block_2 .content-box .tab-btns li.active-btn {}

.content_block_2 .content-box .tabs-content .text {
    margin-bottom: 37px;
}

.content_block_2 .content-box .tabs-content .text p {
    font-size: 18px;
    line-height: 34px;
    color: #7c7c7c;
    font-weight: 600;
}

.content_block_2 .content-box .tabs-content .inner {
    position: relative;
    display: block;
    padding-left: 238px;
}

.content_block_2 .content-box .tabs-content .inner .image-box {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 198px;
    height: 198px;
}

.content_block_2 .content-box .tabs-content .inner .image-box img {
    width: 100%;
}

.content_block_2 .content-box .tabs-content .inner .list-item li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
    padding-left: 14px;
}

.content_block_2 .content-box .tabs-content .inner .list-item li:last-child {
    margin-bottom: 0px;
}

.content_block_2 .content-box .tabs-content .inner .list-item li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 14px;
    width: 4px;
    height: 1px;
}

.content_block_2 .content-box .sec-title {
    margin-bottom: 45px;
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 30s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 30s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 30s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}


/** cta-section **/

.cta-section {
    position: relative;
    padding: 50px 0px 45px;
    background: #f15d24;
}

.cta-section .inner-box {
    position: relative;
    display: block;
}

.cta-section .inner-box .icon-box {
    position: absolute;
    left: -70px;
    bottom: -100px;
}

.cta-section .inner-box .text h2 {
    position: relative;
    font-size: 38px;
    line-height: 60px;
    color: #fff;
    font-weight: 300;
}

.cta-section .inner-box .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #fff !important;
    background: #05305e;
    text-align: center;
    padding: 15px 30px;
    letter-spacing: 1px;
    z-index: 1;
}

.cta-section .inner-box .btn-box a:hover {
    background: #fff;
}


/** case-section **/

.case-section {
    position: relative;
}

.case-section .title-inner {
    position: relative;
    margin-bottom: 45px;
}

.case-section .title-inner .sec-title,
.case-section .title-inner .text {
    position: relative;
    width: 50%;
}

.case-section .title-inner .sec-title {
    margin-bottom: 0px;
}

.case-section .title-inner .text {
    padding-left: 100px;
    margin-top: 0px;
}

.case-section .title-inner .text p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.case-block-one .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
}

.case-block-one .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fae3d5;
}

.case-block-one .inner-box .image-box img {
    width: 100%;
    transition: all 500ms ease;
}

.case-block-one .inner-box:hover .image-box img {
    opacity: 0.1;
    transform: scale(1.05);
}

.case-block-one .inner-box .text p {
    position: absolute;
    bottom: 0%;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 500ms ease;
    text-align: left;
    right: 0;
    left: 56%;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-weight: 300;
    margin-top: 5px;
}

.case-block-one .inner-box .text h3 {
    position: absolute;
    bottom: 10%;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all 500ms ease;
    text-align: left;
    right: 0;
    left: 56%;
    display: block;
    font-size: 30px;
    line-height: 38px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 4px;
}

.case-block-one .inner-box:hover p {
    bottom: 4%;
    opacity: 1;
}

.case-block-one .inner-box .text h3 a {
    display: inline-block;
    color: #05305e;
}

.case-block-one .inner-box .link {
    position: absolute;
    right: 0px;
    bottom: -10px;
}

.case-block-one .inner-box .link img {
    width: 80px;
    position: relative;
    padding: 20px;
    background: #fff;
}

.case-block-one .inner-box .link a {
    position: relative;
    display: inline-block;
    text-align: center;
    transform: scale(0, 0);
}

.case-block-one .inner-box:hover .link a {
    transform: scale(1, 1);
}


/** chooseus-section **/

.chooseus-section {
    position: relative;
    padding-bottom: 80px;
}

.chooseus-section .image-layer {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.image_block_2 .image-box {
    position: relative;
    display: block;
    margin-right: 100px;
}

.image_block_2 .image-box .bg-layer {
    position: absolute;
    left: 160px;
    top: 0px;
    width: 5000px;
    height: calc(100% + 120px);
    z-index: -1;
}

.image_block_2 .image-box img {
    position: relative;
    float: right;
    max-width: none;
}

.image_block_2 .image-box .text {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 310px;
    padding: 54px 50px 52px 70px;
}

.image_block_2 .image-box .text h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 36px;
    color: #fff;
    font-weight: 700;
}

.image_block_2 .image-box .btn-box {
    position: absolute;
    left: 0px;
    bottom: 250px;
}

.image_block_2 .image-box .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Rubik', sans-serif !important;
    font-weight: 700;
    color: #1c1c1c !important;
    background: #fff;
    text-align: center;
    padding: 22px 52px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
}

.image_block_2 .image-box .btn-box a:hover {
    color: #fff !important;
    background: #1c1c1c;
}

.content_block_3 .content-box .inner-box .single-item {
    position: relative;
    display: block;
    padding: 34px 30px 31px 115px;
    transition: all 500ms ease;
}

.content_block_3 .content-box .inner-box .single-item:hover {
    background: #fff;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.05);
}

.content_block_3 .content-box .inner-box .single-item .icon-box {
    position: absolute;
    left: 26px;
    top: 40px;
    font-size: 65px;
    line-height: 65px;
}

.content_block_3 .content-box .inner-box .single-item h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 17px;
}

.content_block_3 .content-box .inner-box .single-item h3 span {}

.content_block_3 .content-box .inner-box .single-item p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.content_block_3 .content-box {
    position: relative;
    padding-top: 111px;
}

.content_block_3 .content-box .sec-title {
    margin-bottom: 5px;
}


/** funfact-section **/

.funfact-section {
    position: relative;
    padding-top: 115px;
}

.content_block_4 .content-box h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 39px;
}

.content_block_4 .content-box .list-item li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    padding-left: 27px;
    margin-bottom: 10px;
}

.content_block_4 .content-box .list-item li a {
    display: inline-block;
    color: #1c1c1c;
    line-height: 16px;
    border-bottom: 1px solid #1c1c1c;
}

.content_block_4 .content-box .list-item li a:hover {}

.content_block_4 .content-box .list-item li:before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 0px;
}

.content_block_4 .content-box .list-item {
    margin-bottom: 48px;
}

.content_block_4 .content-box {
    margin-right: 70px;
}

.content_block_4 .content-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.content_block_4 .content-box .image-box:after {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.content_block_4 .content-box:hover .image-box:after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.content_block_4 .content-box .image-box img {
    width: 100%;
}

.content_block_5 .content-box {
    position: relative;
    display: block;
    margin-top: 7px;
}

.counter-block-one .inner-box .count-outer {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 35px;
    color: #05305e;
    font-weight: 500;
    margin-bottom: 3px;
}

.counter-block-one .inner-box .count-outer i {
    font-weight: 200;
    line-height: 0;
    position: relative;
    top: -6px;
    font-size: 34px;
}

.counter-block-one .inner-box p {
    font-size: 18px;
    line-height: 30px;
    color: #333;
    font-weight: 400;
    letter-spacing: 1px;
}

.counter-block-one .inner-box {
    position: relative;
    padding: 20px 0px;
}

.counter-block-one .inner-box img {
    width: 45px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.counter-block:first-child .counter-block-one .inner-box,
.counter-block:nth-child(2) .counter-block-one .inner-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.content_block_5 .content-box .counter-block {
    padding: 0px 0px;
}

.counter-block:first-child .counter-block-one .inner-box,
.counter-block:nth-child(3) .counter-block-one .inner-box {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.content_block_5 .content-box .icon-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.funfact-section .inner-container {
    position: relative;
    margin-bottom: -120px;
    z-index: 1;
}


/** video-section **/

.video-section {
    position: relative;
    width: 100%;
    padding: 230px 0px 102px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.video-section:before {
    position: absolute;
    content: '';
    background: #1c1c1c;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.85;
}

.video-section .inner-box {
    position: relative;
}

.video-section .inner-box .video-btn {
    position: absolute;
    top: 38px;
    right: 0px;
}

.video-section .inner-box .video-btn a {
    position: relative;
    display: inline-block;
    width: 105px;
    height: 105px;
    line-height: 105px;
    font-size: 30px;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.video-section .inner-box .video-btn .border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .2);
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
}

.video-section .inner-box .video-btn .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

.video-section .inner-box .video-btn .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s;
}

.video-section .inner-box .text {
    position: relative;
    max-width: 650px;
    width: 100%;
}

.video-section .inner-box .text h2 {
    font-size: 70px;
    line-height: 77px;
    color: #fff;
    font-weight: 700;
}

.video-section .inner-box .text h2 span {}


/** testimonial-section **/

.testimonial-section {
    position: relative;
}

.testimonial-section .pattern-layer .pattern-1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 698px;
    height: 582px;
    background-repeat: no-repeat;
}

.testimonial-section .pattern-layer .pattern-2 {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 577px;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-section .sec-title {
    margin-bottom: 45px;
}

.testimonial-section .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-section .owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 500ms ease;
}

.testimonial-section .owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}

.testimonial-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 50px 50px 60px 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    max-width: 570px;
    margin-bottom: 40px;
}

.testimonial-block-one .inner-box .pattern {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 560px;
    height: 376px;
    background-repeat: no-repeat;
    z-index: -1;
}

.testimonial-block-one .inner-box:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 60px;
    height: 40px;
    left: 0px;
    bottom: -39px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}

.testimonial-block-one .inner-box .icon-box {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 160px;
    line-height: 90px;
    font-weight: 700;
    z-index: 1;
}

.testimonial-block-one .inner-box .icon-box:before {
    position: absolute;
    content: '';
    background: #f6f6f6;
    width: 130px;
    height: 130px;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.testimonial-block-one .inner-box p {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 32px;
    z-index: 1;
}

.testimonial-block-one .inner-box .author-box {
    position: relative;
    padding: 15px 0px 12px 125px;
}

.testimonial-block-one .inner-box .author-box .image-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 87px;
    height: 86px;
    background: #fff;
    padding: 7px;
}

.testimonial-block-one .inner-box .author-box .image-box img {
    width: 100%;
}

.testimonial-block-one .inner-box .author-box h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-block-one .inner-box .author-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.border-bottom {
    border-bottom: 1px solid #dfdfdf !important;
}

.border-top {
    border-bottom: 1px solid #dfdfdf !important;
}


/** news-section **/

.news-section {
    position: relative;
}

.news-section .title-inner {
    position: relative;
    margin-bottom: 60px;
}

.news-section .title-inner .sec-title,
.news-section .title-inner .text {
    position: relative;
    width: 50%;
}

.news-section .title-inner .sec-title {
    margin-bottom: 0px;
}

.news-section .title-inner .text {
    padding-left: 100px;
    margin-top: 26px;
}

.news-section .title-inner .text p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.news-block-one .inner-box {
    position: relative;
    display: block;
    transition: all 500ms ease;
}

.news-block-one .inner-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.news-block-one .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.news-block-one .inner-box .image-box:before {
    position: absolute;
    content: '';
    background: #1c1c1c;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.3;
    z-index: 1;
    transition: all 500ms ease;
}

.news-block-one .inner-box .image-box:after {
    position: absolute;
    content: '';
    background: #1c1c1c;
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    opacity: 0.3;
    transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box:before,
.news-block-one .inner-box:hover .image-box:after {
    width: 50%;
}

.news-block-one .inner-box .image-box img {
    width: 100%;
    transform: scale(1.05);
    transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box img {
    transform: scale(1);
}

.news-block-one .inner-box .image-box a {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    font-size: 0px;
    color: #fff;
    z-index: 2;
}

.news-block-one .inner-box .lower-content {
    position: relative;
    border: 1px solid #dfdfdf;
    border-top: none;
}

.news-block-one .inner-box .lower-content .post-date {
    position: absolute;
    left: 30px;
    top: -48px;
    width: 65px;
    padding: 14px 15px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
}

.news-block-one .inner-box .lower-content .text {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 43px 50px 38px 50px;
}

.news-block-one .inner-box .lower-content .text h3 {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
}

.news-block-one .inner-box .lower-content .text h3 a {
    display: inline-block;
    color: #1c1c1c;
}

.news-block-one .inner-box .lower-content .text h3 a:hover {}

.news-block-one .inner-box .lower-content .post-info {
    position: relative;
    padding: 13px 15px 10px 15px;
}

.news-block-one .inner-box .lower-content .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #868686;
    font-weight: 600;
    padding-left: 21px;
    margin: 0px 20px;
}

.news-block-one .inner-box .lower-content .post-info li i {
    position: absolute;
    left: 0px;
    top: 3px;
}

.news-block-one .inner-box .lower-content .post-info li a {
    color: #868686;
}

.news-block-one .inner-box .lower-content .post-info li a:hover {}


/** clients-section **/

.clients-section {
    position: relative;
    padding: 120px 0px;
}

.clients-section .clients-logo-box {
    position: relative;
    display: block;
}

.clients-section .clients-logo-box img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    opacity: 0.2;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.clients-section .clients-logo-box img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/** main-footer **/

.main-footer {
    position: relative;
    background: #05305e;
}

.footer-top {
    position: relative;
    padding: 30px 0px 20px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .logo-widget .footer-logo {
    position: relative;
    margin-bottom: 28px;
}

.footer-top .logo-widget .text {
    position: relative;
    display: block;
    padding-bottom: 31px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .logo-widget .text p {
    font-size: 16px;
    line-height: 32px;
    color: #7c7c7c;
    font-weight: 600;
}

.footer-top .logo-widget .info li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #fff;
    padding-left: 30px;
    margin-bottom: 8px;
}

.footer-top .logo-widget .info li:last-child {
    margin-bottom: 0px;
}

.footer-top .logo-widget .info li i {
    position: absolute;
    left: 0px;
    top: 6px;
    font-size: 15px;
}

.footer-top .logo-widget .info li a {
    color: #fff;
    display: inline-block;
}

.footer-top .logo-widget .info li a:hover {}

.footer-top .logo-widget {
    position: relative;
    margin-top: -13px;
}

.footer-top .footer-column .widget-title {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.footer-top .footer-column .widget-title h3 a {
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-top .footer-column .widget-title h3 {
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
}

.footer-top .links-widget .widget-content {
    margin-bottom: 20px;
}

.footer-top .links-widget .links-list li {
    position: relative;
    display: block;
    line-height: 0;
    margin: 0;
}

.footer-top .links-widget .links-list li:last-child {
    margin-bottom: 0px;
}

.footer-top .links-widget .links-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #fbfbfb;
    font-weight: 300;
    padding-left: 20px;
}

.footer-top .links-widget .links-list li a:hover {
    color: #fff;
}

.footer-top .links-widget .links-list li a:before {
    position: absolute;
    content: "";
    width: 13px;
    height: 13px;
    color: #7c7c7c;
    left: 0px;
    top: 10px;
    background: url('../images/arrow.png');
    transition: all 500ms ease;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-top .links-widget .links-list li a:hover:before {}

.ml-40 {
    margin-left: 40px;
}

.ml-70 {
    margin-left: 70px;
}

.footer-top .newsletter-widget {
    position: relative;
    display: block;
    padding: 53px 60px 60px 60px;
    margin-top: -113px;
    overflow: hidden;
}

.footer-top .newsletter-widget .icon-box {
    position: absolute;
    top: -45px;
    right: 0px;
    font-size: 200px;
    line-height: 150px;
    color: rgba(28, 28, 28, 0.1);
    transform: rotate(25deg);
}

.footer-top .newsletter-widget .text {
    position: relative;
    margin-bottom: 30px;
}

.footer-top .newsletter-widget .text p {
    font-size: 16px;
    line-height: 32px;
    color: #fbbbb4;
}

.footer-top .newsletter-widget .newsletter-form .form-group {
    position: relative;
    margin: 0px
}

.footer-top .newsletter-widget .newsletter-form .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    color: #868686;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 10px;
    transition: all 500ms ease;
}

.footer-top .newsletter-widget .newsletter-form .form-group input:focus {
    border-color: #1c1c1c;
}

.footer-top .newsletter-widget .newsletter-form .form-group button {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Rubik', sans-serif !important;
    font-weight: 700;
    color: #fff;
    background: #1c1c1c;
    text-align: center;
    padding: 22px 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
}

.footer-top .newsletter-widget .newsletter-form .form-group button:hover {
    background: #fff;
    color: #1c1c1c;
}

.footer-top .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 512px;
    background-repeat: no-repeat;
}

.footer-bottom {
    position: relative;
    width: 100%;
    background: #fbfbfb;
    padding: 7px 0px 6px 0;
}

.footer-bottom .copyright p {
    font-size: 18px;
    line-height: 40px;
    color: #000;
}

.footer-bottom .copyright p a {
    color: #7c7c7c;
}

.footer-bottom .copyright p a:hover {}

.footer-bottom .footer-social li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.footer-bottom .footer-social li:last-child {
    margin: 0px !important;
}

.footer-bottom .footer-social li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #000;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}

.footer-bottom .footer-social li a:hover {
    color: #fff;
}


/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/


/** header-style-two **/

.main-header.style-two .header-lower .main-menu .navigation > li > a {
    color: #000000;
}

.main-header.style-two .header-lower .logo-box {
    padding: 0px;
    margin-right: 0px;
}

.main-header.style-two .header-lower .logo-box .logo {
    position: relative;
    padding: 2px 0px;
    max-width: 100%;
}

.main-header.style-two .main-menu .navigation > li {
    padding: 0px 6px 10px 0px;
}

.main-header.style-two .header-lower .main-menu .navigation > li:hover {
    border-bottom: 4px solid #f15d24
}

.main-header.style-two .header-lower .main-menu .navigation > li.current > a,
.main-header.style-two .header-lower .main-menu .navigation > li:hover > a {
    color: #f15d24;
}

.main-header.style-two .menu-right-content .support-box {
    position: relative;
    padding: 18px 30px 18px 55px;
    margin-right: 80px;
}

.main-header.style-two .menu-right-content:before {
    position: absolute;
    content: '';
    background: #dfdfdf;
    width: 1px;
    height: 100%;
    left: 0px;
    top: 0px;
}

.main-header.style-two .support-box i {
    left: 0px;
}

.main-header.style-two .menu-right-content .support-box h6 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.main-header.style-two .menu-right-content .support-box h6 a {
    color: #1c1c1c;
}

.main-header.style-two .menu-right-content .support-box h6 a:hover {}

.main-header.style-two .menu-right-content .support-box p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.main-header.style-two .menu-right-content {
    position: relative;
    padding: 25px 0px;
    padding-left: 80px;
}

.main-header.style-two .menu-right-content .social-links {
    margin-top: 17px;
}

.main-header.style-two .sticky-header .social-links li a {
    border: 1px solid #fff;
    color: #fff;
}

.main-header.style-two .sticky-header .social-links li a:hover {
    background: #1c1c1c;
    border-color: #1c1c1c;
}

.main-header.style-two .sticky-header .social-links {
    padding: 17.5px 0px;
}


/** banner-style-two **/

.banner-section.style-two {
    position: relative;
}

.banner-section.style-two .banner-carousel .content-box h1 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 15px;
}

.banner-carousel .content-box ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: 50%;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    padding-left: 35px;
    margin-bottom: 12px;
}

.banner-carousel .content-box ul li:before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 0px;
}

.banner-carousel .content-box ul {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1450ms ease;
    -moz-transition: all 1450ms ease;
    -ms-transition: all 1450ms ease;
    -o-transition: all 1450ms ease;
    transition: all 1450ms ease;
}

.banner-carousel .active .content-box ul {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1450ms;
    -moz-transition-delay: 1450ms;
    -ms-transition-delay: 1450ms;
    -o-transition-delay: 1450ms;
    transition-delay: 1450ms;
}

.banner-section.style-two .banner-carousel .slide-item {
    padding: 202px 0px 210px 0px;
}

.banner-section .slide-item .pattern-layer .pattern-1 {
    position: absolute;
    left: 0px;
    top: 80px;
    width: 492px;
    height: 619px;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-section .slide-item .pattern-layer .pattern-2 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 714px;
    height: 277px;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-section .title-text {
    position: absolute;
    left: 0px;
    bottom: -20px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.banner-section .title-text span {
    position: relative;
    display: block;
    font-size: 200px;
    line-height: 150px;
    text-transform: uppercase;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
    transition: all 500ms ease;
}


/** about-style-two **/

.about-style-two {
    position: relative;
}

.about-style-two .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 707px;
    height: 636px;
    background-repeat: no-repeat;
}

.about-style-two .content_block_6 .content-box {
    padding: 110px 0px 120px 0px;
}

.content_block_6 .content-box .text {
    margin-bottom: 47px;
}

.content_block_6 .content-box .text p {
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
}

.content_block_6 .content-box .two-column {
    position: relative;
    display: block;
    margin-bottom: 53px;
    border-bottom: 1px solid #dfdfdf;
}

.content_block_6 .content-box .two-column .single-item {
    position: relative;
    display: block;
    padding-right: 20px;
    padding-bottom: 38px;
    border-right: 1px solid #dfdfdf;
}

.content_block_6 .content-box .two-column .single-column:last-child .single-item {
    border-right: none;
    padding-left: 15px;
}

.content_block_6 .content-box .two-column .single-item .icon-box {
    position: relative;
    display: inline-block;
    font-size: 65px;
    line-height: 65px;
    margin-bottom: 15px;
}

.content_block_6 .content-box .two-column .single-item h3 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.content_block_6 .content-box .two-column .single-item p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.image_block_3 .image-box {
    position: relative;
    display: block;
    margin: 0px -362px 0px 40px;
    padding-left: 60px;
}

.image_block_3 .image-box:before {
    position: absolute;
    content: '';
    width: calc(100% - 60px);
    height: 25px;
    left: 60px;
    top: -25px;
    z-index: 1;
}

.image_block_3 .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
}

.image_block_3 .image-box .image:after {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.image_block_3 .image-box:hover .image:after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.image_block_3 .image-box .image img {
    width: 100%;
}

.image_block_3 .image-box .image-content {
    position: absolute;
    left: 0px;
    bottom: 310px;
    width: 390px;
    padding: 46px 30px 43px 60px;
}

.image_block_3 .image-box .image-content:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 50px;
    left: 0px;
    bottom: -50px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0px 0px);
}

.image_block_3 .image-box .image-content h3 {
    display: block;
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.image_block_3 .image-box .image-content h3 span {
    font-weight: 700;
    color: #fff;
}

.video-section.alternat-2 .inner-box .text {
    margin: 0 auto;
    max-width: 700px;
}

.video-section.alternat-2 .inner-box .video-btn {
    position: relative;
    top: 0px;
    margin-bottom: 45px;
}

.video-section.alternat-2 .inner-box .text h2 {
    line-height: 70px;
}

.video-section.alternat-2 {
    padding-top: 135px;
    padding-bottom: 225px;
}


/** feature-style-two **/

.feature-style-two {
    position: relative;
}

.feature-style-two .inner-container {
    position: relative;
    z-index: 1;
}

.feature-style-two .inner-container .header-box {
    position: relative;
    float: left;
    width: 20%;
}

.feature-style-two .inner-container .feature-block-one {
    position: relative;
    float: left;
    width: 13.3333333%;
}

.feature-style-two .header-box .inner-box {
    position: relative;
    display: block;
    padding: 20px;
}

.feature-style-two .header-box .inner-box:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: -10px;
    z-index: 1;
}

.feature-style-two .header-box .inner-box h3 {
    display: block;
    font-size: 36px;
    line-height: 42px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-style-two .header-box .inner-box a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    font-family: 'Rubik', sans-serif !important;
    font-weight: 700;
    color: #1c1c1c;
    background: #ffffff;
    text-align: center;
    padding: 6px 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
}

.feature-style-two .header-box .inner-box a:before {
    position: absolute;
    content: '';
    background: #1c1c1c;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.feature-style-two .header-box .inner-box a:hover {
    color: #fff;
}

.feature-style-two .header-box .inner-box a:hover:before {
    width: 100%;
}

.feature-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 40px 50px 0;
    text-align: center
}

.feature-block-one .inner-box::after {
    position: absolute;
    content: "〉";
    width: 20px;
    height: 20px;
    font-size: 18px;
    font-weight: 200;
    top: 50%;
    left: 0%;
    color: #05305e;
}

.feature-block-one.h-ar1 .inner-box::after {
    content: "";
    display: none;
}

.feature-block-one .inner-box:before {
    position: absolute;
    content: '';
    background: #dfdfdf;
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    transition: all 500ms ease;
}

.feature-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
}

.feature-block-one .inner-box h4 {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-block-one .inner-box p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
}


/** skrills-section **/

.skrills-section {
    position: relative;
    width: 100%;
    padding: 322px 0px 120px 0px;
    margin-top: -213px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.progress-box {
    margin-bottom: 22px;
    position: relative;
}

.progress-box:last-child {
    margin-bottom: 0px;
}

.progress-box .bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: #dfdfdf;
    border-radius: 0px;
}

.progress-box .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 5px;
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.progress-box .count-text {
    position: absolute;
    top: -43px;
    right: -40px;
    font-size: 18px;
    color: #868686;
    font-weight: 700;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.progress-box .count-text:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 35px;
    left: -14px;
    top: 13px;
}

.progress-box .bar-inner.counted .count-text {
    opacity: 1;
}

.content_block_7 .content-box .text {
    position: relative;
    margin-bottom: 44px;
}

.content_block_7 .content-box .text p {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 33px;
}

.content_block_7 .content-box .text h3 {
    display: block;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
}

.content_block_7 .content-box .progress-box h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.skrills-section .image-layer {
    position: absolute;
    left: 0px;
    bottom: 0px;
}


/** team-section **/

.team-section {
    position: relative;
    background: #fbfbfb;
    border-bottom: 1px solid #dfdfdf;
    padding: 60px 0
}

.team-section .title-inner .text {
    padding-left: 100px;
    margin-top: 26px;
}

.team-section .title-inner .text p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.team-section .title-inner .sec-title {
    margin-bottom: 0px;
    text-align: center;
}

.team-section .title-inner .sec-title h2 {
    font-style: italic;
}

.team-section .title-inner {
    position: relative;
    margin-bottom: 54px;
}

.team-block-one .inner-box {
    position: relative;
    display: block;
    text-align: center;
}

.team-block-one .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-block-one .inner-box .image-box img {
    width: 100%;
    transform: scale(1.1);
    transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img {
    transform: scale(1);
}

.team-block-one .inner-box .image-box::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 0%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.team-block-one .inner-box:hover .image-box::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.team-block-one .inner-box .lower-content {
    position: relative;
    display: block;
    padding: 0;
    transition: all 500ms ease;
}

.team-block-one .inner-box .lower-content h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.team-block-one .inner-box .lower-content h4 a {
    display: inline-block;
    color: #1c1c1c;
    font-size: 24px;
    font-weight: 500;
}

.team-block-one .inner-box .lower-content h4 a:hover {}

.team-block-one .inner-box .lower-content .designation {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
    margin: 5px 0;
}

.team-block-one .inner-box .lower-content .social-links {
    position: absolute;
    left: 0px;
    bottom: 20px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    transform: scale(0, 0);
    transition: all 500ms ease;
}

.team-block-one .inner-box:hover .lower-content .social-links {
    transform: scale(1, 1);
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.team-block-one .inner-box .lower-content .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 3px;
}

.team-block-one .inner-box .lower-content .social-links li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #cccccc;
    text-align: center;
    font-size: 12px;
    color: #999999;
}

.team-block-one .inner-box .lower-content .social-links li a:hover {
    color: #fff;
}

.team-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 707px;
    height: 636px;
    background-repeat: no-repeat;
}

.team-section .icon-layer {
    position: absolute;
    right: 70px;
    bottom: 0px;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}


/** faq-section **/

.faq-section {
    position: relative;
}

.faq-section:before {
    position: absolute;
    content: '';
    width: 660px;
    height: 100%;
    top: 0px;
    right: 0px;
}

.faq-section .pattern-layer {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 660px;
    background-repeat: no-repeat;
}

.accordion-box .block {
    position: relative;
    display: block;
    border: 1px solid #e1e7ee;
    margin-bottom: 12px;
    background: #fff;
    transition: all 500ms ease;
}

.accordion-box .block.active-block {
    box-shadow: 0 0px 50px rgba(0, 0, 0, 0.07);
    border: 1px solid #e6edf4;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    padding: 22px 60px 23px 40px;
    cursor: pointer;
}

.accordion-box .block .acc-btn h5 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h5 {}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 19px;
    right: 38px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
    position: relative;
    font-size: 14px;
    font-family: 'Font Awesome 5 Pro';
    margin: 0px;
    content: "\f068";
    color: #1c1c1c;
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding: 5px 70px 30px 40px;
}

.accordion-box .block .acc-content p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
    margin: 0px;
}

.content_block_7 .content-box .sec-title {
    margin-bottom: 54px;
}

.faq-section .content_block_7 .content-box {
    margin-right: 60px;
}

.image_block_4 .image-box {
    position: relative;
    display: block;
    margin-left: 25px;
    margin-top: 5px;
}

.image_block_4 .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
}

.image_block_4 .image-box .image img {
    width: 100%;
}

.image_block_4 .image-box .image:after {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.image_block_4 .image-box:hover .image:after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}


/** google-map **/

.google-map-section {
    position: relative;
    width: 100%;
}

.google-map-section #contact-google-map {
    position: relative;
    width: 100%;
    height: 550px;
}


/*** 

====================================================================
                        About-Page
====================================================================

***/


/** page-title **/

.page-title {
    position: relative;
    width: 100%;
    padding: 125px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.page-title:before {
    position: absolute;
    content: '';
    background: #000000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.50;
}

.page-title .title {
    position: relative;
    margin-bottom: 4px;
}

.page-title .title h1 {
    font-size: 70px;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
}

.page-title .bread-crumb {
    position: relative;
    display: inline-block;
    padding-left: 28px;
}

.page-title .bread-crumb:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 3px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.page-title .bread-crumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #999999;
    font-weight: 700;
    padding-right: 16px;
    margin-right: 8px;
    text-transform: uppercase;
}

.page-title .bread-crumb li:last-child {
    padding: 0px !important;
    margin: 0px !important;
}

.page-title .bread-crumb li a {
    color: #999999;
}

.page-title .bread-crumb li a:hover {}

.page-title .bread-crumb li:before {
    position: absolute;
    content: '';
    background: #999;
    width: 3px;
    height: 1px;
    top: 11px;
    right: 0px;
}

.page-title .bread-crumb li:last-child:before {
    display: none;
}


/** about-style-three **/

.about-style-three {
    position: relative;
    padding: 80px 0px 50px;
}

.image_block_5 .image-box {
    position: relative;
    display: block;
}

.about-style-three .image_block_5 .image-box {
    margin-right: 0px;
    padding-bottom: 0px;
}

.image_block_5 .image-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 10px;
    left: 0px;
    bottom: 0px;
}

.image_block_5 .image-box .image {
    position: relative;
    display: block;
    overflow: hidden;
}

.image_block_5 .image-box .image img {
    width: 100%;
}

.image_block_5 .image-box .image:after {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.image_block_5 .image-box:hover .image:after {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.content_block_8 .content-box .text {
    position: relative;
    margin-bottom: 5px;
}

.content_block_8 .content-box .text p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
    color: #000;
}

.content_block_8 .content-box .inner-box {
    position: relative;
    padding-right: 280px;
}

.content_block_8 .content-box .inner-box .inner {
    position: absolute;
    top: -18px;
    right: 0px;
    width: 270px;
    background: #f6f6f6;
    padding: 49px 30px 42px 50px;
}

.content_block_8 .content-box .inner-box .list-item li {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #1c1c1c;
    padding-left: 27px;
}

.content_block_8 .content-box .inner-box .list-item li:last-child {
    margin-bottom: 0px;
}

.content_block_8 .content-box .inner-box .list-item li:before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 0px;
}

.content_block_8 .content-box .inner-box .inner .icon-box {
    position: relative;
    display: inline-block;
    font-size: 65px;
    line-height: 65px;
    margin-bottom: 17px;
}

.content_block_8 .content-box .inner-box .inner h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
}

.content_block_8 .content-box .inner-box .inner h3 span {}

.about-style-three .content_block_8 .content-box {
    margin-top: -10px;
}

.video-section.about-page {
    padding: 135px 0px 110px 0px;
}


/*** 

====================================================================
                        Error-Page
====================================================================

***/

.error-section {
    position: relative;
    padding: 100px 0px 120px 0px;
}

.error-section .inner-box .theme-btn-one i {
    margin-right: 10px;
}

.error-section .inner-box .error-image {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.error-section .inner-box h1 {
    font-size: 200px;
    line-height: 200px;
    font-weight: 900;
    margin-bottom: 10px;
}

.error-section .inner-box h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}


/*** 

====================================================================
                        Service-Page
====================================================================

***/

.cta-style-two {
    position: relative;
    background: #151515;
}

.cta-style-two .single-item {
    position: relative;
    float: left;
    width: 50%;
}

.cta-style-two .single-item:first-child {}

.cta-style-two .single-item .inner-box {
    position: relative;
    padding: 71px 50px 80px 360px;
}

.cta-style-two .single-item .inner-box .image-box {
    position: absolute;
    left: 60px;
    top: 0px;
    width: 242px;
    height: 264px;
}

.cta-style-two .single-item .inner-box h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 27px;
}

.cta-style-two .single-item .inner-box a {
    padding: 22px 53px;
}

.cta-style-two .single-item:first-child .inner-box a {
    background: #1c1c1c;
}

.cta-style-two .single-item:first-child .inner-box a:before,
.cta-style-two .single-item:first-child .inner-box a:after {
    background: #fff;
}

.cta-style-two .single-item:first-child .inner-box a:hover {}

.service-page-section {
    position: relative;
    padding: 120px 0px 90px 0px;
}

.service-page-section .service-block-one .inner-box {
    margin-bottom: 30px;
}

.service-details {
    position: relative;
    padding: 120px 0px;
}

.service-details-content .content-one h2 {
    display: block;
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-details-content .content-one .image-box {
    position: relative;
    display: block;
    margin-bottom: 51px;
}

.service-details-content .content-one .image-box img {
    width: 100%;
}

.service-details-content .content-one .image-box .category-box {
    position: absolute;
    left: 0px;
    bottom: -21px;
    width: 100%;
    text-align: center;
}

.service-details-content .content-one .image-box .category-box span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 28.5px;
    letter-spacing: 1px;
}

.service-details-content .content-one .image-box .category-box .category {
    position: relative;
    display: inline-block;
}

.service-details-content .content-one .image-box .category-box .category .shape {
    position: absolute;
    width: 10px;
    height: 19px;
}

.service-details-content .content-one .image-box .category-box .category .shape-1 {
    left: -10px;
    top: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0px 0px);
}

.service-details-content .content-one .image-box .category-box .category .shape-2 {
    left: -10px;
    bottom: 0px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0px 0px);
}

.service-details-content .content-one .image-box .category-box .category .shape-3 {
    right: -10px;
    top: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0px 0px);
}

.service-details-content .content-one .image-box .category-box .category .shape-4 {
    right: -10px;
    bottom: 0px;
    clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%, 0px 0px);
}

.service-details-content .content-one .text {
    position: relative;
    margin-bottom: 51px;
}

.service-details-content p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.service-details-content .content-one .text p {
    margin-bottom: 34px;
}

.service-details-content .content-one .text p:last-child {
    margin-bottom: 0px;
}

.service-details-content .content-one .inner-box .single-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding: 25px 35px;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    cursor: pointer;
    transition: all 500ms ease;
}

.service-details-content .content-one .inner-box .single-item:hover {
    background: #fff;
    border-color: #dfdfdf;
}

.service-details-content .content-one .inner-box .single-item h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin: 0px;
}

.service-details-content .content-one .inner-box .single-item h4 span {}

.service-details-content .content-one {
    padding-bottom: 23px;
}

.service-details-content h3 {
    display: block;
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
}

.service-details-content .two-column .text h3 {
    margin-bottom: 37px;
}

.service-details-content .two-column .text h4 {
    display: block;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 39px;
}

.service-details-content .two-column .text .list-item li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding-left: 24px;
    margin-bottom: 14px;
}

.service-details-content .two-column .text .list-item li:last-child {
    margin-bottom: 0px;
}

.service-details-content .two-column .text .list-item li:before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 0px;
}

.service-details-content .two-column .image-box {
    position: relative;
    margin-top: 7px;
}

.service-details-content .two-column .image-box img {
    width: 100%
}

.service-details-content .two-column {
    position: relative;
    margin-bottom: 53px;
}

.service-details-content .content-two .text {
    margin-bottom: 44px;
}

.service-details-content .content-two .text h3 {
    margin-bottom: 40px;
}

.service-details-content .content-two .single-item {
    position: relative;
    display: block;
    padding-right: 10px;
}

.service-details-content .content-two .single-item .icon-box {
    position: relative;
    display: inline-block;
    font-size: 65px;
    line-height: 65px;
    margin-bottom: 15px;
}

.service-details-content .content-two .single-item h4 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-details-content .content-two .accordion-box {
    position: relative;
    margin-top: 48px;
}

.service-sidebar .categories-widget {
    margin-bottom: 30px;
}

.service-sidebar .categories-widget .widget-content {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 8px 20px 28px 20px;
}

.service-sidebar .categories-widget .widget-title {
    position: relative;
    display: block;
    padding: 21px 50px;
    background: #1c1c1c;
}

.service-sidebar .categories-widget .widget-title h4 {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
}

.service-sidebar .categories-widget .categories-list li {
    position: relative;
    display: block;
}

.service-sidebar .categories-widget .categories-list li a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #868686;
    font-weight: 600;
    background: transparent;
    border: 1px solid transparent;
    padding: 16px 55px;
    padding-right: 30px;
}

.service-sidebar .categories-widget .categories-list li a:before {
    position: absolute;
    content: "\f061";
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    font-weight: 700;
    left: 30px;
    top: 16px;
    transition: all 500ms ease;
}

.service-sidebar .categories-widget .categories-list li a.current,
.service-sidebar .categories-widget .categories-list li a:hover {
    background: #fff;
    border-color: #dfdfdf;
}

.service-sidebar .support-widget .inner-box {
    position: relative;
    width: 100%;
    padding: 58px 45px 51px 45px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 30px;
}

.service-sidebar .support-widget .inner-box:before {
    position: absolute;
    content: '';
    background: #1c1c1c;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.9;
}

.service-sidebar .support-widget .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 16px;
}

.service-sidebar .support-widget .inner-box h4 {
    display: block;
    font-size: 20px;
    line-height: 34px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-sidebar .support-widget .inner-box h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 0px;
}

.service-sidebar .support-widget .inner-box h3 a {
    display: inline-block;
}

.service-sidebar .support-widget .inner-box h3 a:hover {
    color: #fff;
}

.service-sidebar .support-widget .inner-box p {
    font-size: 14px;
    line-height: 26px;
    color: #7c7c7c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0px;
}

.service-sidebar .form-widget {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 43px 50px 50px 50px;
}

.service-sidebar .form-widget h4 {
    position: relative;
    display: block;
    padding-left: 28px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 22px;
}

.service-sidebar .form-widget h4:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 3px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.service-sidebar .form-widget form .form-group {
    position: relative;
    margin-bottom: 10px;
}

.service-sidebar .form-widget form .form-group:last-child {
    margin-bottom: 0px;
}

.service-sidebar .form-widget form .form-group input[type='text'],
.service-sidebar .form-widget form .form-group input[type='email'],
.service-sidebar .form-widget form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #868686;
    border: 1px solid #fff;
    padding: 10px 30px;
    transition: all 500ms ease;
}

.service-sidebar .form-widget form .form-group textarea {
    height: 155px;
    resize: none;
}

.service-sidebar .form-widget form .form-group input:focus,
.service-sidebar .form-widget form .form-group textarea:focus {}


/*** 

====================================================================
                        Case-Page
====================================================================

***/

.case-page-section {
    position: relative;
    padding: 120px 0px 90px 0px;
}

.case-page-section .case-block-one .inner-box {
    margin-bottom: 30px;
}

.case-details {
    position: relative;
    padding-top: 120px;
}

.case-details-content .image-box {
    position: relative;
    display: block;
}

.case-details-content .image-box img {
    width: 100%;
}

.case-details-content .content-box {
    position: relative;
    padding-top: 30px;
}

.case-details-content .content-box h2 {
    display: block;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 31px;
}

.case-details-content .content-box p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 36px;
}

.case-details-content .content-box h3 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 34px;
    padding-top: 22px;
}

.case-details-content .content-box .list-item li {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: #1c1c1c;
    padding-left: 27px;
}

.case-details-content .content-box .list-item li:last-child {
    margin-bottom: 0px;
}

.case-details-content .content-box .list-item li:before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 0px;
}

.case-sidebar .form-widget {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 43px 50px 50px 50px;
}

.case-sidebar .form-widget h4 {
    position: relative;
    display: block;
    padding-left: 28px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 22px;
}

.case-sidebar .form-widget h4:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 3px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.case-sidebar .form-widget form .form-group {
    position: relative;
    margin-bottom: 10px;
}

.case-sidebar .form-widget form .form-group:last-child {
    margin-bottom: 0px;
}

.case-sidebar .form-widget form .form-group input[type='text'],
.case-sidebar .form-widget form .form-group input[type='email'],
.case-sidebar .form-widget form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #868686;
    border: 1px solid #fff;
    padding: 10px 30px;
    transition: all 500ms ease;
}

.case-sidebar .form-widget form .form-group textarea {
    height: 155px;
    resize: none;
}

.case-sidebar .form-widget form .form-group input:focus,
.case-sidebar .form-widget form .form-group textarea:focus {}

.case-sidebar .info-box {
    position: relative;
    display: block;
    padding: 43px 50px 42px 50px;
    margin-bottom: 30px;
}

.case-sidebar .info-box .info-list li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 26px;
}

.case-sidebar .info-box .info-list li span {
    float: right;
    color: #fff;
}

.case-sidebar .info-box .info-list li:last-child {
    margin-bottom: 0px;
}

.case-sidebar {
    position: relative;
    margin-top: -30px;
}


/*** 

====================================================================
                        Blog-Page
====================================================================

***/

.blog-grid {
    position: relative;
    padding: 120px 0px;
}

.blog-grid .news-block-one .inner-box {
    margin-bottom: 30px;
}

.blog-grid .pagination-wrapper {
    position: relative;
    margin-top: 30px;
}

.sidebar-page-container {
    position: relative;
    padding: 120px 0px;
}

.news-block-two .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.news-block-two .inner-box .image-box:before {
    position: absolute;
    content: '';
    background: #1c1c1c;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.3;
    z-index: 1;
    transition: all 500ms ease;
}

.news-block-two .inner-box .image-box:after {
    position: absolute;
    content: '';
    background: #1c1c1c;
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    opacity: 0.3;
    transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-box:before,
.news-block-two .inner-box:hover .image-box:after {
    width: 50%;
}

.news-block-two .inner-box .image-box img {
    width: 100%;
    transform: scale(1.05);
    transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-box img {
    transform: scale(1);
}

.news-block-two .inner-box .image-box a {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    font-size: 0px;
    color: #fff;
    z-index: 2;
}

.news-block-two .inner-box .lower-content .post-date {
    position: absolute;
    left: 30px;
    top: -48px;
    width: 65px;
    padding: 14px 15px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
}

.news-block-two .inner-box .lower-content .post-info li {
    position: relative;
display: inline-block;
font-size: 16px;
line-height: 26px;
color: #333;
font-weight: 300;
padding-left: 21px;
margin-right: 20px;
}

.news-block-two .inner-box .lower-content .post-info li:last-child {
    margin: 0px !important;
}

.news-block-two .inner-box .lower-content .post-info li i {
    position: absolute;
    left: 0px;
    top: 5px;
}

.news-block-two .inner-box .lower-content .post-info li a {
    color: #868686;
}

.news-block-two .inner-box .lower-content .post-info li a:hover {}

.news-block-two .inner-box .lower-content {
    position: relative;
    padding-top: 10px;
}

.news-block-two .inner-box .lower-content h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-block-two .inner-box .lower-content h2 a {
    display: inline-block;
    color: #1c1c1c;
}

.news-block-two .inner-box .lower-content h2 a:hover {}

.news-block-two .inner-box .lower-content p {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 17px;
    color: #000;
}

.news-block-two .inner-box .lower-content .link a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #868686;
    font-weight: 600;
}

.news-block-two .inner-box .lower-content .link a i {
    font-size: 12px;
    margin-right: 10px;
    font-weight: 700;
}

.news-block-two .inner-box .lower-content .link a:hover {}

.news-block-two .inner-box {
    margin-bottom: 28px;
}

.sidebar-page-container .pagination-wrapper {
    position: relative;
    display: block;
    padding-top: 40px;
    border-top: 1px solid #dfdfdf;
}

.blog-sidebar .sidebar-search .search-form .form-group {
    position: relative;
    margin: 0px;
}

.blog-sidebar .sidebar-search .search-form .form-group input[type='search'] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    border: 1px solid #dfdfdf;
    font-size: 16px;
    font-weight: 600;
    color: #868686;
    padding: 10px 60px 10px 30px;
    transition: all 500ms ease;
}

.blog-sidebar .sidebar-search .search-form .form-group button {
    position: absolute;
    font-size: 16px;
    top: 21px;
    right: 30px;
    background: transparent;
    cursor: pointer;
    transition: all 500ms ease;
}

.blog-sidebar .sidebar-search .search-form .form-group input:focus {}

.blog-sidebar .sidebar-search {
    margin-bottom: 30px;
}

.blog-sidebar .sidebar-widget {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 44px 30px 38px 50px;
    margin-bottom: 30px;
}

.blog-sidebar .sidebar-widget:last-child {
    margin-bottom: 0px;
}

.blog-sidebar .widget-title {
    position: relative;
    display: block;
    margin-bottom: 13px;
}

.blog-sidebar .widget-title h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    padding-left: 28px;
}

.blog-sidebar .widget-title h4:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 3px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.blog-sidebar .category-widget .category-list li {
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.blog-sidebar .category-widget .category-list li:last-child {
    margin-bottom: 0px;
}

.blog-sidebar .category-widget .category-list li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #868686;
    font-weight: 600;
}

.blog-sidebar .category-widget .category-list li a:hover {}

.blog-sidebar .category-widget .category-list li a span {
    position: absolute;
    top: -4px;
    right: -23px;
    font-size: 12px;
    font-weight: 700;
}

.blog-sidebar .post-widget .post {
    position: relative;
display: block;
padding-left: 90px;
padding-bottom: 15px;
margin-bottom: 28px;
min-height: auto;
}

.blog-sidebar .post-widget .post:before {
    position: absolute;
    content: '';
    background: #fff;
    width: calc(100% + 80px);
    height: 1px;
    left: -50px;
    bottom: 0px;
}

.blog-sidebar .post-widget .post:last-child {
    margin-bottom: 0px;
}

.blog-sidebar .post-widget .post:last-child:before {
    display: none;
}

.blog-sidebar .post-widget .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 2px;
    width: 70px;
    height: 68px;
}

.blog-sidebar .post-widget .post .post-thumb img {
    width: 100%;
    transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img {
    opacity: 0.2;
}

.blog-sidebar .post-widget .post .post-date {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 3px;
}

.blog-sidebar .post-widget .post .post-date i {
    margin-right: 5px;
}

.blog-sidebar .post-widget .post h5 {
    position: relative;
    display: block;
    font-size: 18px;
line-height: 20px;
font-weight: 400;
}

.blog-sidebar .post-widget .post h5 a {
    display: inline-block;
    color: #1c1c1c;
}

.blog-sidebar .post-widget .post h5 a:hover {}

.blog-sidebar .post-widget .widget-title {
    margin-bottom: 20px;
}

.blog-sidebar .post-widget {
    padding-bottom: 19px;
}

.blog-sidebar .tags-widget .tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.blog-sidebar .tags-widget .tags-list li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #868686;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    padding: 7px 20px;
}

.blog-sidebar .tags-widget .tags-list li a:hover {
    color: #fff;
}

.blog-sidebar .tags-widget .widget-title {
    margin-bottom: 26px;
}

.blog-sidebar .tags-widget {
    padding-bottom: 40px;
}

.blog-details-content .news-block-two .inner-box .image-box:before,
.blog-details-content .news-block-two .inner-box .image-box:after {
    display: none;
}

.blog-details-content .news-block-two .inner-box .image-box img {
    transform: scale(1);
}

.blog-details-content .post-share-option .tags li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.blog-details-content .post-share-option .tags li h4 {
    font-size: 20px;
    line-height: 38px;
    font-weight: 600;
}

.blog-details-content .post-share-option .tags li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #868686;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    background: #f6f6f6;
    padding: 7px 21px;
}

.blog-details-content .post-share-option .tags li:last-child {
    margin: 0px !important;
}

.blog-details-content .post-share-option .tags li a:hover {
    color: #fff;
}

.blog-details-content .post-share-option .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.blog-details-content .post-share-option .social-links li:last-child {
    margin: 0px !important;
}

.blog-details-content .post-share-option .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: #868686;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #dfdfdf;
    text-align: center;
    border-radius: 50%;
}

.blog-details-content .post-share-option .social-links li a:hover {
    color: #fff;
}

.blog-details-content .post-share-option {
    position: relative;
    display: block;
    padding: 30px 0px 40px 0px;
}

.blog-details-content .news-block-two .inner-box {
    margin-bottom: 0px;
    padding-bottom: 34px;
    border-bottom: 1px solid #dfdfdf;
}

.blog-details-content .author-box {
    position: relative;
    display: block;
    border: 1px solid #dfdfdf;
    padding: 56px 60px 54px 270px;
    margin-bottom: 52px;
}

.blog-details-content .author-box .image-box {
    position: absolute;
    width: 170px;
    height: 160px;
    left: 60px;
    top: 60px;
}

.blog-details-content .author-box .image-box img {
    width: 100%;
}

.blog-details-content .author-box .inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 38px;
}

.blog-details-content .author-box .inner p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
}

.blog-details-content .group-title {
    position: relative;
    display: block;
    margin-bottom: 45px;
}

.blog-details-content .group-title h3 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
}

.blog-details-content .comment-box .comment {
    position: relative;
    display: block;
    padding-bottom: 60px;
    margin-bottom: 55px;
    padding-left: 180px;
    border-bottom: 1px solid #dfdfdf;
}

.blog-details-content .comment-box .comment:last-child {
    margin-bottom: 0px;
}

.blog-details-content .comment-box {
    margin-bottom: 52px;
}

.blog-details-content .comment-box .comment .thumb-box {
    position: absolute;
    left: 0px;
    top: 5px;
    width: 140px;
    height: 140px;
}

.blog-details-content .comment-box .comment .comment-info {
    position: relative;
    display: block;
    margin-bottom: 28px;
}

.blog-details-content .comment-box .comment .comment-info h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.blog-details-content .comment-box .comment .comment-info .post-date {
    position: absolute;
    top: 2px;
    right: 0px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
}

.blog-details-content .comment-box .comment .comment-info .post-date i {
    margin-right: 3px;
}

.blog-details-content .comment-box .comment .comment-inner p {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-details-content .comment-box .comment .comment-inner a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 20px;
    text-align: center;
}

.blog-details-content .comment-box .comment .comment-inner a:hover {
    background: #1c1c1c;
}

.blog-details-content .comments-form-area .form-inner {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 60px 60px;
}

.blog-details-content .comments-form-area .default-form {
    margin: 0px 10px;
}

.default-form .form-group {
    position: relative;
    padding: 0px 5px;
    margin-bottom: 25px;
}

.default-form .form-group.message-btn {
    text-align: center;
}

.default-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #fff;
    padding: 10px 20px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    transition: all 500ms ease;
    border: 1px solid #d4d7da;
    margin-bottom: 15px;
    line-height: 1.9
}

.default-form .form-group input[type='text'],
.default-form .form-group input[type='email'],
.default-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #fff;
    padding: 10px 20px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    transition: all 500ms ease;
    border: 1px solid #d4d7da;
    margin-bottom: 0px;
}

.default-form .form-group:last-child {
    margin-bottom: 0px;
}

.default-form .form-group textarea {
    height: 185px;
    resize: none;
}

.default-form .form-group input:focus,
.default-form .form-group textarea:focus {}


/*** 

====================================================================
                        Contact-Page
====================================================================

***/

.contact-section {
    position: relative;
    padding: 0px;
}

.contact-section .image-box {
    position: relative;
    display: block;
    margin-bottom: 115px;
}

.contact-section .image-box img {
    width: 100%;
}

.contact-section .info-inner {
    position: relative;
}

.contact-section .info-inner .text {
    position: relative;
    margin-bottom: 21px;
}

.contact-section .info-inner .text p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
}

.contact-section .info-inner .info {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.contact-section .info-inner .info li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #1c1c1c;
    padding-left: 28px;
    padding-bottom: 15px;
    margin-bottom: 0px;
}

.contact-section .info-inner .info li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

.contact-section .info-inner .info li a {
    display: inline-block;
    color: #1c1c1c;
}

.contact-section .info-inner .info li a:hover {}

.contact-section .info-inner .info li i {
    position: absolute;
    left: 0px;
    top: 4px;
}

.contact-section .info-inner .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.contact-section .info-inner .social-links li:last-child {
    margin: 0px !important;
}

.contact-section .info-inner .social-links li a i {
    font-size: 22px;
}

.contact-section .info-inner .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #333;
    width: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.contact-section .info-inner .social-links li a:hover {
    color: #fff;
}

.contact-form .form-inner {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 20px 0px;
    margin-left: 10px;
}

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