/*==============================================
    Main Header         
===============================================*/
.main-header {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    margin: 0px;
    z-index: 999;
    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;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 0px 0px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: 0;
}

.fixed-header .sticky-header {
    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;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    opacity: 1;
    z-index: 999999;
}

.sticky-header .container {
    position: relative;
}


.sticky-header .logo {
    position: relative;
    display: block;
    padding: 15px 0 0px;
}

.sticky-header .logo img {
	max-width: 135px;
}

.sticky-header .logo a {
    position: relative;
    display: inline-block;
}

.sticky-header .main-menu {
    position: inherit;
}

.sticky-header .main-menu .navigation>li {
    margin-right: 35px;
}

.sticky-header .main-menu .navigation>li>a {
    color: var(--thm-black);
    padding: 30px 0px 35px;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a {
    color: #003060;
}

.main-menu .navigation.scroll-nav>li:hover>a,
.main-menu .navigation.scroll-nav>li.current>a {
    color: var(--thm-base);
}



.header-style-one {}


.header {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.header .auto-container {
    max-width: 100%;
    padding: 0;
}

.header .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    position: relative;
    display: flex;
    align-items: center;
}


.main-logo-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    padding: 8px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    ;
}

.main-logo-box a {
    position: relative;
    display: inline-block;
}



.main-menu.style1 {
    position: relative;
    display: block;
    padding-left: 50px;
}

.main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    position: inherit;
    display: block;
}

.main-menu .navigation>li {
    position: inherit;
    display: inline-block;
    float: left;
    margin-right: 60px;
}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li>a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 42px 0px 43px;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    opacity: 1;
    z-index: 1;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
    color: #003060;
}

/***
.main-menu .navigation>li.dropdown>a {
    padding-right: 0px;
}

.main-menu .navigation>li.dropdown>a:after {
    position: absolute;
    right: 0px;
    font-family: Fontawesome;
    content: "\f107";
    font-size: 16px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
    display: none;
}

.main-menu .navigation>li.dropdown:hover>a:after,
.main-menu .navigation>li.dropdown.current>a:after {
    transform: rotate(180deg);
}
**/

.main-menu .navigation>li>a span {
    position: relative;
    display: inline-block;
}

.main-menu .navigation>li>a span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    height: 2px;
    width: 0%;
    background: #94a9ce;
    transition: all 500ms ease;
}

.main-menu .navigation>li:hover>a span:before,
.main-menu .navigation>li.current>a span:before {
    width: 50%;
}

.main-menu .navigation>li>a span:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    height: 2px;
    width: 0%;
    background: #94a9ce;
    transition: all 500ms ease;
}

.main-menu .navigation>li:hover>a span:after,
.main-menu .navigation>li.current>a span:after {
    width: 50%;
}




.main-menu .navigation>li>ul {
    position: absolute;
    top: 100%;
    left: inherit;
    width: 320px;
    padding: 22px 0px 25px;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transform-style: preserve-3d;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.main-menu .navigation>li>ul:after {
    position: absolute;
    top: -3px;
    left: 0px;
    right: 0;
    height: 3px;
    content: '';
    background: #94a9ce;
    border-radius: 0px;
    z-index: -1;
}

.main-menu .navigation>li.dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    display: block;
    padding: 0 30px;
    width: 100%;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 9px 0px 9px;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    transition: all 500ms ease;
    letter-spacing: normal;
    font-family: var(--thm-font);
    z-index: 1;
}

.main-menu .navigation>li>ul>li>a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: #94a9ce;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .navigation>li>ul>li:hover>a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.main-menu .navigation>li>ul>li:hover>a {
    color: #ffffff;
    padding-left: 20px;
    letter-spacing: .1em;
}


.main-menu .navigation>li>ul>li.dropdown {}

.main-menu .navigation>li>ul>li.dropdown:after {
    position: absolute;
    top: 0px;
    right: 50px;
    bottom: 0;
    font-family: FontAwesome;
    content: "\f105";
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin: 4px 0;
    text-align: right;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.main-menu .navigation>li>ul>li.dropdown:hover:after {
    color: #ffffff;
}



.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    top: 0%;
    left: 100%;
    width: 290px;
    padding: 22px 0 25px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transform-style: preserve-3d;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    z-index: 100;
}

.main-menu .navigation>li>ul>li>ul:before {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    height: 100%;
    content: '';
    background-color: #ffffff;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.main-menu .navigation li>ul>li.dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.main-menu .navigation>li>ul>li>ul:after {
    position: absolute;
    top: -3px;
    left: 0px;
    right: 0;
    height: 3px;
    content: '';
    background: #94a9ce;
    border-radius: 0px;
    z-index: -1;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    display: block;
    padding: 0 30px;
    width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 9px 0px 9px;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    transition: all 500ms ease;
    letter-spacing: normal;
    font-family: var(--thm-font);
    z-index: 1;
}

.main-menu .navigation>li>ul>li>ul>li>a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: #94a9ce;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: #ffffff;
    padding-left: 20px;
    letter-spacing: .1em;
}



/** Megamenu Style **/
.main-menu .navigation>li>.megamenu {
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    padding: 22px 0 25px;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid var(--thm-base);
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    transform-style: preserve-3d;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    z-index: 100;
}

.main-menu .navigation>li>.megamenu:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #ffffff;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.main-menu .navigation>li.dropdown:hover .megamenu {
    opacity: 1;
    visibility: visible;
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.main-menu .navigation>li>.megamenu:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    bottom: 0px;
    width: 1px;
    background: var(--thm-black);
    opacity: 0.10;
}

.main-menu .navigation>li>.megamenu .row {
    margin-right: 0px;
    margin-left: 0px;
}

.main-menu .navigation>li>.megamenu .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}

.main-menu .navigation>li>.megamenu li {
    position: relative;
    display: block;
    padding: 0 50px;
    width: 100%;
}

.main-menu .navigation>li>.megamenu li>a {
    position: relative;
    display: block;
    padding: 9px 0px 9px;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    transition: all 500ms ease;
    letter-spacing: normal;
    font-family: var(--thm-font);
    z-index: 1;
}

.main-menu .navigation>li>.megamenu li>a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .navigation>li>.megamenu li:hover>a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.main-menu .navigation>li>.megamenu li:hover>a {
    color: #ffffff;
    padding-left: 20px;
    letter-spacing: .1em;
}



.main-menu .navigation li.dropdown .megamenu li h4 {
    font-weight: 500;
    padding: 3px 0px;
    color: var(--thm-black);
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    height: 42px;
    border-left: 1px solid #04102a;
    text-align: center;
    font-size: 16px;
    line-height: 42px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    z-index: 5;
}




.header-right {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-number-box1 {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.phone-number-box1 .icon {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #94a9ce;
    border-radius: 50%;
    z-index: 1;
}

.phone-number-box1 .icon:before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: 50%;
    background: #003060;
    content: "";
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.phone-number-box1:hover .icon:before {
    transform: scaleX(1.0);
}

.phone-number-box1 .icon span::before {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.phone-number-box1:hover .icon span::before {
    color: #fff;
}

.phone-number-box1 .phone {
    position: relative;
    display: block;
    padding-left: 20px;
}

.phone-number-box1 .phone a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.phone-number-box1 .phone a:hover {
    color: var(--thm-base);
}



/*==============================================
    Main Header Style2         
===============================================*/
.header-style-two {
    position: relative;
}

.header-style2__top {
    position: relative;
    display: block;
    background-color: #ffffff;
    z-index: 1;
}

.header-style2__top .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #d9e3e4;
    padding: 10px 0;
}

.header-style2__top-left {
    position: relative;
    display: block;
}


.header-contact-info {
    position: relative;
    display: block;
}

.header-contact-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.header-contact-info ul li:last-child {
    margin-right: 0;
}

.header-contact-info ul li .icon {
    width: 25px;
    line-height: 22px;
}

.header-contact-info ul li .icon span:before {
    position: relative;
    display: inline-block;
    top: 1px;
    color: var(--thm-base);
    font-size: 16px;
}

.header-contact-info ul li .text {
    position: relative;
    display: block;
}

.header-contact-info ul li .text h6 {
    color: #818891;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.header-contact-info ul li .text h6 a {
    color: #818891;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.header-contact-info ul li .text h6 a:hover {
    color: var(--thm-base);
}



.header-style2__top-right {
    position: relative;
    display: block;
}

.header-social-link {
    position: relative;
    display: block;
}

.header-social-link ul {
    display: block;
}

.header-social-link ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 5px;
}

.header-social-link ul li:last-child {
    margin-right: 0;
}

.header-social-link ul li a {
    position: relative;
    display: block;
    height: 40px;
    width: 40px;
    background-color: var(--thm-base);
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.header-social-link ul li a:hover {
    color: #ffffff;
}

.header-social-link ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-bg);
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.header-social-link ul li a:hover:before {
    transform: scaleX(1.0);
}



.header-style2 {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 1;
}

.header-style2 .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-style2__left {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 1px solid #dde4f1;
}

.logo-box-style2 {
    position: relative;
    display: block;
}

.logo-box-style2 img {
    max-width: 160px;
}

.logo-box-style2 a {
    position: relative;
    display: inline-block;
}


.main-menu.style2 {
    position: relative;
    display: block;
    padding-left: 45px;
	padding-right: 30px;
}

.main-menu.style2 .navigation>li {
    margin-right: 35px;
}

.main-menu.style2 .navigation>li:last-child {
    margin-right: 0;
}

.main-menu.style2 .navigation>li>a {
    color: var(--thm-black);
    letter-spacing: 0.1em;
}

.main-menu.style2 .navigation>li:hover>a,
.main-menu.style2 .navigation>li.current>a {
    color: #003060;
}



.header-style2__right {
    position: relative;
    display: block;
}

.phone-number-box1--style2 {
    margin: 0;
}

.phone-number-box1--style2 .phone p {
    position: relative;
    top: 3px;
    color: #818891;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin: 0 0 0px;
}

.phone-number-box1--style2 .phone a {
    position: relative;
    top: 3px;
    color: var(--thm-black);
}

.phone-number-box1--style2 .phone a:hover {
    color: #003060;
}

/*** 
=====================================================
	Main Slider style
=====================================================
***/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider.style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.main-slider .slide {
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-slider .slide .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: var(--thm-bg);
    /*background-blend-mode: luminosity;*/
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    z-index: 1;
}

.main-slider .slide .image-layer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--thm-bg);
    opacity: 0.60;
    z-index: -1;
}

