/*===================================================================
                          COLOR
 =====================================================================*/
/*                        BLUE      : #0080ff;
                          YELLOW    :f4c613;
*/

/*====================================================================
                          USE FRONT
==================================================================== */

@import url('https://fonts.googleapis.com/css?family=Exo+2:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;800;900&display=swap');

/*====================================================================
                          INCLUDE DEPENDENCE
==================================================================== */

@import url(font-awesome-all.css);
@import url(flaticon.css);
@import url(owl.css);
@import url(bootstrap.css);
@import url(jquery.fancybox.min.css);
@import url(animate.css);
@import url(jquery-ui.css);


/*====================================================================
                          RESET
==================================================================== */


* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}


/*====================================================================
                  GLOBAL SETTINGS
====================================================================*/


body {
    font-size: 16px;
    color: #737879;
    line-height: 30px;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Exo 2', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
}

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

.container-fluid {
    padding: 0px;
}

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

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

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


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

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

input, button, select, textarea {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

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

input {
    transition: all 500ms ease;
}

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

p {
    position: relative;
    font-size: 16px;
    font-family: 'Exo 2', sans-serif;
    line-height: 30px;
    font-weight: 500;
    color: #737879;
    margin-bottom: 10px;
    font-style: normal;
    transition: all 500ms ease;
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0px;
    transition: all 500ms ease;
}


.centred {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}


figure {
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 15px rgba(241, 143, 32, 0.40),
        0 0 0 30px rgba(241, 143, 32, 0.20);
    }
}

/*====================================================================
                  BUTTON
====================================================================*/


.theme-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-family: 'Exo 2', sans-serif;
    padding: 20px 39px;
    background: #F4C330;
    line-height: 26px;
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 300ms ease;
    cursor: pointer;
    text-align: center;
    z-index: 1;
}

.theme-btn i {
    position: relative;
    font-size: 14px;
    margin-left: 11px;
}

.theme-btn:hover {
    background: #0080ff;
    color: #ffffff;
}


.btn-general {
    font-family: 'Raleway', sans-serif;
    border-radius: 28px;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 6px;
    padding: 12px 46px 12px 46px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.btn-home {
    color: #fff;
    border: 1px solid #fff;
}

.btn-home:hover,
.btn-home:focus {
    color: #fff;
    background-color: #F4C330;
    border: 1px solid #F4C330;
}

.btn-yellow {
    color: #fff;
    border: 1px solid #F4C330;
    background-color: #F4C330;
    margin-left: 500px;
    margin-top: 32px;
    margin-bottom: 30px;
}

.btn-yellow:hover,
.btn-yellow:focus {
    color: #fff;
    background-color: #212226;
    border: 1px solid #212226;
}

.btn-white {
    color: #212226;
    border: 1px solid #fff;
    background-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    color: #fff;
    background-color: #212226;
    border: 1px solid #212226;
}

.btn-primary.btn-custom {
    text-align: center;
    padding: 1rem 0;
    width: 150px;
    border-radius: 0;
    border-left: 4px solid #F4C330;
    background: #0180FF;
    -webkit-transition: all 300ms ease-out 150ms;
    -moz-transition: all 300ms ease-out 150ms;
    -o-transition: all 300ms ease-out 150ms;
    transition: all 300ms ease-out 150ms;
}

.btn-primary.btn-custom i {
    margin-left: .25rem;
    -webkit-transition: all 300ms ease-out 150ms;
    -moz-transition: all 300ms ease-out 150ms;
    -o-transition: all 300ms ease-out 150ms;
    transition: all 300ms ease-out 150ms;
}

.btn-primary.btn-custom:hover {
    background: #F4C330;
    border-color: #F4C330;
}

.btn-primary.btn-custom:hover i {
    margin-left: .75rem
}


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

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

.pagination li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-family: 'Playfair Display', sans-serif;
    height: 52px;
    font-weight: 900;
    width: 52px;
    line-height: 52px;
    text-align: center;
    color: #737879;
    background: #f4f3f0;
    transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.active {
    background: #F4C330;
    color: #ffffff;
}

.pagination li:first-child a,
.pagination li:last-child a {
    background: #0080ff;
    color: #ffffff;
}

.sec-pad {
    padding: 113px 0px 120px 0px;
}

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

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

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

.scroll-top:hover {
    background: #0080ff;
}

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

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.sec-title span {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #F4C330;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
    color: #0080ff;
    margin-bottom: 22px;
}

.sec-title .text {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: #737879;
}

.gray-bg {
    background: #f4f3f0;
}


/*====================================================================
                        Home-Page-One
====================================================================*/


/** main-header **/

.main-header {
    /*display: block;*/
    /*overflow: hidden;*/
    position: relative;
    left: 0px;
    top: 0px;
    background: #ffffff;
    z-index: 999;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.second-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    left: 0px;
    top: 0px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    z-index: 0;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

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

.main-header .left-column {
    position: relative;
    padding: 20px 0px 16px 0px;
}

.main-header .left-column:before {
    position: absolute;
    content: '';
    background-color: #ffff;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 500000%;
}

.main-header .left-column .logo-box {
    position: relative;
    margin-bottom: 36px;
}

.main-header .left-column .logo-box img {
    max-width: 240px;
}

.social-style-one {
    position: relative;
}

.social-style-one li {
    position: relative;
    display: inline-block;
    margin-right: 7px;
}

.social-style-one li:last-child {
    margin-right: 0px;
}

.social-style-one li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    height: 52px;
    width: 52px;
    line-height: 52px;
    text-align: center;
    background: #F4C330;
    transition: all 500ms ease;
    border: 2px solid #F4C330;
    border-radius: 10px 20px;
}

.social-style-one li a:hover {
    background: #0080ff;
}

.main-header .right-column .header-top {
    position: relative;
    display: block;
    background: #f4f3f0;
    padding: 30px 0px 30px 0px;
}

.main-header .right-column .header-top:before {
    position: absolute;
    content: '';
    background-color: #027cff;
    left: -30px;
    top: 0px;
    height: 100%;
    width: 5000%;
}

.main-header .right-column .header-top li {
    position: relative;
    display: inline-block;
    padding: 0px 0px 0px 42px;
    margin: 0px 0px 0px 36px;
    top: 0;
}

.main-header .right-column .header-top li .icon-box {
    position: absolute;
    left: 0px;
    top: 8px;
    font-size: 26px;
    color: #fff;
    transition: all 500ms ease;
}

.main-header .right-column .header-top li .text {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 22px;
    font-weight: 550;
    color: #fff;
    margin-bottom: 1px;
}

.main-header .right-column .header-top li span {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/** main-menu **/

.main-header .menu-area {
    position: relative;
    float: left;
    /*padding-left: 32px;*/
}

.main-header .menu-area::before {
    position: absolute;
    content: '';
    background-color: #f1f1f1;
    left: -30px;
    top: 0px;
    height: 100%;
    width: 5000%;
}

.main-header.fixed-header .menu-area::before {
    position: absolute;
    content: '';
    background-color: #fff;
    left: -30px;
    top: 0px;
    height: 100%;
    width: 5000%;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation > li {
    position: relative;
    float: left;
    margin: 0px 7px 0px 32px;
    /*margin: 0px 7px 0px 56px;*/
}

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

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    font-size: 14px;
    font-family: 'Exo 2', sans-serif;
    color: #737879;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    opacity: 1;
    text-transform: uppercase;
    padding: 30px 0px 30px 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
    color: #0080ff;
}

.main-menu .navigation {
    position: relative;
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 250px;
    z-index: 100;
    display: none;
    background: #ffffff;
    border-top: 3px solid #0080ff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    padding: 7px 30px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 500ms ease;
}

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

.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    font-family: 'Exo 2', sans-serif;
    padding: 6px 0px;
    line-height: 24px;
    font-size: 14px;
    color: #737879;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li:hover {
    background: #0080ff;
    border-bottom: 1px solid #0080ff;
}

.main-menu .navigation > li > ul > li:hover a {
    color: #ffffff;
}

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

.main-menu .navigation > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 50px;
    height: 47px;
    line-height: 47px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.navbar-header {
    display: none;
}

/** sub-menu **/

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0%;
    width: 230px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #0080ff;
    -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);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    margin: 0px;
    border-bottom: 1px solid #e5e5e5;
}

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

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 18px;
    line-height: 24px;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #737879 !important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a {
    color: #ffffff !important;
    background: #0080ff;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
    position: absolute;
    content: "\f105";
    font-size: 16px;
    color: #222;
    top: 6px;
    right: -12px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    cursor: pointer;
    transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown:hover > a:after {
    color: #ffffff;
}