/*.main-slider .active .slide .image-layer {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}*/



.main-slider .content {
    position: relative;
    z-index: 11;
}

.main-slider .auto-container {
    position: relative;
}

.main-slider .slide {
    position: relative;
    display: block;
    padding-top: 140px;
    padding-bottom: 100px;
}

.main-slider .shape-box {
    position: absolute;
    top: 140px;
    left: 115px;
    bottom: 100px;
    right: 100%;
    background-color: #94a9ce;
    mix-blend-mode: soft-light;
    z-index: 1;
    -moz-transform: skew(0deg, 0deg);
    -webkit-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);

    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider .active .shape-box {
    right: 65%;
    -moz-transform: skew(20deg, 0deg);
    -webkit-transform: skew(20deg, 0deg);
    -o-transform: skew(20deg, 0deg);
    -ms-transform: skew(20deg, 0deg);
    transform: skew(20deg, 0deg);
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}


.main-slider .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 70px 0 100px;
}


.main-slider .content .big-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .active .content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .content .big-title h2 {
    color: #ffffff;
    font-size: 120px;
    line-height: 0.9em;
    font-weight: 700;
}

.main-slider .content .big-title h3 {
    color: #ffffff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 500;
}

.main-slider .content .big-title p {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
	max-width: 600px;
	margin-top: 10px;
	margin-bottom: 0;
}

.main-slider .content .big-title h2 .dotted {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--thm-base);
    border-radius: 50%;
}


.main-slider .content .btns-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    line-height: 0;
    margin-top: 47px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider .active .content .btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider .content .btns-box a {}



/*=== Main Slider Nav Style=========*/
.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    right: 15%;
    height: 150px;
    line-height: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: all 500ms ease;
    z-index: 3;
}

.main-slider:hover .owl-theme .owl-nav {
    opacity: 1;
    transform: scaleX(1.0) translateY(-50%);
}

.main-slider .owl-theme .owl-nav .owl-prev,
.main-slider .owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    background: rgba(255, 255, 255, .20);
    border: 0px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, .20);
    font-size: 25px;
    line-height: 70px;
    font-weight: 100;
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -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-slider .owl-theme .owl-prev span,
.main-slider .owl-theme .owl-next span {
    display: block;
}

.main-slider .owl-theme .owl-prev span:before {
    transition: all 100ms ease;
}

.main-slider .owl-theme .owl-nav .owl-prev {
    transform: rotate(180deg);
}

.main-slider .owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.main-slider .owl-theme .owl-nav .owl-prev:hover,
.main-slider .owl-theme .owl-nav .owl-next:hover {
    color: var(--thm-black);
    background: rgba(255, 255, 255, 1.0);
}

.banner-carousel .owl-dots {
    display: block;
}




.main-slider.style2 .owl-theme .owl-nav {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0px;
    opacity: 1;
    line-height: 0;
    transform: scaleX(1.0) translateY(-50px);
    transition: all 500ms ease;
}

.main-slider.style2 .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 20px;
}

.main-slider.style2 .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 20px;
}







/*===== Main Slider Dot Style ====*/
.main-slider .banner-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 0;
    right: 70px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    display: none;
}

.main-slider .banner-carousel.owl-carousel .owl-dots:before {
    content: "";
    position: absolute;
    top: auto;
    left: 6px;
    bottom: auto;
    width: 3px;
    height: 95px;
    background: #262626;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider:hover .banner-carousel.owl-carousel .owl-dots {
    opacity: 1;
    transform: scaleX(1.0) translateX(0px);
}

.main-slider .banner-carousel.owl-carousel button.owl-dot {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    background: #262626;
    float: none;
    border-radius: 50%;
    margin: 20px 0px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
}

.main-slider .banner-carousel.owl-carousel button.owl-dot.active:before {
    transform: scaleX(1.0);
}

.main-slider .banner-carousel.owl-carousel button.owl-dot.active {
    background-image: -moz-linear-gradient(0deg, rgb(128, 183, 87) 0%, rgb(147, 188, 48) 40%, rgb(165, 193, 9) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(128, 183, 87) 0%, rgb(147, 188, 48) 40%, rgb(165, 193, 9) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(128, 183, 87) 0%, rgb(147, 188, 48) 40%, rgb(165, 193, 9) 100%);
}




/*** 
=====================================================
	Main Slider style2 
=====================================================
***/
.main-slider.style2 {
    position: relative;
    display: block;
}

.main-slider.style2 .slide {
    position: relative;
    display: block;
    /*padding-top: 166px;
    padding-bottom: 200px;*/
	padding-top: 200px;
    padding-bottom: 250px;
}

.main-slider.style2 .slide .image-layer:before {
    opacity: 0.60;
}

.main-slider.style2 .content {
    padding: 0px 0 0px;
}

.main-slider.style2 .content .big-title h1 {
    font-size: 60px;
    line-height: 70px;
}

.main-slider.style2 .content .big-title h2 {
    font-size: 60px;
    line-height: 70px;
}

/*** 
=============================================
    About Style1 Area    
=============================================
***/
.about-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    z-index: 9;
}

.about-style1__image {
    position: relative;
    display: block;
    max-width: 585px;
    margin-right: -15px;
}

.about-style1__image .shape-1 {
    position: absolute;
    top: 60px;
    left: -100px;
    width: 120px;
    height: 170px;
    background-color: #94a9ce;
    -moz-transform: skew(20deg, 0deg);
    -webkit-transform: skew(20deg, 0deg);
    -o-transform: skew(20deg, 0deg);
    -ms-transform: skew(20deg, 0deg);
    transform: skew(20deg, 0deg);
    z-index: 2;
}

.about-style1__image .shape-2 {
    position: absolute;
    top: 230px;
    left: -170px;
    width: 80px;
    height: 80px;
    background-color: #003060;
    -moz-transform: skew(20deg, 0deg);
    -webkit-transform: skew(20deg, 0deg);
    -o-transform: skew(20deg, 0deg);
    -ms-transform: skew(20deg, 0deg);
    transform: skew(20deg, 0deg);
    z-index: 2;
}








.about-style1__image .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
    z-index: 1;
}

.about-style1__image .inner::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .1) 100%);
    transform: skewX(1deg);
    z-index: 1;
}

.about-style1__image:hover .inner::before {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.about-style1__image .inner img {
    width: 100%;
    /*mix-blend-mode: luminosity;*/
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.about-style1__image:hover .inner img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}



.about-style1__content {
    position: relative;
    display: block;
    padding-left: 10px;
}

.about-style1__content .inner-content {
    position: relative;
    display: block;
}

.about-style1__content .inner-content .top-text {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: 30px;
}

.about-style1__content .inner-content .top-text h3 {
    color: var(--thm-base);
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 0px;
}

.about-style1__content .inner-content .top-text p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
    color: #4c4d50;
    text-align: justify;
}

.about-style1__content .inner-content ul {
    position: relative;
    display: block;
    padding-bottom: 4px;
}

.about-style1__content .inner-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.about-style1__content .inner-content ul li+li {
    margin-top: 13px;
}

.about-style1__content .inner-content ul li span:before {
    position: relative;
    display: inline-block;
    color: #94a9ce;
    padding-right: 10px;
}




.progress-block {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.progress-block .inner-box {
    position: relative;
    min-height: 100px;
}

.progress-block .graph-outer {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    min-height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-block .graph-outer .count-box {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    margin-top: 0px;
    font-size: 20px;
    color: #003060;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.progress-block .graph-outer .count-text {
    position: relative;
    font-size: 20px;
    line-height: 1.2em;
    color: #003060;
    font-weight: 700;
}

.progress-block .outer-text {
    position: relative;
    display: block;
    padding-left: 120px;
}

.progress-block .outer-text h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}


.signature-box {
    position: relative;
    display: block;
    padding-top: 29px;
    top: 10px;
}

.signature-box h2 {
    color: #003060;
    font-size: 60px;
    font-weight: 400;
    line-height: 50px;
    font-family: 'the_sayinisticitalic';
}

.signature-box h2 span {
    color: #94a9ce;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--thm-font);
    position: relative;
    display: inline-block;
    padding-left: 10px;
}







/*** 
=============================================
    About Style2 Area    
=============================================
***/
.about-style2-area {
    position: relative;
    display: block;
    padding: 100px 0 100px;
    background: #ffffff;
    z-index: 9;
}


.about-style2__content {
    position: relative;
    display: block;
}

.about-style2__content .sec-title--style2 {
    padding-bottom: 20px;
}

.about-style2__content .sec-title--style2 h2 {
    color: var(--thm-black);
}

.about-style2__content .inner-content {
    position: relative;
    display: block;
}

.about-style2__content .inner-content .top-text {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.about-style2__content .inner-content .top-text .icon {
    position: relative;
    display: block;
    width: 80px;
}

.about-style2__content .inner-content .top-text .icon span::before {
    position: relative;
    top: 10px;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
}

.about-style2__content .inner-content .top-text .inner-title {
    position: relative;
    display: block;
    width: 400px;
}

.about-style2__content .inner-content .top-text .inner-title h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}


.about-style2__content .inner-content .text-box {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.about-style2__content .inner-content .text-box p {
    margin: 0;
}


.about-style2__content .inner-content ul {
    position: relative;
    display: block;
}

.about-style2__content .inner-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.about-style2__content .inner-content ul li+li {
    margin-top: 7px;
}

.about-style2__content .inner-content ul li span:before {
    position: relative;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px;
}

.about-style2__content .inner-content .btn-box {
    position: relative;
    display: block;
    padding-top: 45px;
    line-height: 0;
}




.about-style2__image {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
}

.about-style2__image .shape-1 {
    position: absolute;
    top: 60px;
    right: -120px;
    width: 120px;
    height: 170px;
    background-color: var(--thm-base);
    -moz-transform: skew(-20deg, 0deg);
    -webkit-transform: skew(-20deg, 0deg);
    -o-transform: skew(-20deg, 0deg);
    -ms-transform: skew(-20deg, 0deg);
    transform: skew(-20deg, 0deg);
    webkit-animation: bgSlideReverse2 20s linear infinite;
    animation: bgSlideReverse2 20s linear infinite;
    z-index: 1;
}

.about-style2__image .shape-2 {
    position: absolute;
    top: 230px;
    right: -200px;
    width: 80px;
    height: 80px;
    background-color: var(--thm-black);
    -moz-transform: skew(-20deg, 0deg);
    -webkit-transform: skew(-20deg, 0deg);
    -o-transform: skew(-20deg, 0deg);
    -ms-transform: skew(-20deg, 0deg);
    transform: skew(-20deg, 0deg);
    z-index: 1;
}

.about-style2__image .border-box {
    position: absolute;
    top: 40px;
    left: -10px;
    bottom: 40px;
    width: 10px;
    background: var(--thm-base);
}



.about-style2__image .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
}

.about-style2__image .inner::before {
    position: absolute;
    top: 90%;
    left: 90%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background-color: rgba(var(--thm-base-rgb), .90);
    border-radius: 50%;
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    opacity: 0;
    z-index: 1;
}

.about-style2__image:hover .inner::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.about-style2__image .inner img {
    width: 100%;
    transition: all 2500ms ease 100ms;

}

.about-style2__image:hover .inner img {
    transform: scale(1.2) rotate(3deg);
}


.about-style2__image .inner .overlay-content {
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    border-top: 5px solid var(--thm-base);
    padding: 31px 60px 26px;
    z-index: 10;
}

.about-style2__image .inner .overlay-content .count-outer {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 7px;
}

.about-style2__image .inner .overlay-content .count-outer .count-text {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    z-index: 99;
}

.about-style2__image .inner .overlay-content h3 {
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
}




.about-style2__content--in-about-style3 {
    position: relative;
    display: block;
    padding-left: 70px;
}

.about-style2__content--in-about-style3 .inner-content .top-text .inner-title h3 {
    color: var(--thm-gray);
}

.about-style2__content--in-about-style3 .inner-content .top-text .inner-title h3 span {
    color: var(--thm-base);
}

.about-style2__content--in-about-style3 .inner-content ul {
    padding-top: 38px;
}

/*** 
=============================================
    Blog Style1 Area 
=============================================
***/
.blog-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 60px;
    z-index: 9;
}

.blog-style1-area__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 508px;
    background: var(--thm-primary);
    z-index: -1;
}

.single-blog-style1 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.single-blog-style1 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
}

.single-blog-style1 .img-holder::before {
    position: absolute;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0%;
    content: '';
    background-color: #94a9ce;
    transform: scale(0);
    clip-path: polygon(0 0, 100% 0%, 0% 100%, 0 100%);
    opacity: 1;
    transition: all 500ms ease;
    z-index: 10;
}

.single-blog-style1:hover .img-holder::before {
    opacity: 0.5;
    transform: scale(1.0);
}

.single-blog-style1 .img-holder .date-box {
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 130px;
    height: 30px;
    background: #003060;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.single-blog-style1 .img-holder .date-box p {
    color: #ffffff;
    font-size: 12px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}


.single-blog-style1 .img-holder img {
    width: 100%;
    transform: scale(1.0);
    /*mix-blend-mode: luminosity;*/
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
}

.single-blog-style1:hover .img-holder img {
    mix-blend-mode: normal;
    transform: scale(1.1) rotate(1deg);
}



.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 32px 40px 40px;
    border: 1px solid #d9e3e4;
    border-top: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .text-holder {
    border: 1px solid transparent;
    border-top: none;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.single-blog-style1 .text-holder .meta-info {
    position: relative;
    display: block;
    margin-bottom: 8px;
}

.single-blog-style1 .text-holder .meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1 .text-holder .meta-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 17px;
    margin-right: 15px;
    line-height: 30px;
}

.single-blog-style1 .text-holder .meta-info ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: var(--thm-gray);
    transform: rotate(20deg);
}

.single-blog-style1 .text-holder .meta-info ul li:last-child:before {
    display: none;
}

.single-blog-style1 .text-holder .meta-info ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.single-blog-style1 .text-holder .meta-info ul li span:before {
    position: relative;
    display: inline-block;
    padding-right: 5px;
    color: var(--thm-base);
    font-size: 16px;
}

.single-blog-style1 .text-holder .meta-info ul li a {
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .text-holder .meta-info ul li a:hover {
    color: var(--thm-base);
}

.single-blog-style1 .text-holder h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 19px;
}

.single-blog-style1 .text-holder h3 a {
    color: #003060;
}

.single-blog-style1 .text-holder h3 a:hover {
    color: #003060;
}

.single-blog-style1 .text-holder .btn-box {
    position: relative;
    display: block;
}

.single-blog-style1 .text-holder .btn-box a {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    color: #94a9ce;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.single-blog-style1 .text-holder .btn-box a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: #94a9ce;
}

.single-blog-style1 .text-holder .btn-box a:hover {
    color: #003060;
}



/*** 
=============================================
    Blog Page One 
=============================================
***/
.blog-page-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}