/** stricky-header **/

.second-header .main-menu .navigation > li {
    margin: 0px;
}

.second-header .main-menu .navigation > li > a {
    padding: 14px 30px 16px 30px;
}

.second-header .main-menu .navigation > li > a {
    color: #222222;
}

.second-header .main-menu .navigation > li.current > a,
.second-header .main-menu .navigation > li:hover > a {
    background: #0080ff;
    color: #ffffff;
}

.second-header .logo-box {
    position: relative;
    float: left;
    margin-top: 10px;
}

.second-header .menu-area {
    position: relative;
    float: right;
}

.second-header .main-menu .navigation > li > a:before {
    display: none;
}

.main-header.fixed-header .second-header .logo-box {
    margin-bottom: 10px;
}

/*.main-header.fixed-header .second-header .menu-area{
  margin-top: 10px;
}*/

.main-header.fixed-header .second-header .logo-box img {
    width: 190px;
}

.main-header.fixed-header .second-header .main-menu .navigation > li > a {
    padding: 22px 25px 23px 25px;
}


/** slider-style-two **/

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

.main-slider.slider-style-two .slide {
    padding: 191px 0px 201px 0px;
}

.slider-style-two .icon {
    position: absolute;
    left: 50%;
    bottom: 30px;
    margin-left: -25px;
    z-index: 2;
}

.slider-style-two .lower-content {
    position: absolute;
    right: 0px;
    bottom: -5px;
    width: 48%;
    background: #0080ff;
    padding: 44px 50px 56px 50px;
    clip-path: polygon(0% 47%, 100% 0%, 100% 100%, 0% 47%, 0% 0%);
    z-index: 1;
}

.slider-style-two .lower-content .text {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: right;
}

.slider-style-two .lower-content .text i {
    font-size: 30px;
    color: #F4C330;
    margin-left: 10px;
}

.slider-style-two .content {
    max-width: 710px;
}

.main-slider.slider-style-two .slide:after {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 100%;
    height: 150px;
    left: 0px;
    bottom: 0px;
    top: inherit;
    clip-path: polygon(0% 100%, 100% 15%, 100% 100%, 0% 100%, 0% 0%);
}

.main-slider.slider-style-two .slide:before {
    background: rgba(26, 30, 31, 0.0);
}

/** main-slider **/

.main-slider {
    position: relative;
}

.main-slider .quick-quote {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background: #0080ff;
    width: 50%;
    height: 131px;
    z-index: 9;
}

.main-slider .slide {
    position: relative;
    padding: 203px 0px 278px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-slider .slide:before {
    position: absolute;
    content: '';
    background: rgba(26, 30, 31, 0.80);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.main-slider .content {
    position: relative;
    margin-left: 222px;
}

.main-slider .content h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 2px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.main-slider .active h4 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1000ms;
}

.main-slider ul li {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 100;
    margin-bottom: 24px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.main-slider .active ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1300ms;
}

.main-slider .slider-btn .theme-btn {
    padding: 25px 38px 25px 39px;
    border: 2px solid #F4C330;
    border-radius: 10px 50px;
}

.main-slider .slider-btn {
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);

}

.main-slider .active .slider-btn {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 2000ms;
}

.main-slider .text {
    position: relative;
    font-size: 18px;
    font-family: 'Exo 2', sans-serif;
    color: #b2b3ba;
    margin-bottom: 44px;
}

/* slide nav */


.main-slider .owl-dots {
    display: none !important;
}

.main-slider .owl-nav {
    position: absolute;
    left: 0px;
    top: 50%;
    z-index: 1;
    width: 100%;
    margin-top: -20px;
}

.main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"] {
    position: absolute;
    color: rgba(255, 255, 255, 0.10);
}

.main-slider .owl-nav .owl-prev {
    position: absolute;
    left: 40px;
    cursor: pointer;
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    background: rgba(2, 124, 255, .65);
    border: 2px solid rgba(2, 124, 255, .95);
    width: 63px;
    height: 63px;
    line-height: 63px;
    margin: 0px;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next {
    position: absolute;
    right: 40px;
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(2, 124, 255, .65);
    border: 2px solid rgba(2, 124, 255, .65);
    width: 63px;
    height: 63px;
    line-height: 63px;
    margin: 0px;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover {
    background-color: #F4C330;
    border: 2px solid #F4C330;
    color: #ffffff;
}


/** about-section **/

.about-section {
    position: relative;
    padding: 82px 0px 120px 0px;
    border-bottom: 2px solid #f4f3f0;
}

.about-section .inner-box img {
    width: 100%;
    border:none;
    padding: 0;
    border-radius: 0;
    border-radius: 0px 40px 0 40px;
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1);
    border-right: 5px solid #027CFF;
}

.about-section .sec-title {
    margin-bottom: 55px;
}

.about-section .inner-box .image-box.image-one {
    position: relative;
    margin: 0px 20px 0px 130px;
}

.about-section .inner-box .image-box.image-two {
    position: absolute;
    bottom: 0px;
    right: -59px;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(81, 74, 65, 0.20)
}

.about-section .inner-box .image-box.image-two:before {
    position: absolute;
    content: '';
    background: #0080ff;
    width: 100%;
    height: 100%;
    left: -20px;
    top: -20px;
    z-index: -1;
}

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

.about-section .inner-box .inner-content {
    position: absolute;
    left: 0px;
    top: 60px;
    background: #F4C330;
    max-width: 202px;
    padding: 40px 20px 22px 30px;
    z-index: 1;
}

.about-section .inner-box .inner-content i {
    position: relative;
    display: block;
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 33px;
}

.about-section .inner-box .inner-content h2 {
    position: relative;
    font-size: 30px;
    color: #ffffff;
    line-height: 36px;
    font-weight: 700;
}

.about-section .content-box {
    position: relative;
    margin: 0px 0px 0px 0px;
}

.about-section .content-box .list {
    position: relative;
    margin-bottom: 52px;
}

.about-section .content-box .list li {
    position: relative;
    display: block;
    background: #f4f3f0;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #737879;
    padding: 27px 20px 28px 66px;
    margin-bottom: 10px;
}

.about-section .content-box .list li:last-child {
    margin-bottom: 0px;
}

.about-section .content-box .list li:before {
    position: absolute;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    left: 30px;
    top: 27px;
    font-size: 16px;
    color: #0080ff;
    font-weight: 600;
}

.about-section .content-box .text p {
    position: relative;
    display: block;
    margin-bottom: 29px;
    text-align: justify;
}

.about-section .content-box .title h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: #F4C330;
    font-weight: 700;
}


/** services-section **/

.services-section {
    position: relative;
    padding: 113px 0px 116px 0px;
}

.services-section .sec-title {
    margin-bottom: 54px;
}

.services-section .inner-content {
    position: relative;
}

.service-block-one {
    position: relative;
    display: block;
    overflow: hidden;
    background: #F4C330;
    padding: 36px 20px 6px 20px;
}

.services-section .col-xl-3.col-md-6.col-sm-12.column:first-child .service-block-one {
    background: #0080ff;
}