/*** 
=============================================
    Blog Page Two 
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}



/*** 
=============================================
    Blog Page Three 
=============================================
***/
.blog-page-three {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-content-box {
    position: relative;
    display: block;
}


.single-blog-style1--in-style2 .text-holder {
    padding: 32px 0px 0px;
    border: 0px solid #d9e3e4;
}

.single-blog-style1--in-style2:hover .text-holder {
    border: 0px solid transparent;
    box-shadow: none;
}

.single-blog-style1--in-style2 .text-holder .meta-info {
    margin-bottom: 10px;
}

.single-blog-style1--in-style2 .text-holder h3 {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}



/*** 
=============================================
    Sidebar 
=============================================
***/
.thm-sidebar-box {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.single-sidebar-box {
    position: relative;
    display: block;
    padding: 50px 50px 50px;
    background-color: var(--thm-primary);
    margin-top: 30px;
}

.sidebar-search-box {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 20px 30px;
}

.sidebar-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 55px;
    height: 50px;
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
    background: rgba(var(--thm-black-rgb), 1.0);
    text-align: center;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.sidebar-search-box .search-form input[type="text"]:focus {
    color: var(--thm-base);
}

.sidebar-search-box .search-form input[type="text"]:focus+button,
.sidebar-search-box .search-form button:hover {
    color: #fff;
}

.sidebar-search-box .search-form input::-webkit-input-placeholder {
    color: var(--thm-base);
}

.sidebar-search-box .search-form input:-moz-placeholder {
    color: var(--thm-base);
}

.sidebar-search-box .search-form input::-moz-placeholder {
    color: var(--thm-base);
}

.sidebar-search-box .search-form input:-ms-input-placeholder {
    color: var(--thm-base);
}





.sidebar-title {
    position: relative;
    display: block;
    top: -4px;
    padding-bottom: 22px;
}

.sidebar-title h3 {
    position: relative;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-blog-post {
    position: relative;
    display: block;
}

.sidebar-blog-post ul {
    position: relative;
    display: block;
}

.sidebar-blog-post ul li {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.sidebar-blog-post ul li:last-child {
    margin-bottom: 0;
}

.sidebar-blog-post ul li .inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.sidebar-blog-post ul li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    background-color: var(--thm-bg);
}

.sidebar-blog-post ul li .img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.sidebar-blog-post ul li .img-box .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-base-rgb), .80);
    border-radius: 0%;
    opacity: 0;
    transform: perspective(0px) scale(0);
    transform-origin: center;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sidebar-blog-post ul li:hover .img-box .overlay-content {
    opacity: 1;
    transform: perspective(400px) scale(1.0);
    transition: all 0.3s ease-in-out 0.3s;
}

.sidebar-blog-post ul li .img-box .overlay-content a {
    color: #ffffff;
    font-size: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post ul li .title-box {
    position: relative;
    display: block;
    padding-left: 20px;
    min-height: 70px;
}

.sidebar-blog-post ul li .title-box .admin {
    position: relative;
    top: -1px;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
}

.sidebar-blog-post ul li .title-box .admin span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    padding-right: 3px;
    font-weight: 600;
    top: 2px;
}

.sidebar-blog-post ul li .title-box h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    margin: 9px 0 0;
}

.sidebar-blog-post ul li .title-box h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post ul li .title-box h4 a:hover {
    color: var(--thm-base);
}




.sidebar-categories-box {
    position: relative;
    display: block;
}

.sidebar-categories-box li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.sidebar-categories-box li:last-child {
    margin-bottom: 0;
}

.sidebar-categories-box li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 700;
    line-height: 45px;
    text-transform: capitalize;
    font-family: var(--thm-font);
    letter-spacing: 0.0em;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar-categories-box li a:hover {
    padding-left: 0px;
}

.sidebar-categories-box li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    bottom: 0;
    right: -25px;
    border-radius: 0px;
    background: #ffffff;
    transform: perspective(400px) scaleX(0);
    transform-origin: right;
    transition: all 600ms ease 100ms;
    z-index: -1;
}

.sidebar-categories-box li a:hover:after {
    transform: perspective(400px) scaleX(1.0);
}

.sidebar-categories-box li:hover a {
    color: var(--thm-base);
    padding-left: 5px;
}

.sidebar-categories-box li a:before {
    font-family: 'icomoon' !important;
    content: "\e91b";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: rotate(-90deg);
}

.sidebar-categories-box li:hover a:before {
    color: var(--thm-base);
    right: 5px;
}





.popular-tag-box {
    position: relative;
    display: block;
}

.single-sidebar-box .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.single-sidebar-box .popular-tag li {
    position: relative;
    display: block;
    float: left;
    margin: 0 5px 10px;
}

.single-sidebar-box .popular-tag li a {
    position: relative;
    display: block;
    padding: 9px 20px 9px;
    background: #ffffff;
    color: var(--thm-black);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.single-sidebar-box .popular-tag li:hover a {
    color: #ffffff;
    background-color: var(--thm-base);
}



/*** 
=============================================
    Blog Details 
=============================================
***/
.blog-details-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-details-content {
    position: relative;
    display: block;
}

.blog-details-content .single-blog-style1 {
    margin: 0;
}


.tag-social-share-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #d9e3e4;
    margin-top: 50px;
}

.tag-box {
    position: relative;
    display: flex;
    align-items: center;
}

.tag-box .title {
    width: 65px;
}

.tag-box .title h3 {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}


.tag-box .tag-list {
    position: relative;
    display: block;
}

.tag-box .tag-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.tag-box .tag-list li:last-child {
    margin-right: 0;
}

.tag-box .tag-list li a {
    position: relative;
    display: block;
    padding: 0px 20px 0px;
    background: var(--thm-base);
    color: #fff;
    font-size: 12px;
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.tag-social-share-box .post-social-share {
    position: relative;
    display: block;
}

.post-social-share-links {
    position: relative;
    display: block;
}

.post-social-share-links ul {
    position: relative;
    display: block;
}

.post-social-share-links ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.post-social-share-links ul li:last-child {
    margin-right: 0;
}

.post-social-share-links ul li a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background: var(--thm-primary);
    color: var(--thm-black);
    font-size: 14px;
    line-height: 45px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 1;
}

.post-social-share-links ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    content: "";
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.post-social-share-links ul li a:hover:before {
    transform: scaleX(1.0);
}

.post-social-share-links ul li a:hover {
    color: #ffffff;
}





.blog-details-author {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 60px 60px 60px;
}

.blog-details-author .inner-box {
    position: relative;
    display: block;
}

.blog-details-author .inner-box .img-box {
    width: 170px;
    background-color: var(--thm-bg);
}

.blog-details-author .inner-box .img-box img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.blog-details-author .inner-box .img-box,
.blog-details-author .inner-box .text {
    display: table-cell;
    vertical-align: middle;
}

.blog-details-author .inner-box .text {
    position: relative;
    padding-left: 40px;
}

.blog-details-author .inner-box .text h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 24px;
}

.blog-details-author .inner-box .text p {
    margin: 0;
}




/*** ===== comments Box  ====***/
.comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 40px;
}

.comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 24px;
}

.comment-box .inner-title h2 {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
}

.comment-box .outer-box {
    position: relative;
    display: block;
}

.comment-box .single-comment {
    position: relative;
    display: block;
    padding-bottom: 30px;
    height: 100%;
    background-color: var(--thm-primary);
    padding: 30px 30px;
}

.home-certificate {
	padding: 100px 0 100px!important;
}

.home-certificate .comment-box {
    padding-top: 40px;
}

.home-certificate .comment-box .single-comment {
    padding: 0;
}

.home-certificate .sec-title h2 {
	margin-bottom: 10px;
}

.home-certificate .sec-title p {
    font-size: 18px;
    line-height: 30px;
    margin: auto;
    color: #4c4d50;
    font-weight: 400;
	max-width: 900px;
	text-align: center;
}

.home-certificate .comment-box .single-comment-box .text-holder .top .name {
    width: 100%;
}

.comment-box .single-comment-box {
    position: relative;
    display: block;
}

.comment-box .single-comment-box .img-holder {
    position: absolute;
    top: 11px;
    left: 0;
    width: 140px;
    height: 140px;
    overflow: hidden;
    background-color: var(--thm-bg);
}

.comment-box .single-comment-box .img-holder img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.comment-box .single-comment-box .text-holder {
    position: relative;
    display: block;
}

.comment-box .single-comment-box .text-holder .top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.comment-box .single-comment-box .text-holder .top .name {
    position: relative;
    display: block;
}

.comment-box .single-comment-box .text-holder .top .name h3 {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.comment-box .single-comment-box .text-holder .top .reply {
    position: relative;
    display: block;
    top: 11px;
}

.comment-box .single-comment-box .text-holder .top .reply a {
    position: relative;
    display: inline-block;
    background: var(--thm-base);
    padding: 10px 20px 10px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.comment-box .single-comment-box .text-holder .top .reply a:hover {
    color: #ffffff;
    background-color: var(--thm-black);
}

.comment-box .single-comment-box .text-holder .text {
    position: relative;
    display: block;
    padding-top: 10px;
}

.comment-box .single-comment-box .text-holder .text p {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    color: #69696b;
    font-weight: 400;
}






.add-comment-box {
    position: relative;
    display: block;
    margin-top: 36px;
}

.add-comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 35px;
}

.add-comment-box .inner-title h2 {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
}

.add-comment-box #add-comment-form {
    position: relative;
    display: block;
}

.add-comment-box #add-comment-form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.add-comment-box #add-comment-form input[type="text"],
.add-comment-box #add-comment-form input[type="email"],
.add-comment-box #add-comment-form textarea {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    border: 0px solid #edf3f2;
    width: 100%;
    height: 70px;
    color: var(--thm-gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    text-transform: none;
    padding: 0 30px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.add-comment-box #add-comment-form textarea {
    height: 150px;
    padding: 15px 30px;
}

.add-comment-box #add-comment-form input[type="text"]:focus {
    border-color: var(--thm-base);
}

.add-comment-box #add-comment-form input[type="email"]:focus {
    border-color: var(--thm-base);
}

.add-comment-box #add-comment-form textarea:focus {
    border-color: var(--thm-base);
}

.add-comment-box #add-comment-form .button-box {
    position: relative;
    display: block;
    padding-top: 10px;
    line-height: 0;
}

.add-comment-box #add-comment-form .button-box button {
    padding-left: 50px;
    padding-right: 50px;
    letter-spacing: 0.1em;
}