.services-section .col-xl-3.col-md-6.col-sm-12.column:first-child .service-block-one p,
.services-section .col-xl-3.col-md-6.col-sm-12.column:first-child .service-block-one .icon-box {
    color: #fff;
}

.services-section .col-xl-3.col-md-6.col-sm-12.column:first-child .service-block-one h3 {
    color: #F4C330;
}

.service-block-one .icon-box {
    position: relative;
    display: block;
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 28px;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-one .icon-box img{
  width: auto;
  height: 125px;
}

.service-block-one:hover .icon-box,
.service-block-one:hover .link a,
.service-block-one:hover .text,
.service-block-one:hover .text p {
    color: #ffffff;
}

.service-block-one:hover h3 {
    color: #F4C330;
}

.service-block-one .link {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    color: #0080ff;
    margin-bottom: 33px;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-one .link a {
    position: relative;
    display: inline-block;
    color: #2b3132;
}

.service-block-one .text {
    position: relative;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-one .left-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    display: block;
}

.service-block-one .right-layer {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    display: block;
}

.service-block-one .left-layer:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 50%;
    height: 0%;
    display: block;
    background-color: #0080ff;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-one .left-layer:after {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    width: 50%;
    height: 0%;
    display: block;
    background-color: #0080ff;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-one .right-layer:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 50%;
    height: 0%;
    display: block;
    background-color: #0080ff;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-one .right-layer:after {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    width: 50%;
    height: 0%;
    display: block;
    background-color: #0080ff;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-one:hover .right-layer:after,
.service-block-one:hover .right-layer:before,
.service-block-one:hover .left-layer:after,
.service-block-one:hover .left-layer:before {
    height: 100%
}

.services-section .lower-text {
    position: relative;
    display: block;
    font-size: 18px;
}

.services-section .lower-text a {
    color: #F4C330;
    border-bottom: 1px solid #F4C330;
}

.services-section .lower-text a:hover {
    color: #0080ff;
    border-bottom: 1px solid #0080ff;
}

/** our-product **/

.our-product {
    position: relative;
    padding: 111px 0px 116px 0px;
}

.our-product .sec-title {
    margin-bottom: 94px;
}

.product-block-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 62px 30px 41px 303px;
    margin-bottom: 70px;
    transition: all 500ms ease;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.05);
}

.product-block-one:hover {
    background: #0080ff;
}

.product-block-one .image-box {
    position: absolute;
    left: 50px;
    top: -40px;
    width: 203px;
    height: 303px;
}

.product-block-one .image-box img {
    width: 100%;
    transition: all 500ms ease;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    border: none;
}

.product-block-one:hover .image-box img {
    transform: scale(1.03);
}

.product-block-one .content-box .icon-box {
    position: relative;
    display: block;
    font-size: 56px;
    color: #F4C330;
    margin-bottom: 34px;
    transition: all 500ms ease;
}

.product-block-one:hover .content-box .icon-box,
.product-block-one:hover .content-box span,
.product-block-one:hover .content-box h3 a,
.product-block-one:hover .content-box .link a {
    color: #ffffff;
}

.product-block-one .content-box span {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 13px;
    height: 32px;
    transition: all 500ms ease;
}

.product-block-one .content-box h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 29px;
    font-family: 'Exo 2', sans-serif;
    color: #2b3132;
    margin-bottom: 15px;
    transition: all 500ms ease;
}

.product-block-one .content-box h3 a {
    position: relative;
    display: inline-block;
    color: #2b3132;
}

.product-block-one .content-box .link a {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    color: #0080ff;
    letter-spacing: 2px;
    transition: all 500ms ease;
    text-transform: uppercase;
}

.product-block-one .content-box h3 a:hover,
.product-block-one .content-box .link a:hover {
    text-decoration: underline;
}

.our-product .lower-text {
    position: relative;
    display: block;
    font-size: 18px;
}

.our-product .lower-text a {
    color: #F4C330;
    border-bottom: 1px solid #F4C330;
}

.our-product .lower-text a:hover {
    color: #0080ff;
    border-bottom: 1px solid #0080ff;
}

.our-product .inner-content {
    position: relative;
    /*border-bottom: 1px solid #e0dfdd;*/
    /*margin-bottom: 31px;*/
}


/** testimonial-section **/

.testimonial-section {
    position: relative;
    padding: 110px 0px 112px 0px;
    border-bottom: 1px solid #f4f3f0;
}

.testimonial-section .client-thumb-outer {
    position: relative;
    max-width: 285px;
    margin: 0 auto;
    margin-bottom: 37px;
    overflow: hidden;
}

.testimonial-section .client-thumb-outer .client-thumbs-carousel {
    position: relative;
    max-width: 100px;
    margin: 0 auto;
}

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

.testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item {
    position: relative;
    border-radius: 50%;
    -o-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
}

.testimonial-section .client-thumb-outer .thumb-item .thumb-box {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 50%;
}

.testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item img {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.5;
    border-radius: 50%;
}

.testimonial-section .owl-item.active .thumb-item .thumb-box img {
    opacity: 1;
}

.testimonial-section .owl-item.active .thumb-content {
    opacity: 1;
}

.testimonial-section .owl-nav {
    display: none;
}

.testimonial-content .text h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 50px;
    color: #2b3132;
    margin-bottom: 34px;
}

.testimonial-content .rating li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #F4C330;
}

.testimonial-content .rating {
    position: relative;
    margin-bottom: 29px;
}

.testimonial-content .author {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #0080ff;
}

.testimonial-content .author span {
    font-size: 14px;
    font-weight: 700;
    color: #737879;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/** brand-section **/

.brand-section {
    position: relative;
    display: block;
    padding: 72px 0px;
}

.brand-section .brand-outer {
    position: relative;
    margin: 0 -30px;
}

.brand-section .image-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 0;
}

.brand-section .image-box img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    opacity: 0.6;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.brand-section .slide-item:hover .image-box img {
    opacity: 1;
}

.brand-section .owl-nav.disabled {
    display: none;
}

/** overlay-style **/

.overlay-content {
    position: relative;
    width: 100%;
}

.overlay-content .image-box {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.overlay-content .image-box img {
    position: relative;
    display: block;
    width: 100%;
}

.overlay-content .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: #ffffff;
    text-align: center;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}

.overlay-content .overlay-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background-color: rgba(0, 131, 145, 0.80);
    -moz-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.overlay-content .overlay-inner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 10px 0px;
}

.overlay-content .overlay-inner .content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.overlay-content:hover .overlay-box:before {
    -moz-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
    visibility: visible;
}

.overlay-content:hover .overlay-box:before {
    -moz-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
    visibility: visible;
}

.overlay-content:hover .overlay-box {
    opacity: 1;
}


/** staff-section **/


.team-block-one .overlay-inner .content a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0px;
    color: #ffffff;
}

.team-block-one .lower-content {
    position: relative;
    padding: 21px 0px 0px 0px;
}

.team-block-one .lower-content h4 {
    position: relative;
    display: block;
    font-size: 18px;
    font-family: 'Exo 2', sans-serif;
    color: #2b3132;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 2px;
}

.team-block-one .lower-content h4 a {
    position: relative;
    display: inline-block;
    color: #2b3132;
}

.team-block-one .lower-content h4 a:hover {
    color: #F4C330;
}

.team-block-one .lower-content span {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.social-style-two li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.social-style-two li:last-child {
    margin-right: 0px;
}

.social-style-two li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #737879;
    height: 52px;
    width: 52px;
    line-height: 52px;
    background: #f4f3f0;
    text-align: center;
}

.social-style-two li a:hover {
    background: #F4C330;
    color: #ffffff;
}


/** fact-counter **/

.fact-counter {
    position: relative;
    padding: 90px 0px;
}

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

.counter-block-one:before {
    position: absolute;
    content: '';
    background: #f4f3f0;
    height: 100%;
    width: 2px;
    top: 0px;
    right: -15px;
}

.fact-counter .counter-column:last-child .counter-block-one:before {
    display: none;
}

.counter-block-one .count-outer span {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 55px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2b3132;
    margin-bottom: 13px;
}

.counter-block-one .text {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/** product-section **/

.product-section {
    position: relative;
    padding: 113px 0px 80px 0px;
}

.product-section .sec-title {
    margin-bottom: 85px;
}

.news-block-one .overlay-inner .content a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #F4C330;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background: #ffffff;
}

.news-block-one {
    position: relative;
    background: #ffffff;
    transition: all 500ms ease;
}

.news-block-one .date {
    position: absolute;
    left: 30px;
    top: -30px;
    height: 64px;
    width: 70px;
    line-height: 19px;
    background: #F4C330;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Playfair Display', sans-serif;
    padding: 9px 0px 6px 0px;
    z-index: 1;
}

.news-block-one .lower-content {
    position: relative;
    padding: 22px 0px 30px 0px;
}

.news-block-one .lower-content h3 {
    position: relative;
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    color: #2b3132;
    margin-bottom: 31px;
}

.news-block-one .lower-content h3 a {
    position: relative;
    display: inline-block;
    color: #2b3132;
}

.news-block-one .lower-content h3 a:hover {
    text-decoration: underline;
}

.news-block-one .lower-content .text {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-block-one .lower-content .link a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #0080ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-block-one .lower-content .link a:hover {
    text-decoration: underline;
}

/** main-footer **/

.main-footer {
    position: relative;
    background: #0180ff;
}

/*.main-footer:before{
  position: absolute;
  content: '';
  background: url(../images/background/footer-shap.png);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-position: center;
}*/

.main-footer .footer-top {
    position: relative;
    padding: 57px 0px 58px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-footer .footer-top .logo-outer {
    position: relative;
    margin-top: 10px;
    float: left;
}

.main-footer .footer-logo a {
    color: #fff;
    border: 2px solid #F4C330;
    padding: 16px;
    border-radius: 10px 20px;
    background-color: #F4C330;
    font-size: 16px;
}

.main-footer .footer-logo a:hover {
    background-color: transparent;
}

.main-footer .footer-top .footer-social {
    position: relative;
    float: right;
}

.main-footer .main-footer-content {
    position: relative;
    padding: 93px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-footer .main-footer-content .about-widget {
    position: relative;
    margin-right: 30px;
    margin-top: -3px;
}

.main-footer .main-footer-content .about-widget .text {
    color: #b6bfc1;
    margin-bottom: 32px;
}

.main-footer .main-footer-content .about-widget .footer-form .form-group {
    position: relative;
    margin: 0px;
}

.main-footer .main-footer-content .about-widget .footer-form .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #737879;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Exo 2', sans-serif;
    padding: 15px 75px 15px 20px;
    transition: all 500ms ease;
}

.main-footer .main-footer-content .about-widget .footer-form .form-group button {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 65px;
    line-height: 65px;
    width: 60px;
    text-align: center;
    background: #F4C330;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 500ms ease;
}

.main-footer .main-footer-content .about-widget .footer-form .form-group input:focus {
    border: 1px solid #F4C330;
}

.main-footer .main-footer-content .widget-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-footer .main-footer-content .footer-widget .link-list li {
    position: relative;
    color: #fff;
    line-height: 25px;
    display: block;

}


.main-footer .main-footer-content .footer-widget .link-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    color: #b6bfc1;
}

.main-footer .main-footer-content .footer-widget .link-list li a:hover {
    color: #F4C330;
}

.main-footer .main-footer-content .explore-widget,
.main-footer .main-footer-content .product-widget {
  position: relative;
  margin-left: 0;
  width: 33%;
  padding-right: 15px;
  display: block;
  float: left;
  margin-bottom: 32px;
}

.main-footer .main-footer-content .info-widget .single-info {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .main-footer-content .info-widget .single-info span {
    position: relative;
    display: block;
    font-weight: 600;
    color: #F4C330;
}

.main-footer .main-footer-content .info-widget .single-info .text {
    position: relative;
    display: block;
    font-weight: 600;
    color: #ffffff;
}

.main-footer .footer-bottom {
    position: relative;
    padding: 41px 0px 44px 0px;
}

.main-footer .footer-bottom .copyright {
    position: relative;
    display: block;
    font-weight: 600;
    color: #fff;
}

.main-footer .footer-bottom .copyright a {
    font-weight: 600;
    color: #F4C330;
}

.main-footer .footer-bottom .copyright a:hover {
    color: #F4C330;
}


/***

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

***/

/** header-style-two **/

.header-style-two .top-left {
    position: relative;
    float: left;
}

.header-style-two .top-right {
    position: relative;
    float: right;
    padding: 30px 30px 0px 0px;
}

.header-style-two .top-left .logo-outer {
    position: relative;
    float: left;
}

.header-style-two .top-left .logo-outer .logo-box {
    position: relative;
    display: block;
    background: #2b3132;
    padding: 38px 60px 42px 60px;
    text-align: center;
}

.header-style-two .top-left .social-area {
    position: relative;
    float: left;
    padding: 38px 0px 37px 0px;
    margin-left: 40px;
    margin-right: 39px;
}

.header-style-two .top-left .menu-area {
    position: relative;
    float: left;
    padding-top: 24px;
}

.header-style-two .main-menu .navigation > li > a {
    padding: 27px 0px 50px 0px;
}

.header-style-two .second-header .main-menu .navigation > li > a {
    padding: 14px 30px 16px 30px;
}


/** intro-section **/

.intro-section {
    position: relative;
}

.intro-section .inner-content {
    position: relative;
    background: #ffffff;
    margin-top: -61px;
    box-shadow: 0 10px 40px rgba(81, 74, 65, 0.20);
    z-index: 1;
}

.intro-section .left-content {
    position: relative;
    float: left;
    max-width: 926px;
    width: 100%;
    padding: 33px 40px 31px 40px;
}

.intro-section .right-content {
    position: relative;
    float: right;
    max-width: 244px;
    width: 100%;
}

.intro-section .right-content button {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    background: #0080ff;
    padding: 46px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
}

.intro-section .right-content button:hover {
    background: #F4C330;
}

.intro-section .right-content button i {
    position: relative;
    font-size: 14px;
    margin-left: 11px;
}

.intro-section .left-content .input-box label {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #0080ff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.intro-section .left-content .form-group {
    position: relative;
    margin-bottom: 0px;
}

.intro-section .left-content .form-group:before {
    position: absolute;
    content: '';
    background: #f4f3f0;
    width: 2px;
    height: 122px;
    top: -33px;
    right: -55px;
}

.intro-section .left-content .form-group:last-child:before {
    display: none;
}

.intro-section .left-content .input-box input[type='text'],
.intro-section .left-content .input-box .ui-selectmenu-button.ui-button {
    position: relative;
    display: block;
    width: 100%;
    height: 34px;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: #2b3132;
    font-family: 'Exo 2', sans-serif;
    padding: 5px 0px;
}

.intro-section .left-content ::-webkit-input-placeholder {
    color: #2b3132;
}

.intro-section .left-content ::-moz-placeholder {
    color: #2b3132;
}

.intro-section .left-content :-ms-input-placeholder {
    color: #2b3132;
}

.intro-section .left-content :-moz-placeholder {
    color: #2b3132;
}


/** our-company **/

.our-company {
    position: relative;
    border-bottom: 2px solid #f4f3f0;
}

.our-company .sec-title {
    margin-bottom: 54px;
}

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

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

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

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

.tabs-box .button-box {
    position: relative;
    margin: 0px -15px;
}

.tabs-box .tab-btns {
    position: relative;
    margin-bottom: 60px;
}

.tabs-box .tab-btns .tab-btn {
    position: relative;
    display: block;
    border: 2px solid #f4f3f0;
    padding: 60px 45px 44px 45px;
    min-height: 224px;
    cursor: pointer;
    transition: all 500ms ease;
}

.tabs-box .tab-btns .tab-btn.active-btn {
    background: #0080ff;
    border: 2px solid #0080ff;
}

.tabs-box .tab-btns .tab-btn .icon-box {
    position: relative;
    display: block;
    font-size: 56px;
    color: #F4C330;
    margin-bottom: 38px;
    transition: all 500ms ease;
}

.tabs-box .tab-btns .tab-btn h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Exo 2', sans-serif;
    color: #2b3132;
    font-weight: 500;
    transition: all 500ms ease;
}