/*** 
=============================================
    Faq Page One 
=============================================
***/
.faq-page-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.faq-style1-content {
    position: relative;
    display: block;
}

.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.accordion-box .block:last-child {
    margin-bottom: 0;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: #f3f8ff;
    padding-top: 19px;
    padding-left: 40px;
    padding-bottom: 19px;
    padding-right: 40px;
    border: 1px solid #dcdeee;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background-color: #ffffff;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 15px;
    height: 15px;
    color: var(--thm-base);
    font-size: 14px;
    text-align: right;
    line-height: 15px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%) rotate(180deg);
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-black);
    transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
    font-weight: 400;
}


/***
.accordion-box .block .acc-btn.active .icon-outer i:before {
    position: relative;
    font-size: 12px;
    font-family: 'icomoon' !important;
    font-weight: 700;
    margin: 0px;
    content: "\e928";
}

**/

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 31px;
    padding-left: 40px;
    padding-bottom: 28px;
    padding-right: 30px;
    border: 1px solid #dcdeee;
    border-top: none;
}

.accordion-box .block .acc-content p {
    margin: 0;
}






/*** 
=============================================
    Faq Page One 
=============================================
***/
.faq-form-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding-bottom: 120px;
    z-index: 10;
}

.faq-form-box {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.faq-form-box .sec-title {
    position: relative;
}

.faq-form-box form {
    position: relative;
    display: block;
}

.faq-form-box form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.faq-form-box form input[type="text"],
.faq-form-box form input[type="email"],
.faq-form-box form textarea {
    position: relative;
    display: block;
    background: var(--thm-primary);
    width: 100%;
    height: 60px;
    border: 0px solid #ebf1ed;
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.faq-form-box form textarea {
    height: 170px;
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.faq-form-box form input[type="text"]:focus {
    color: #797989;
    border-color: var(--thm-primary);
}

.faq-form-box form input[type="email"]:focus {
    color: #797989;
    border-color: var(--thm-primary);
}

.faq-form-box form textarea:focus {
    color: #797989;
    border-color: var(--thm-primary);
}


.faq-form-box form input[type="text"]::-webkit-input-placeholder {
    color: #797989;
}

.faq-form-box form input[type="text"]:-moz-placeholder {
    color: #797989;
}

.faq-form-box form input[type="text"]::-moz-placeholder {
    color: #797989;
}

.faq-form-box form input[type="text"]:-ms-input-placeholder {
    color: #797989;
}

.faq-form-box form input[type="email"]::-webkit-input-placeholder {
    color: #797989;
}

.faq-form-box form input[type="email"]:-moz-placeholder {
    color: #797989;
}

.faq-form-box form input[type="email"]::-moz-placeholder {
    color: #797989;
}

.faq-form-box form input[type="email"]:-ms-input-placeholder {
    color: #797989;
}

.faq-form-box form textarea::-webkit-input-placeholder {
    color: #797989;
}

.faq-form-box form textarea:-moz-placeholder {
    color: #797989;
}

.faq-form-box form textarea::-moz-placeholder {
    color: #797989;
}

.faq-form-box form textarea:-ms-input-placeholder {
    color: #797989;
}



.faq-form-box form .button-box {
    position: relative;
    display: block;
    text-align: center;
}

.faq-form-box form .button-box button {}

/*** 
=============================================
    Google Map Area 
=============================================
***/
.google-map-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding-top: 100px;
    z-index: 10;
}

.contact-page-map-outer {
    position: relative;
    display: block;
    z-index: 10;
}

.contact-page-map-outer .map-canvas {
    position: relative;
    width: 100%;
    height: 460px;
}



.contact-info-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #d9e3e4;
    padding: 57px 100px 57px;
}

.contact-info-box .left-box {
    position: relative;
    display: block;
}

.contact-info-box .left-box h2 {
    font-size: 26px;
    font-weight: 500;
}

.contact-info-box .left-box h2 a {
    color: var(--thm-base);
}

.contact-info-box .left-box h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 3px 0 0;
}

.contact-info-box .left-box h3 a {
    color: var(--thm-base);
}


.contact-info-box .middle-box {
    position: relative;
    display: block;
}

.contact-info-box .middle-box p {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
	color: var(--thm-base);
}


.contact-info-box .right-box {
    position: relative;
    display: block;
}

.contact-info-box .right-box .thm-social-link1 {
    position: relative;
    display: block;
}






/*** 
=============================================
    Main Contact Form Area 
=============================================
***/
.main-contact-form-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0px 100px;
    z-index: 10;
}

.contact-form {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #eff7f8;
    border: 1px solid #eff7f8;
    width: 100%;
    height: 70px;
    color: #818891;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.contact-form form textarea {
    height: 150px;
    padding-top: 12px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #818891;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #818891;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #818891;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #818891;
}

.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #818891;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #818891;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #818891;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #818891;
}

.contact-form form textarea::-webkit-input-placeholder {
    color: #818891;
}

.contact-form form textarea:-moz-placeholder {
    color: #818891;
}

.contact-form form textarea::-moz-placeholder {
    color: #818891;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #818891;
}

.contact-form form .button-box {
    position: relative;
    display: block;
    padding-top: 10px;
}

.contact-form form .button-box button {}

/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    display: block;
    padding: 0;
    z-index: 11;
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--thm-bg);
    /*background-blend-mode: luminosity;*/
    z-index: 1;
}

.breadcrumb-area-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-bg);
    opacity: 0.60;
    content: "";
    z-index: -1;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
    padding: 124px 0 112px;
    z-index: 10;
}


.breadcrumb-area .shape-box {
    position: absolute;
    top: 80px;
    left: 160px;
    bottom: 60px;
    width: calc(100% - 85%);
    background-color: #94a9ce;
    mix-blend-mode: soft-light;
    -moz-transform: skew(20deg, 0deg);
    -webkit-transform: skew(20deg, 0deg);
    -o-transform: skew(20deg, 0deg);
    -ms-transform: skew(20deg, 0deg);
    transform: skew(20deg, 0deg);
    z-index: 1;
}


.breadcrumb-area .title {
    position: relative;
    display: block;
    overflow: hidden;
}

.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 55px;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}


.breadcrumb-menu {
    position: relative;
    display: block;
    padding-bottom: 5px;
}

.breadcrumb-menu ul {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-menu ul li {
    position: relative;
    display: block;
    float: left;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding-right: 14px;
    margin-right: 15px;
    font-family: var(--thm-font);
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-menu ul li:before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 5px;
    width: 1px;
    background: #ffffff;
    transform: rotate(25deg);
}

.breadcrumb-menu ul li:last-child:before {
    display: none;
}

.breadcrumb-menu ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color: #94a9ce;
}

/*** 
=============================================
    Team Style1 Area 
=============================================
***/
.team-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 80px;
    z-index: 10;
}

.team-style1-area .auto-container {
    max-width: 1600px;
}

.single-team-style1 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.single-team-style1 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 75px;
}

.single-team-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
    z-index: 1;
}

.single-team-style1 .img-holder .inner img {
    width: 100%;
    mix-blend-mode: luminosity;
    transition: all 500ms linear;
    transition-delay: 0.2s;
}

.single-team-style1:hover .img-holder .inner img {
    transform: scale(1.1) rotate(0deg);
    opacity: 0.20;
    mix-blend-mode: normal;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}




.single-team-style1 .title-holder {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 24px 0 0px;
    background-color: #ffffff;
    transform: perspective(400px) translateY(80px);
    transform-origin: bottom;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.single-team-style1:hover .title-holder {
    transform: perspective(400px) translateY(0px);
    transition: all 700ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .title-holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--thm-base);
    transform: scaleX(0);
    transition: all 100ms linear;
    transition-delay: 0.5s;
}

.single-team-style1:hover .title-holder::before {
    transform: scaleX(1.0);
    transition: all 900ms linear;
    transition-delay: 0.3s;
}

.single-team-style1 .title-holder h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 6px;
}

.single-team-style1 .title-holder h2 a {
    color: var(--thm-black);
}

.single-team-style1 .title-holder h2 a:hover {
    color: var(--thm-base);
}

.single-team-style1 .title-holder h3 {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.single-team-style1 .title-holder .social-links {
    position: relative;
    display: block;
    margin-top: 27px;
}

.single-team-style1 .title-holder .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.single-team-style1 .title-holder .social-links li:last-child {
    margin-right: 0px;
}

.single-team-style1 .title-holder .social-links li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--thm-primary);
    color: var(--thm-black);
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-team-style1 .title-holder .social-links li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    content: "";
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-team-style1 .title-holder .social-links li a:hover::before {
    transform: scaleX(1.0);
}

.single-team-style1 .title-holder .social-links li a:hover {
    color: #ffffff;
}




























/*** 
=============================================
    Team Page 
=============================================
***/
.team-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 80px;
    z-index: 10;
}

.team-style1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.team-style1-carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.team-style1-carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}

/*** 
=============================================
    Partner Area 
=============================================
***/
.partner-area {
    position: relative;
    display: block;
    background: #f1f6fe;
    padding-bottom: 100px;
    z-index: 10;
}