.tabs-box .tab-btns .tab-btn.active-btn .icon-box,
.tabs-box .tab-btns .tab-btn.active-btn h5 {
    color: #ffffff;
}

.tabs-box .tabs-content .image-inner .image-box {
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(81, 74, 65, 0.20);
}

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

.tabs-box .tabs-content .image-inner .lower-content {
    position: relative;
    display: block;
    background: #2b3132;
    padding: 41px 30px 38px 184px;
}

.tabs-box .tabs-content .image-inner .lower-content .icon-box {
    position: absolute;
    left: 103px;
    top: 54px;
    font-size: 50px;
    color: #F4C330;
}

.tabs-box .tabs-content .image-inner .lower-content h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 34px;
    color: #ffffff;
    font-weight: 400;
}

.tabs-box .tabs-content .image-inner .lower-content span {
    position: relative;
    display: block;
    font-size: 12px;
    color: #b6bfc1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tabs-box .tabs-content .content-box {
    position: relative;
    margin-left: 70px;
    margin-top: -7px;
}

.tabs-box .tabs-content .content-box h2.tab-title {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 900;
    color: #2b3132;
    margin-bottom: 31px;
}

.tabs-box .tabs-content .content-box .text p {
    margin-bottom: 30px;
}

.tabs-box .tabs-content .content-box .insurance-list {
    position: relative;
    display: block;
    margin-bottom: 29px;
}

.tabs-box .tabs-content .content-box .insurance-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding: 0px 0px 0px 29px;
}

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

.tabs-box .tabs-content .content-box .insurance-list li:before {
    position: absolute;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    left: 0px;
    top: 2px;
    font-size: 14px;
    color: #0080ff;
    font-weight: 600;
}

.tabs-box .tabs-content .content-box h2.lower-text {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #F4C330;
}


/** assistance-section **/

.assistance-section {
    position: relative;
    background: #ffffff;
    padding-top: 120px;
}

.assistance-section .inner-content {
    position: relative;
    background: #0080ff;
    padding-bottom: 120px;
}

.assistance-section .image-box {
    position: relative;
    float: right;
}

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

.assistance-section .content-box {
    position: relative;
    padding: 111px 0px 0px 115px;
}

.assistance-section .content-box h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 48px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 39px;
}

.assistance-section .content-box .theme-btn {
    padding: 25px 39px;
}

.assistance-section .content-box .theme-btn:hover {
    background: #ffffff;
    color: #F4C330;
}


/** video-section **/

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

.video-section:before {
    position: absolute;
    content: '';
    background: rgba(26, 30, 31, 0.70);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.video-section .video-gallery {
    position: relative;
    margin-bottom: 52px;
}

.video-section .video-gallery .overlay-link i {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
    width: 99px;
    height: 99px;
    line-height: 99px;
    text-align: center;
    background: #F4C330;
    border-radius: 50%;
    transition: 1s ease;
    -webkit-animation: pulse 3s infinite;
    -o-animation: pulse 3s infinite;
    animation: pulse 3s infinite;
}

.video-section .content-box .text {
    position: relative;
    display: block;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.video-section .content-box h1 {
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 72px;
    color: #ffffff;
    font-weight: 900;
}


/* =========================================
                Pricing
============================================ */

.pricing-table {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 32px 21px;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.pricing-table:hover {
    background: #F4C330;
}

.pricing-table .type h4 {
    color: #F4C330;
    font-size: 24px;
    margin-bottom: 25px;
}

.pricing-table .price {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
}

.pricing-table .price h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 100;
    margin: 0 0 0 24px;
    position: relative;
}

.pricing-table .price h2 span {
    font-family: "Raleway", sans-serif;
}

.pricing-table .price h2 span.dollar {
    font-size: 18px;
    font-weight: 300;
    position: absolute;
    left: -20px;
    top: 5px;
}

.pricing-table .price h2 span.month {
    font-size: 11px;
    font-weight: 400;
    position: absolute;
    left: 5px;
    bottom: -12px;
}

.pricing-table .price p {
    line-height: normal;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.pricing-table ul.package {
    list-style: none;
    padding: 20px 0;
}

.pricing-table ul.package li {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
}

.pricing-table ul.package li i {
    width: 24px;
}

.pricing-table .btn-yellow,
.pricing-table.black .btn-white {
    width: 96%;
}

.pricing-table:hover h4,
.pricing-table:hover h2,
.pricing-table:hover p,
.pricing-table:hover ul.package {
    color: #fff;
}

.pricing-table:hover .btn-yellow {
    background: #fff;
    color: #212226;
    border: 1px solid #fff;
}

.pricing-table .btn-yellow:hover,
.pricing-table .btn-yellow:focus {
    background: #212226;
    color: #fff;
    border: 1px solid #212226;
}


/* Black Pricing Table */

.pricing-table.black {
    background: #212226;
    color: #fff;
}

.pricing-table.black .type h4 {
    color: #fff;
}

.pricing-table.black:hover {
    background: #F4C330;
}

/** fluid-section-two **/

.fluid-section-two .left-column .content-box {
    padding: 183px 125px 100px 30px;
}

.fluid-section .right-column .google-map-area {
    position: relative;
    width: 100%;
}

.fluid-section .right-column .google-map-area #contact-google-map {
    position: relative;
    width: 100%;
    height: 511px;
}


/***

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

***/

/** page-title **/

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

.page-title:before {
    position: absolute;
    content: '';
    background: rgba(26, 30, 31, 0.60);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.page-title .bread-crumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 13px;
    padding-right: 25px;
}

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

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

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

.page-title .bread-crumb li:before {
    position: absolute;
    content: '-';
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    top: 0px;
    right: 0px;
}

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

.page-title .bread-crumb {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.page-title .content-box .title h2 {
    position: relative;
    display: inline-block;
    font-size: 70px;
    line-height: 78px;
    color: #ffffff;
    font-weight: 900;
}

.particles-pattern {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}


/** featured-section **/

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

.single-featured-content .image-box {
    position: relative;
    overflow: hidden;
}

.single-featured-content .image-box img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.single-featured-content:hover .image-box img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.single-featured-content .lower-content {
    position: relative;
    display: block;
    margin-top: -30px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 22px 10px;
    background: #ffffff;
}

.single-featured-content .lower-content h3 {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 35px;
    font-weight: 900;
    color: #2b3132;
    margin-bottom: 32px;
}

.single-featured-content .lower-content h3 a {
    position: relative;
    display: inline-block;
    color: #2b3132;
}

.single-featured-content .lower-content .text {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-featured-content .lower-content .link a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    color: #0080ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.single-featured-content .lower-content .link a:hover,
.single-featured-content .lower-content h3 a:hover {
    color: #F4C330;
    text-decoration: underline;
}


/** insurane-coverage **/

.insurane-coverage {
    position: relative;
    width: 100%;
    padding: 120px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.insurane-coverage:before {
    position: absolute;
    content: '';
    background: rgba(26, 30, 31, 0.60);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.insurane-coverage .inner-content {
    position: relative;
    display: block;
    max-width: 470px;
    width: 100%;
}

.insurane-coverage .inner-content .content-box {
    position: relative;
    display: block;
    width: 100%;
    background: #ffffff;
    padding: 51px 30px 55px 60px;
}

.insurane-coverage .inner-content .content-box h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 36px;
    color: #2b3132;
    font-weight: 900;
    margin-bottom: 51px;
}

.insurane-coverage .inner-content .content-box .list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding: 0px 0px 0px 35px;
}

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

.insurane-coverage .inner-content .content-box .list li:before {
    position: absolute;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    left: 0px;
    top: 1px;
    font-size: 14px;
    color: #0080ff;
    font-weight: 600;
}


/***

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

***/


.error-section {
    position: relative;
    padding: 80px 0px 147px 0px;
}

.error-section .content-box h1 {
    position: relative;
    display: block;
    font-size: 200px;
    line-height: 200px;
    color: #0080ff;
    font-weight: 900;
    margin-bottom: 50px;
}

.error-section .content-box h2 {
    position: relative;
    display: block;
    font-size: 44px;
    line-height: 52px;
    color: #2b3132;
    font-weight: 600;
    margin-bottom: 21px;
}

.error-section .text a {
    color: #F4C330;
}

.error-section .text a:hover {
    text-decoration: underline;
}


/***

====================================================================
                        service-Page
====================================================================

***/

/** auto-insurance **/

.auto-insurance {
    position: relative;
    padding: 120px 0px;
}

.auto-insurance .image-inner {
    position: relative;
    margin-bottom: 53px;
}

.auto-insurance .image-inner .image-box img {
    width: 100%;
}

.auto-insurance .content-inner .text {
    position: relative;
    margin-left: 50px;
    margin-top: -3px;
}

.auto-insurance .content-inner .text p {
    margin-bottom: 0px;
}

.auto-insurance .sec-title h2 {
    margin-bottom: 0px;
}


/** car-insurance **/

.car-insurance {
    padding: 113px 0px 60px 0px;
}

.car-insurance .sec-title {
    margin-bottom: 89px;
}

.car-insurance .inner-content .single-item {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 86px 30px 53px 60px;
    margin-bottom: 60px;
    transition: all 500ms ease;
}

.car-insurance .inner-content .single-item:hover {
    background: #0080ff;
}

.car-insurance .inner-content .single-item .number {
    position: absolute;
    left: 60px;
    top: -30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #F4C330;
    border-radius: 50%;
    font-size: 18px;
    font-family: 'Playfair Display', sans-serif;
    color: #ffffff;
    font-weight: 900;
    transition: all 500ms ease;
}

.car-insurance .inner-content .single-item:hover .number {
    background: #ffffff;
    color: #0080ff;
}

.car-insurance .inner-content .single-item h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-family: 'Exo 2', sans-serif;
    color: #2b3132;
    font-weight: 500;
    margin-bottom: 33px;
    transition: all 500ms ease;
}

.car-insurance .inner-content .single-item h3 a {
    position: relative;
    display: inline-block;
    color: #2b3132;
}

.car-insurance .inner-content .single-item h3 a:hover {
    text-decoration: underline;
}

.car-insurance .inner-content .single-item .text {
    position: relative;
    transition: all 500ms ease;
}

.car-insurance .inner-content .single-item:hover h3 a,
.car-insurance .inner-content .single-item:hover h3,
.car-insurance .inner-content .single-item:hover .text {
    color: #ffffff;
}

.assistance-style-two {
    padding-bottom: 120px;
    border-bottom: 2px solid #f4f3f0;
}

/** single-service **/

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

.single-service .service-sidebar-content {
    position: relative;
    background: #f4f3f0;
    padding: 30px 30px 40px 30px;
}

.single-service .service-sidebar-content .broucher-widget a {
    position: relative;
    color: #F4C330;
    font-size: 14px;
    font-weight: 700;
    padding: 20px 20px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    border: 3px solid #F4C330;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.single-service .service-sidebar-content .broucher-widget a span {
    color: #84858a;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.single-service .service-sidebar-content .broucher-widget a:hover {
    color: #ffffff;
    background-color: #F4C330;
}

.single-service .service-sidebar-content .broucher-widget a:hover span {
    color: #ffffff;
}

.single-service .service-sidebar-content .broucher-widget a:last-child {
    margin-bottom: 0px;
}

.single-service .service-details-content {
    position: relative;
    margin-left: 30px;
}

.single-service .service-details-content .title-box span {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0080ff;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.single-service .service-details-content .title-box h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 50px;
    font-weight: 900;
    color: #2b3132;
    margin-bottom: 42px;
}

.single-service .service-details-content .image-box {
    position: relative;
    margin-bottom: 25px;
}

.single-service .service-details-content .image-box img {
    width: 100%;
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.single-service .service-details-content .content-style-one {
    padding-bottom: 44px;
}

.single-service .service-details-content .content-style-two h4 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #2b3132;
    font-weight: 900;
    margin-bottom: 20px;
}

.single-service .service-details-content .content-style-two .text {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.single-service .service-details-content .content-style-two .list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding: 0px 0px 0px 25px;
}

.single-service .service-details-content .content-style-two .list li:last-child {
    margin-bottom: 0px;
}

.single-service .service-details-content .content-style-two .list li:before {
    position: absolute;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    left: 0px;
    top: 1px;
    font-size: 14px;
    color: #0080ff;
    font-weight: 600;
}

.single-service .service-details-content .content-style-two .image-box {
    margin-bottom: 0px;
}

.single-service .service-details-content .content-style-two {
    padding-bottom: 50px;
}

.single-service .service-details-content .content-style-two ul, 
.tabs-box .tabs-content .content-box ul{
  margin-left: 40px;
}

.single-service .service-details-content .content-style-two ul li, 
.tabs-box .tabs-content .content-box ul li{
  list-style: square;
}

.accordion-box {
    position: relative;
    box-shadow: 0px 5px 12px rgba(24, 35, 69, 0.10)
}

.accordion-box .block {
    position: relative;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #2b3132;
    cursor: pointer;
    margin-bottom: 0px;
    padding: 21px 60px 18px 30px;
    overflow: hidden;
    background: #ffffff;
    z-index: 1;
    border-bottom: 1px solid #e5e9f2;
    transition: all 500ms ease;
}

.accordion-box .block:last-child .acc-btn {
    border-bottom: none;
}

.accordion-box .block .acc-btn.active {
    border-bottom: 0;
    background: #F4C330;
    color: #ffffff;
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
}

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

.accordion-box .block .content {
    position: relative;
    font-size: 14px;
    color: #9fa2a6;
    padding: 18px 45px 17px 30px;
    min-height: 115px;
    border-bottom: 1px solid #e5e9f2;
}

.accordion-box .block .content .text {
    position: relative;
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 0px;
    right: 30px;
    line-height: 65px;
}

.accordion-box .block .acc-btn.active .icon-outer .icon:before {
    position: relative;
    font-family: 'Font Awesome 5 Free';
    font-size: 12px;
    color: #ffffff;
    margin: 0px;
    content: "\f068";
    font-weight: 900;
}

.accordion-box .block .acc-btn .icon-outer .icon:before {
    position: relative;
    font-size: 12px;
    font-weight: 900;
    color: #2b3132;
    margin: 0px;
}


/***

====================================================================
                        Benefits-Page
====================================================================

***/


/** discover-section **/

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

.discover-section .image-content {
    position: relative;
    margin-right: -30px;
}

.discover-section .image-content .image-box {
    position: relative;
    margin-bottom: 30px;
}

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

.discover-section .image-content .lower-content {
    position: relative;
    display: block;
    background: #0080ff;
    text-align: center;
    padding: 26px 15px 31px 15px;
}

.discover-section .image-content .lower-content h3 {
    position: relative;
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 900;
}

.discover-section .content-box {
    position: relative;
    display: block;
    margin-left: 30px;
    background: #f4f3f0;
    padding: 93px 130px 91px 100px;
}

.discover-section .content-box .sec-title {
    margin-bottom: 40px;
}

.discover-section .content-box .sec-title h2 {
    margin-bottom: 0px;
}

.discover-section .content-box .middle-content {
    position: relative;
    padding: 0px 0px 0px 81px;
    margin-bottom: 32px;
}

.discover-section .content-box .middle-content .icon-box {
    position: absolute;
    left: 0px;
    top: 20px;
    font-size: 60px;
    color: #F4C330;
}

.discover-section .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
}

.chooseus-style-two .inner-content {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}


/***

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

***/


/** blog-classic-section **/

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

.news-block-two {
    position: relative;
    margin-bottom: 50px;
}

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

.news-block-two .image-box img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block-two:hover .image-box img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.news-block-two .lower-content {
    position: relative;
    padding: 22px 0px 0px 0px;
}

.news-block-two .lower-content .post-meta {
    position: relative;
    line-height: 24px;
    margin-bottom: 1px;
}

.news-block-two .lower-content .post-meta li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #F4C330;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-right: 27px;
}

.news-block-two .lower-content .post-meta li:last-child {
    margin-right: 0px;
}

.news-block-two .lower-content .post-meta li:before {
    position: absolute;
    content: '-';
    font-size: 16px;
    font-weight: 700;
    color: #F4C330;
    top: -1px;
    right: -18px;
}

.news-block-two .lower-content .post-meta li:last-child:before {
    display: none;
}

.news-block-two .lower-content h3 {
    position: relative;
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: #2b3132;
    margin-bottom: 31px;
}

.news-block-two .lower-content h3 a {
    position: relative;
    display: inline-block;
    color: #2b3132;
}

.news-block-two .lower-content h3 a:hover {
    text-decoration: underline;
}

.news-block-two .lower-content .text p {
    margin-bottom: 30px;
}

.news-block-two .lower-content .link a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #0080ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-block-two .lower-content .link a:hover {
    color: #F4C330;
    text-decoration: underline;
}