.partner-area.bg-white {
    background: #ffffff;
}

.partner-area.pdtop120 {
    padding-top: 120px;
}

.brand-content {
    position: relative;
    display: block;
}

.brand-content .inner {
    position: relative;
    display: block;
}

.partner-box {
    position: relative;
    display: block;
}

.partner-box li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-partner-logo-box {
    position: relative;
    display: block;
    text-align: center;
    border: 1px solid rgba(var(--thm-black-rgb), .10);
    z-index: 1;
	padding: 15px;
}

.single-partner-logo-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border: 1px dashed rgba(var(--thm-primary-rgb), .90);
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms linear;
    transition-delay: 0.5s;
    z-index: -1;
}

.single-partner-logo-box:hover:before {
    transform: perspective(400px) scaleX(1.0);
}

.single-partner-logo-box a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 15px 0;
}

.single-partner-logo-box a img {
    width: auto;
    transition: all 0.2s ease-in-out 0.1s;
}

.single-partner-logo-box:hover a img {
    opacity: 1.0;
    transition: all 0.8s ease-in-out 0.1s;
}

.partner-carousel.owl-carousel.owl-dot-style1 .owl-dots {
    display: none;
}

/*** 
=============================================
   Testimonial Style1 Area 
=============================================
***/
.testimonial-style1-area {
    position: relative;
    display: block;
    padding: 100px 0 70px;
    background: #f2f7ff;
    z-index: 10;
}

.testimonial-style1-content {
    position: relative;
    display: block;
    z-index: 1;
}


.single-testimonial-style1 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 50px 60px 0;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-testimonial-style1:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}

.single-testimonial-style1 .text {
    position: relative;
    display: block;
}

.single-testimonial-style1 .text p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
    color: #4c4d50;
    text-align: justify;
}

.single-testimonial-style1 .bottom-box {
    position: relative;
    display: block;
    padding-top: 43px;
    padding-bottom: 48px;
}

.single-testimonial-style1 .bottom-box .client-name {
    position: relative;
    display: block;
}

.single-testimonial-style1 .bottom-box .client-name h3 {
    color: #003060;
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 2px;
}

.single-testimonial-style1 .bottom-box .client-name span {
    color: #94a9ce;
    font-size: 16px;
    font-weight: 500;
}

.single-testimonial-style1 .bottom-box .client-img {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--thm-primary);
    padding: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-testimonial-style1:hover .bottom-box .client-img {
    background-color: #94a9ce;
}

.single-testimonial-style1 .bottom-box .client-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
}

.single-testimonial-style1 .bottom-box .client-img .inner img {
    width: 100%;
    /*mix-blend-mode: luminosity;*/
}

.single-testimonial-style1:hover .bottom-box .client-img .inner img {
    mix-blend-mode: normal;
}



.testimonial-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.testimonial-carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}



/*** 
=============================================
   Testimonial Page 
=============================================
***/
.testimonial-page {
    position: relative;
    display: block;
    padding: 120px 0 80px;
    background: var(--thm-primary);
    z-index: 10;
}

.testimonial-page .single-testimonial-style1 {
    margin-bottom: 40px;
}

/*** 
=============================================
    service Style1 Area 
=============================================
***/
.service-style1-area {
    position: relative;
    display: block;
    padding: 0px 0 0px;
    background: #ffffff;
    z-index: 10;
}

.service-style1__title {
    position: relative;
    display: block;
    padding-top: 100px;
    padding-right: 60px;
    padding-bottom: 100px;
    margin-right: -30px;
    z-index: 1;
}

.service-style1__title:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1000000px;
    bottom: 0;
    right: 0;
    background: var(--thm-bg);
    z-index: -1;
}

.service-style1__title .sec-title--style2 {
    padding-bottom: 36px;
}

.service-style1__title .inner-text {
    position: relative;
    display: block;
    padding-bottom: 29px;
}

.service-style1__title .inner-text p {
    margin: 0;
}



.video-holder-box {
    position: relative;
    display: flex;
    align-items: center;
}

.video-gallery-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    width: 160px;
    height: 75px;
}

.video-gallery-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-bg);
    background-blend-mode: luminosity;
}

.video-gallery-style1 .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
    background: var(--thm-base);
    z-index: 2;
}

.video-gallery-style1 .icon:after {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 10, 20, .10);
    box-shadow: 0 0 0 0 rgba(0, 10, 20, .10);
    -webkit-animation: ripple 6s infinite;
    animation: ripple 6s infinite;
}

.video-gallery-style1 .icon .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

.video-gallery-style1 .icon .video-popup span::before {
    position: relative;
    color: #ffffff;
}


.video-gallery-title {
    position: relative;
    display: block;
    padding-left: 30px;
}

.video-gallery-title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    margin: 0 0 4px;
}

.video-gallery-title a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}



.service-style1__content {
    position: relative;
    display: block;
    padding-top: 70px;
    padding-left: 100px;
}

.single-service-style1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    min-height: 232px;
    margin-top: 30px;
    z-index: 1;
}

.single-service-style1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-primary);
    z-index: -1;
}

.single-service-style1:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: -1;
}

.single-service-style1:hover:after {
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.single-service-style1 .shape-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 1;
    background-blend-mode: soft-light;
    mix-blend-mode: soft-light;
    border-bottom: 60px solid #ffffff;
    border-left: 60px solid transparent;
    -webkit-transform: perspective(400px) rotateX(-90deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(-90deg) scaleY(1.0);
    transform: perspective(400px) rotateX(-90deg) scaleY(1.0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.single-service-style1:hover .shape-box {
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .6s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


.single-service-style1 .icon-holder {
    position: relative;
    display: block;
    padding-bottom: 12px;
}

.single-service-style1 .icon-holder span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .icon-holder span:before {
    color: #ffffff;
    transform: scale(1.1);
    transition: all 200ms linear;
    transition-delay: 0.3s;
}


.single-service-style1 .title-holder {
    position: relative;
    display: block;
}

.single-service-style1 .title-holder h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.single-service-style1 .title-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.3s;
}

.single-service-style1:hover .title-holder h3 a {
    color: #ffffff;
}

.single-service-style1 .title-holder h3 a:hover {
    color: var(--thm-black);
}



/*** 
=============================================
    service Style2 Area 
=============================================
***/
.service-style2-area {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background: #ffffff;
    overflow: hidden;
    z-index: 10;
}

.service-style2--primary-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: var(--thm-primary);
    z-index: -1;
}

.single-service-style2 {
    position: relative;
    display: block;
    margin: 0 0 30px;
}

.single-service-style2 .img-holder {
    position: relative;
    display: block;
}

.single-service-style2 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
    z-index: 1;
}

.single-service-style2 .img-holder .inner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background: rgba(var(--thm-base-rgb), .70);
    content: '';
    transition: all 500ms ease;
}

.single-service-style2:hover .img-holder .inner:before {
    opacity: 1.0;
}



.single-service-style2 .img-holder .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 700ms ease;
}

.single-service-style2:hover .img-holder .inner img {
    transform: scale(1.2);
    mix-blend-mode: normal;
}

.single-service-style2 .img-holder .icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--thm-base);
    z-index: 2;
}

.single-service-style2 .img-holder .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-black);
    content: "";
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-service-style2:hover .img-holder .icon:before {
    transform: scaleX(1.0);
}

.single-service-style2 .img-holder .icon span {
    position: relative;
    display: block;
}

.single-service-style2 .img-holder .icon span:before {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 60px;
    line-height: 100px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style2:hover .img-holder .icon span:before {
    color: #ffffff;
}



.single-service-style2 .title-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 35px 30px 35px;
    border: 1px solid #d9e3e4;
    border-top: none;
    transition: all 0.3s ease-in-out 0.1s;
    z-index: 1;
	min-height: 260px;
}

.single-service-style2:hover .title-holder {
    border: 1px solid var(--thm-base);
    border-top: none;
}

.single-service-style2 .title-holder:before {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 60px;
    height: 60px;
    border-bottom: 60px solid var(--thm-base);
    border-left: 60px solid transparent;
    transform: rotateY(-90deg) scaleY(1.0);
    transform-origin: right;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 1;
}

.single-service-style2:hover .title-holder:before {
    transform: rotateY(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.single-service-style2 .title-holder h3 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 14px;
	text-align: center;
}

.single-service-style2 .title-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style2 .title-holder h3 a:hover {
    color: var(--thm-base);
}

.single-service-style2 .title-holder .text {
    position: relative;
    display: block;
}

.single-service-style2 .title-holder .text p {
    margin: 0;
    transition: all 0.3s ease-in-out 0.1s;
}

.single-service-style2 .title-holder .btn-box {
    position: relative;
    display: block;
    padding-top: 19px;
}

.single-service-style2 .title-holder .btn-box a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 54px;
    text-align: center;
    transition: all 0.3s ease-in-out 0.1s;
	margin: auto;
}

.single-service-style2:hover .title-holder .btn-box a {
    color: #ffffff;
    background-color: var(--thm-black);
}