.blog-classic-section .pagination-outer {
    position: relative;
    display: block;
    border-top: 2px solid #f4f3f0;
    padding-top: 60px;
}

/** sidebar-page-container **/

.sidebar-page-container {
    position: relative;
}

.sidebar-page-container .blog-single-content {
    position: relative;
    margin-right: 30px;
    padding: 120px 0px;
}

.sidebar-page-container .news-block-two:hover .image-box img {
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -o-transform: scale(1.0);
    transform: scale(1.0);
}

.sidebar-page-container .blog-single-content .post-share-option .tags {
    position: relative;
    float: left;
    margin-top: 8px;
}

.sidebar-page-container .blog-single-content .post-share-option .social-links {
    position: relative;
    float: right;
}

.sidebar-page-container .blog-single-content .post-share-option .tags span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #2b3132;
    margin-right: 7px;
}

.sidebar-page-container .blog-single-content .post-share-option .tags a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #0080ff;
}

.sidebar-page-container .blog-single-content .post-share-option .tags a:hover {
    color: #F4C330;
}

.sidebar-page-container .blog-single-content .post-share-option {
    position: relative;
    padding: 40px 0px 40px 0px;
    border-top: 2px solid #f4f3f0;
    border-bottom: 2px solid #f4f3f0;
    margin-bottom: 51px;
}

.sidebar-page-container .blog-single-content .news-block-two {
    margin-bottom: 0px;
}

.sidebar-page-container .blog-single-content .news-block-two .lower-content {
    padding-bottom: 24px;
}

.sidebar-page-container .blog-single-content .author-box {
    position: relative;
    padding: 0px 0px 59px 210px;
    border-bottom: 2px solid #f4f3f0;
    margin-bottom: 50px;
}

.sidebar-page-container .blog-single-content .author-box .author-image {
    position: absolute;
    left: 0px;
    top: 9px;
    width: 170px;
    height: 190px;
}

.sidebar-page-container .blog-single-content .author-box .content-box h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Exo 2', sans-serif;
    color: #2b3132;
    font-weight: 600;
    margin-bottom: 32px;
}

.sidebar-page-container .blog-single-content .author-box .content-box .text {
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.sidebar-page-container .blog-single-content .author-box .content-box a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    color: #F4C330;
    letter-spacing: 2px;
    border-bottom: 1px solid #F4C330;
    text-transform: uppercase;
}

.sidebar-page-container .blog-single-content .author-box .content-box a:hover {
    color: #0080ff;
    border-bottom: 1px solid #0080ff;
}

.sidebar-page-container .blog-single-content .group-title {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 900;
    color: #2b3132;
    margin-bottom: 43px;
}

.sidebar-page-container .blog-single-content .comments-area {
    position: relative;
    margin-bottom: 49px;
}

.sidebar-page-container .blog-single-content .comments-area .comment {
    position: relative;
    padding: 0px 0px 60px 144px;
    border-bottom: 2px solid #f4f3f0;
    margin-bottom: 51px;
}

.sidebar-page-container .blog-single-content .comments-area .comment:last-child {
    margin-bottom: 0px;
}

.sidebar-page-container .blog-single-content .comments-area .comment .author-thumb {
    position: absolute;
    left: 0px;
    top: 8px;
    width: 112px;
    height: 111px;
    border-radius: 50%;
}

.sidebar-page-container .blog-single-content .comments-area .comment .comment-inner .comment-info {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-page-container .blog-single-content .comments-area .comment .comment-inner .comment-info h4 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    color: #2b3132;
    line-height: 30px;
    margin-right: 10px;
}

.sidebar-page-container .blog-single-content .comments-area .comment .comment-inner .comment-info span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #0080ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-page-container .blog-single-content .comments-area .comment .comment-inner .text {
    margin-bottom: 34px;
}

.sidebar-page-container .blog-single-content .comments-area .comment .comment-inner .theme-btn {
    padding: 10px 17px;
}

.sidebar-page-container .blog-single-content .comments-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.sidebar-page-container .blog-single-content .comments-form .form-group.button-box {
    margin-bottom: 0px;
}

.sidebar-page-container .blog-single-content .comments-form .form-group input[type='text'],
.sidebar-page-container .blog-single-content .comments-form .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 77px;
    background: #f4f3f0;
    border: 1px solid #f4f3f0;
    padding: 15px 20px;
    transition: all 500ms ease;
}

.sidebar-page-container .blog-single-content .comments-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 174px;
    background: #f4f3f0;
    border: 1px solid #f4f3f0;
    padding: 15px 20px;
    resize: none;
    transition: all 500ms ease;
}

.sidebar-page-container .blog-single-content .comments-form .form-group input:focus,
.sidebar-page-container .blog-single-content .comments-form .form-group textarea:focus {
    border: 1px solid #F4C330;
}

.sidebar-page-container .blog-single-content .comments-form .form-group .theme-btn {
    padding: 25px 39px;
}

.sidebar-page-container .blog-single-content .comments-form .group-title {
    margin-bottom: 52px;
}

.sidebar-page-container .sidebar-side {
    position: relative;
}

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

.sidebar-page-container .sidebar-side:before {
    position: absolute;
    content: '';
    background-color: #f4f3f0;
    left: 15px;
    top: 0px;
    height: 100%;
    width: 5000%;
}

.sidebar-page-container .sidebar .sidebar-post .post {
    position: relative;
    padding: 6px 0px 9px 90px;
    margin-bottom: 20px;
    min-height: 66px;
}

.sidebar-page-container .sidebar .sidebar-post {
    position: relative;
    margin-bottom: 50px;
}

.sidebar-page-container .sidebar .sidebar-post .post:last-child {
    margin-bottom: 0px;
}

.sidebar-page-container .sidebar .sidebar-post .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 66px;
    width: 70px;
    border: 6px solid #ffffff;
}

.sidebar-page-container .sidebar-title {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    color: #2b3132;
    font-weight: 900;
    margin-bottom: 34px;
}

.sidebar-page-container .sidebar .sidebar-post .post .post-thumb a {
    position: relative;
    display: inline-block;
}

.sidebar-page-container .sidebar .sidebar-post .post:hover .post-thumb a {
    opacity: 0.6;
}

.sidebar-page-container .sidebar .sidebar-post .post .text a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #737879;
    font-family: 'Exo 2', sans-serif;
}

.sidebar-page-container .sidebar .sidebar-post .post .text a:hover {
    text-decoration: underline;
}

.sidebar-page-container .sidebar .form-group {
    position: relative;
    margin-bottom: 43px;
}

.sidebar-page-container .sidebar .form-group input[type='search'],
.sidebar-page-container .sidebar .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    background: #ffffff;
    border: 1px solid #ffffff;
    padding: 15px 70px 15px 20px;
    box-shadow: 0 5px 20px rgba(81, 74, 65, 0.10);
    transition: all 500ms ease;
}

.sidebar-page-container .sidebar .form-group input:focus {
    border: 1px solid #F4C330;
}

.sidebar-page-container .sidebar .form-group button {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 65px;
    line-height: 65px;
    width: 60px;
    text-align: center;
    background: #F4C330;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 500ms ease;
}

.sidebar-categories {
    position: relative;
    margin-bottom: 48px;
}

.sidebar-categories .categories-list li {
    position: relative;
    margin-bottom: 21px;
}

.sidebar-categories .categories-list li:last-child {
    margin-bottom: 0px;
}

.sidebar-categories .categories-list li a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #737879;
}

.sidebar-categories .categories-list li a:hover,
.sidebar-categories .categories-list li.active a {
    text-decoration: underline;
    color: #2b3132;
}

.sidebar-categories .categories-list li a i {
    position: relative;
    float: right;
    color: #7c8182;
    font-size: 16px;
    height: 31px;
    width: 31px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    background: #ffffff;
    transition: all 500ms ease;
}

.sidebar-categories .categories-list li a:hover i,
.sidebar-categories .categories-list li.active a i {
    background: #F4C330;
    color: #ffffff;
}

.sidebar-page-container .sidebar .sidebar-categories .sidebar-title {
    margin-bottom: 24px;
}

.sidebar-page-container .sidebar .sidebar-twitter .comment-box {
    position: relative;
    display: block;
    background: #ffffff;
    line-height: 28px;
    padding: 31px 40px 36px 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(81, 74, 65, 0.10);
}

.sidebar-page-container .sidebar .sidebar-twitter .comment-box:before {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 35px;
    height: 20px;
    left: 39px;
    bottom: -20px;
    clip-path: polygon(25% 0%, 100% 0, 100% 0%, 0% 100%, 0 0);
    box-shadow: 0 5px 20px rgba(81, 74, 65, 0.10);
}

.sidebar-page-container .sidebar .sidebar-twitter .comment-box span {
    color: #0080ff;
}

.sidebar-page-container .sidebar .sidebar-twitter .comment-box a {
    color: #737879;
}

.sidebar-page-container .sidebar .sidebar-twitter .comment-box a:hover {
    color: #F4C330;
}

.sidebar-page-container .sidebar .sidebar-twitter .link-box {
    position: relative;
    margin-left: 18px;
}

.sidebar-page-container .sidebar .sidebar-twitter .link-box li {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: #2b3132;
}

.sidebar-page-container .sidebar .sidebar-twitter .link-box li a {
    color: #F4C330;
    font-size: 20px;
    margin-right: 10px;
}

.sidebar-page-container .sidebar .sidebar-twitter .link-box li a:hover {
    color: #0080ff;
}

.sidebar-page-container .sidebar .sidebar-twitter .link-box li span {
    font-size: 14px;
    color: #737879;
}

.sidebar-page-container .sidebar .sidebar-twitter {
    position: relative;
    margin-bottom: 32px;
}

.sidebar-page-container .sidebar-insurance {
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 128px 40px 133px 40px;
    text-align: center;
    margin-bottom: 42px;
}

.sidebar-page-container .sidebar-insurance:before {
    position: absolute;
    content: '';
    background: rgba(43, 49, 50, 0.70);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.sidebar-page-container .sidebar-insurance h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 36px;
    color: #ffffff;
    font-weight: 900;
    text-decoration: underline;
}

.sidebar-page-container .sidebar-insurance h3 a {
    color: #fff;
}

.sidebar-page-container .sidebar-insurance h3 a:hover {
    color: #F4C330;
}

.sidebar-page-container .sidebar .sidebar-tags .tag-list li {
    position: relative;
    display: inline-block;
    margin-bottom: 4px;
}

.sidebar-page-container .sidebar .sidebar-tags .tag-list li a {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: #737879;
}

.sidebar-page-container .sidebar .sidebar-tags .tag-list li a:hover {
    text-decoration: underline;
    color: #2b3132;
}

.sidebar-page-container .sidebar .sidebar-tags .sidebar-title {
    margin-bottom: 24px;
}

/* =========================================
                Pricing
============================================ */

.pricing-table {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 32px 21px;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    margin-bottom: 19px;
}

.pricing-table:hover {
    background: #F4C330;
}

.pricing-table .type h4 {
    color: #F4C330;
    font-size: 24px;
    margin-bottom: 25px;
}

.pricing-table .price {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
}

.pricing-table .price h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 100;
    margin: 0 0 0 24px;
    position: relative;
}

.pricing-table .price h2 span {
    font-family: "Raleway", sans-serif;
}

.pricing-table .price h2 span.dollar {
    font-size: 18px;
    font-weight: 300;
    position: absolute;
    left: -20px;
    top: 5px;
}

.pricing-table .price h2 span.month {
    font-size: 11px;
    font-weight: 400;
    position: absolute;
    left: 5px;
    bottom: -12px;
}

.pricing-table .price p {
    line-height: normal;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.pricing-table ul.package {
    list-style: none;
    padding: 20px 0;
}

.pricing-table ul.package li {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
}

.pricing-table ul.package li i {
    width: 24px;
}

.pricing-table .btn-yellow,
.pricing-table.black .btn-white {
    width: 96%;
}

.pricing-table:hover h4,
.pricing-table:hover h2,
.pricing-table:hover p,
.pricing-table:hover ul.package {
    color: #fff;
}

.pricing-table:hover .btn-yellow {
    background: #fff;
    color: #212226;
    border: 1px solid #fff;
}

.pricing-table .btn-yellow:hover,
.pricing-table .btn-yellow:focus {
    background: #212226;
    color: #fff;
    border: 1px solid #212226;
}


/* Black Pricing Table */

.pricing-table.black {
    background: #212226;
    color: #fff;
}

.pricing-table.black .type h4 {
    color: #fff;
}

.pricing-table.black:hover {
    background: #F4C330;
}

/***

====================================================================
                        Contact-Page
====================================================================

***/


.contact-section {
    position: relative;
}

.contact-section .inner-content {
    position: relative;
    padding: 112px 105px 120px 0px;
}

.contact-section .inner-content .sec-title h2 {
    margin-bottom: 0px;
}

.contact-section .inner-content .sec-title {
    margin-bottom: 50px;
}

.contact-section .inner-content .info-box {
    padding-bottom: 22px;
}

.contact-section .inner-content .info-box .single-item {
    position: relative;
    margin-bottom: 21px;
}

.contact-section .inner-content .info-box .single-item span {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-section .inner-content .info-box .single-item h3 {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 35px;
    font-weight: 900;
    color: #0080ff;
}

.contact-form-area .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form-area .form-group.contact-btn {
    margin-bottom: 0px;
}

.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area input[type="password"],
.contact-form-area select,
.contact-form-area textarea {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 25px;
    background-color: #f4f3f0;
    border-radius: 0px;
    border: 1px solid #f4f3f0;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.contact-form-area textarea {
    height: 170px;
    resize: none;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus {
    box-shadow: none;
    border: 1px solid #F4C330;
    background: #f4f3f0;
}

.contact-section .map-column {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    padding: 0px;
}

.contact-section .google-map-area {
    position: relative;
}

.contact-section .google-map-area #contact-google-map {
    width: 100%;
    height: 1218px;
}