/*** 
=============================================
    service Page 
=============================================
***/
.service-page {
    position: relative;
    display: block;
    padding: 100px 0 70px;
    background: #ffffff;
    overflow: hidden;
    z-index: 10;
}



/*** 
=============================================
    Service Details Area 
=============================================
***/
.service-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0px 100px;
    z-index: 10;
}


.service-details__sidebar {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.view-all-service {
    position: relative;
    display: block;
    background: #eff7f8;
    padding: 30px 30px 30px;
}

.view-all-service h3 {
	color: var(--thm-black);
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 6px;
}

.view-all-service h3:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
	background: var(--thm-base);
}

.view-all-service .service-pages {
    position: relative;
    display: block;
}

.view-all-service .service-pages li {
    position: relative;
    display: block;
    border-bottom: 1px solid #ffffff;
}

.view-all-service .service-pages li:last-child {
    margin-bottom: 0px;
}

.view-all-service .service-pages li a {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 15px 30px;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.view-all-service .service-pages li.active a,
.view-all-service .service-pages li:hover a {
    color: #ffffff;
}

.view-all-service .service-pages li a span {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    float: right;
    line-height: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.view-all-service .service-pages li.active a span,
.view-all-service .service-pages li:hover a span {
    color: #ffffff;
}

.view-all-service .service-pages li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    transform: perspective(400px) scaleY(0);
    transform-origin: center;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.view-all-service .service-pages li:hover a::before,
.view-all-service .service-pages li.active a::before {
    transform: perspective(400px) scaleY(1.0);
}



.service-details-contact-info {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 60px 50px 60px;
    margin-top: 30px;
    z-index: 1;
}

.service-details-contact-info .sidebar-info-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-color: var(--thm-bg);
    background-blend-mode: luminosity;
    z-index: -1;
}

.service-details-contact-info .sidebar-info-box-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0077c1;
    opacity: 0.9;
}

.service-details-contact-info .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: var(--thm-base);
    border-radius: 50%;
    margin: 0 auto;
    color: #ffffff;
    font-size: 40px;
}

.service-details-contact-info .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: transparent;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.service-details-contact-info h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 32px 0 33px;
}

.service-details-contact-info h2 {
    position: relative;
    display: inline-block;
    background-color: rgba(255, 255, 255, .10);
    padding: 15px 30px 15px;
    font-size: 20px;
    font-weight: 700;
}

.service-details-contact-info h2 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-details-contact-info h2 a:hover {
    color: var(--thm-base);
}



.info-download-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.info-download-box ul {
    position: relative;
    display: block;
}

.info-download-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--thm-base);
    padding: 25px 50px 25px;
}

.info-download-box ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
    width: 50px;
}

.info-download-box ul li .icon span:before {
    position: relative;
    top: 2px;
    display: block;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
}

.info-download-box ul li .title {
    position: relative;
    display: block;
}

.info-download-box ul li .title h5 {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.info-download-box ul li .title h5 a {
    color: #ffffff;
    transition: all .5s ease-in-out;
}

.info-download-box ul li .title h5 a:hover {
    color: var(--thm-black);
}




.service-details__content {
    position: relative;
    display: block;
	padding: 45px 45px 45px 45px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
}

.service-details__content.service-cover-image {
	padding: 0;
	box-shadow: none;;
}

.service-details__content .img-box-outer {
    position: relative;
    display: block;
}

.service-details__content .img-box-outer .icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--thm-base);
    z-index: 2;
}

.service-details__content .img-box-outer .icon span {
    position: relative;
    display: block;
}

.service-details__content .img-box-outer .icon span:before {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 60px;
    line-height: 100px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.service-details__content .img-box1 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-bg);
}

/*.service-details__content .img-box1::after {
    position: absolute;
    top: 0;
    left: -100%;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(var(--thm-base-rgb), .1) 0%,
            rgba(var(--thm-base-rgb), .5) 50%,
            rgba(255, 255, 255, .9) 100%);
    transform: skewX(-15deg);
    z-index: 2;
}

.service-details__content .img-box1:hover::after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}*/

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.service-details__content .img-box1 img {
    width: 100%;
    /*mix-blend-mode: luminosity;*/
}

.service-details__content .img-box1:hover img {
    transform: scale(1.3) rotate(1deg);
}


.service-details__content .text-box1 {
    position: relative;
    display: block;
	margin-top: 20px;
}

.service-details__content .text-box1 h1 {
    color: #003060;
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 19px;
}

.service-details__content h2 {
    color: #003060;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 19px;
}

.service-details__content .text-box1 p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    color: #4c4d50;
    font-weight: 400;
}

.service-details__content .text-box1 p+p {
    margin-top: 19px;
}



.service-details__content .text-box2 {
    position: relative;
    display: block;
    margin-top: 48px;
    margin-bottom: 50px;
    background: var(--thm-base);
    padding: 37px 60px 36px;
}

.service-details__content .text-box2 .text-box2-single {
    position: relative;
    display: block;
}

.service-details__content .text-box2 .text-box2-single p {
    color: #ffffff;
    font-size: 18px;
    line-height: 40px;
    font-weight: 700;
    margin: 0;
}




.service-details__content .text-box3 {
    position: relative;
    display: block;
}

.service-details__content .text-box3 p {
    font-size: 18px;
    line-height: 34px;
    margin: 0;
}



.service-details__content .text-box4 {
    position: relative;
    display: block;
}

.service-details__content .text-box4 .img-box {
    position: relative;
    display: block;
    background-color: var(--thm-bg);
}

.service-details__content .text-box4 .img-box img {
    width: 100%;
}



.service-details__content .text-box4 .content-box {
    position: relative;
    display: block;
    margin-top: -8px;
}

.service-details__content .text-box4 .content-box h2 {
    color: #003060;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 15px;
}

.service-details__content .text-box4 .content-box h2.big {
    color: ##003060;
    font-size: 34px;
    line-height: 44px;
}

.service-details__content .text-box4 .content-box p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    color: #4c4d50;
    font-weight: 400;
}

.service-details__content .text-box4 .content-box ul {
    position: relative;
    display: block;
    margin-top: 33px;
}

.service-details__content .text-box4 .content-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.service-details__content .text-box4 .content-box ul li:last-child {
    margin-bottom: 0;
}

.service-details__content .text-box4 .content-box ul li span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    top: 0px;
    padding-right: 7px;
}



.service-details-faq-content {
    position: relative;
    display: block;
    margin-top: 60px;
}

/*** 
=============================================
    Footer area style
=============================================
***/
.bottom-parallax {
    position: relative;
    height: 595px;
    opacity: 0;
    z-index: -999;
}

.bottom-parallax .footer-area {
    position: fixed;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 500px;
}

.parallax-visible .bottom-parallax {
    opacity: 1;
    z-index: 1;
}

.footer-area {
    position: relative;
    display: block;
    background: var(--thm-bg);
    z-index: 10;
}


.footer {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 60px;
    z-index: 9;
}

.single-footer-widget {
    position: relative;
    display: block;
}

.single-footer-widget .title {
    position: relative;
    display: block;
    margin-top: -5px;
}

.single-footer-widget .title h3 {
    color: #bccbe6;
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
}


.single-footer-widget--company-info {
    max-width: 370px;
    background: #17293c;
    padding: 30px 43px 5px 30px;
    border-radius: 12px;
}

.single-footer-widget--company-info .title h3 {
    font-size: 26px;
    line-height: 28px;
    color: #bccbe6;
}

.single-footer-widget .our-company-info {
    position: relative;
    display: block;
}

.single-footer-widget .our-company-info .text-box {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 21px;
}

.single-footer-widget .our-company-info h2 span, .single-footer-widget .our-company-info h3 span {
	margin-right: 5px;
}

.single-footer-widget .our-company-info .text-box p {
    color: #ced4e1;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}

.single-footer-widget .our-company-info h2 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 13px;
}

.single-footer-widget .our-company-info h2 a {
    color: #ced4e1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-footer-widget .our-company-info h2 a:hover {
    color: #fff;
}

.single-footer-widget .our-company-info h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin: 0 0 32px;
}

.single-footer-widget .our-company-info h3 a {
    color: #ced4e1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-footer-widget .our-company-info h3 a:hover {
    color: #fff;
}


.footer-social-link {
    position: relative;
    display: block;
    
}

.footer-social-link ul {
    position: relative;
    display: block;
}

.footer-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.footer-social-link ul li:last-child {
    margin-right: 0;
}

.footer-social-link ul li a {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    background: #ffffff;
    color: var(--thm-black);
    font-size: 16px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-link ul li a i::before {
    position: relative;
    display: inline-block;
    line-height: 50px;
}

.footer-social-link ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    content: "";
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.footer-social-link ul li:hover a:before {
    transform: scaleX(1.0);
}

.footer-social-link ul li:hover a {
    color: #ffffff;
}




.footer-widget-links {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding-top: 27px;
}

.footer-widget-links ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-widget-links ul.right {
    margin-left: 70px;
}

.footer-widget-links ul li {
    position: relative;
    display: block;
    line-height: 26px;
    margin-bottom: 14px;
}

.footer-widget-links ul li:last-child {
    margin-bottom: 0;
}

.footer-widget-links ul li a {
    position: relative;
    display: inline-block;
    color: #949cac;
    font-size: 17px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget-links ul li a:hover {
    color: #ffffff;
}

.footer-widget-links ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 300ms linear;
    transition-delay: 0.2s;
    background: #94a9ce;
    z-index: 1;
}

.footer-widget-links ul li a:hover:before {
    transform: perspective(400px) scaleX(1.0);
}



.newsletter-form {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    padding-top: 35px;
}

.newsletter-form input[type="email"] {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #818891;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    height: 70px;
    padding: 0 20px;
    border-radius: 0px;
    text-align: center;
    transition: all 500ms ease;
}

.newsletter-form input::-webkit-input-placeholder {
    color: #818891;
}

.newsletter-form input:-moz-placeholder {
    color: #818891;
}

.newsletter-form input::-moz-placeholder {
    color: #818891;
}

.newsletter-form input:-ms-input-placeholder {
    color: #818891;
}

.newsletter-form button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.newsletter-form input[type="email"]:focus {
    color: var(--thm-base);
}

.newsletter-form input[type="email"]:focus+button,
.newsletter-form button:hover {
    color: #fff;
}




.footer-bottom {
    position: relative;
    display: block;
}

.footer-bottom .bottom-inner {
    /*position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;*/
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 38px 0px 38px;
}

.footer-logo-style1 {
    position: relative;
    display: block;
}

.footer-logo-style1 a {
    position: relative;
    display: inline-block;
}


.footer-bottom .bottom-inner .copyright {
    position: relative;
    display: block;
}

.footer-bottom .bottom-inner .copyright p {
    color: #80868d;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin: 0;
}

.footer-bottom .bottom-inner .copyright p a {
    color: #ced4e1;
    font-weight: 700;
    transition: all 500ms ease;
}

.footer-bottom .bottom-inner .copyright p a:hover {
    color: var(--thm-base);
}

/* Equivalents Finder */
.ef-section {
	padding: 100px 0 75px;
	background: #f1f1f1;
}

.ef-products-list {
	margin-top: 5px;
    border-top: 1px solid #dbdbdb;
    padding: 35px 0 0 0;
}

.ef-products-list .ef-product {
	/*background: #f1f1f1;*/
	/*box-shadow: 0 0 10px rgba(0, 0, 0, .1);*/
	margin-bottom: 25px;
}

.ef-products-list .ef-product .brand-logo {
	text-align: center;
}

.ef-products-list .ef-product .brand-logo img {
	max-width: 140px;
}

.ef-products-list .ef-product .brand-name {
	background: #fff;
	padding: 15px 15px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	text-align: center;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
	font-size: 20px;
    line-height: 24px;
    font-weight: 500;
	color: #454545;
}

.ef-products-list .ef-product .product-name {
	background: #fff;
	padding: 30px 15px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	text-align: center;
	border-bottom: 1px solid #e6e6e6;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
	font-size: 18px;
    line-height: 22px;
    font-weight: 500;
	color: #5c5c5c;
}

.ef-products-list .ef-product.parent_product .brand-name {
	background: #e5b351;
	color: #fff;
	border-top: 1px solid #e5b351;
	border-bottom: 1px solid #e5b351;
	border-left: 1px solid #e5b351;
	border-right: 1px solid #e5b351;
}

.ef-products-list .ef-product.parent_product .product-name {
	background: #0077c1;
	color: #fff;
	border-bottom: 1px solid #0077c1;
	border-left: 1px solid #0077c1;
	border-right: 1px solid #0077c1;
}

.ef-label label {
	color: #454545;
	margin-bottom: 15px;
	font-size: 18px;
    line-height: 22px;
}

.ef-select {
	margin-bottom: 30px;
}

.ef-select select {
	width: 100%;
    padding: 10px 10px!important;
	font-size: 18px;
    line-height: 22px;
	color: #454545;
	background: #fff!important;
	border-radius: 0!important;
}

/* Products */
.prdct-details ul li span {
	white-space: break-spaces!important;
}
.prdct-details h2 {
	font-size: 26px;
	line-height: 32px;
	margin-top: 35px;
	margin-bottom: 6px;
	color: var(--thm-black);
}

.prdct-details h3 {
	font-size: 22px;
	line-height: 28px;
	margin-top: 35px;
	margin-bottom: 6px;
	color: var(--thm-black);
}

.prdct-details h4 {
	font-size: 22px;
	line-height: 28px;
	margin-top: 35px;
	margin-bottom: 6px;
	color: var(--thm-black);
}

.prdct-details h5 {
	font-size: 22px;
	line-height: 28px;
	margin-top: 35px;
	margin-bottom: 6px;
	color: var(--thm-black);
}

.prdct-details h6 {
	font-size: 22px;
	line-height: 28px;
	margin-top: 35px;
	margin-bottom: 6px;
	color: var(--thm-black);
}

.prdct-details ul {
    margin-top: 15px;
    margin-bottom: 25px;
    padding-left: 30px;
}

.prdct-details ul li {
    position: relative;
    padding-left: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #545454;
}

.prdct-details ul li:before {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 0;
    content: "";
    font-size: 24px;
    width: 12px;
    height: 12px;
    background: #e5b351;
}

/* Brands Section */
.brands-section {
	padding: 100px 0 70px;
	background: #f1f1f1;
}

.brands-section .brand-box {
	padding: 20px 20px;
	background: #fff;
   	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	margin: auto;
	width: 200px;
	height: 200px;
    margin-bottom: 30px;
	border-radius: 50%;
	text-align: center;
	padding-top: 50px;
}

.brands-section .brand-box .brand-logo img {
    max-width: 130px;
	margin-bottom: 20px;
}

.brands-section .brand-box .brand-name {
    font-size: 17px;
    line-height: 21px;
    font-weight: 500;
    color: #5c5c5c;
}

.services-section {
	padding: 100px 0 120px 0!important;
}

.services-section .choose-content-box {
    padding-top: 0;
    padding-left: 0;
}

.services-section .choose-content-box .inner-content ul li {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 20px 20px;
	border-radius: 12px;
}

/* Social Media */
.floating-social-icons {
    position: fixed;
    width: 48px;
    margin-top: 260px;
    transition: all 0.3s linear;
    top: 0;
    right: 0;
    z-index: 100;
}

.floating-social-icons li {
    position: relative;
    height: 48px;
    width: 48px;
    margin-bottom: 0;
    margin-left: 0;
}

.floating-social-icons li a {
    display: block;
    line-height: 52px;
    transition: all .3s linear;
    text-decoration: none !important;
    width: 48px;
    height: 48px;
    text-align: center;
	background: #94a9ce;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}

.floating-social-icons li a span {
    font-size: 20px;
	color: #fff;
}

.floating-social-icons li a img {
    width: 26px;
    margin-top: -8px;
}

.floating-social-icons a:hover {
   background: #003060;
}

.c-topbar {
	background: #94a9ce;
	padding: 10px 10px;
	display: none;
}

.c-topbar .topbar-mobile {

}

.c-topbar .topbar-mobile, .c-topbar .topbar-email {
	text-align: center;
	line-height: 28px;
}

.c-topbar .topbar-mobile a, .c-topbar .topbar-email a {
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
}

.c-topbar .topbar-mobile a span, .c-topbar .topbar-email a span {
	margin-right: 5px;
}

.c-service {
	background: #f1f1f1!important;
	padding-bottom: 70px!important;
}

.c-service-box {
	margin-bottom: 30px;
	background: #fff;
}

.c-service-box .c-service-box-img {
	width: 100%;
}

.c-service-box .c-service-box-text {
	padding: 30px 25px 20px 5px;
	font-size: 21px;
    line-height: 35px;
}

.captcha_code_frame {
    border: 1px solid #dee6e7;
    width: 100%;
    height: 70px;
    padding: 10px 10px;
	margin-bottom: -10px;
}

.form_error {
    display: none;
}

.content-box table {
border: 1px solid #ddd; 
}

.certificate-box .top .name h3 {
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 600 !important;
}

.certificate-box .top .img {
    width: 100%;
}

.certificate-box .top .img img {
    max-width: 170px;
    width: 100%;
    display: inline;
}

.txt-link {
	color: #003060;
	font-weight: 600;
}

.parsley-errors-list {
	padding-left: 0;
}

.parsley-errors-list > li {
    list-style: none;
    color: #f36270;
    margin-top: 5px;
    padding-left: 20px;
    position: relative;
	font-size: 18px;
    font-weight: normal;
    padding-left: 23px;
	line-height: 19px;
}

.parsley-errors-list > li:before {
    content: "x";
    position: absolute;
    left: 2px;
    top: -1px;
    background: #f36270;
    width: 14px;
    height: 14px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    line-height: 12px;
    margin-top: 6px;
    margin-right: 10px;
}