/*** 

====================================================================
        Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/*** 

====================================================================
        Color
====================================================================

***/

/* Theme Color */
:root {
    /* #2154cf in decimal RGB */
    --sc: rgb(33, 84, 207);
    /* var(--pc) in decimal RGB */
    --pc: rgb(237, 210, 188);
    /* --pc: rgb(255,156,0); */

    --pc-o: 255, 156, 0;
    --sc-o: 33, 84, 207;

    --bg-color: #a55db3;
    --bg1-color: #f7df03;
    --bg2-color: #3c0b4d;
}

/*** 

====================================================================
        Global Settings
====================================================================

***/

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #777777;
    line-height: 28px;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

.bordered-layout .page-wrapper {
    padding: 0px 50px 0px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--sc);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

button {
    cursor: pointer;
    text-decoration: none;
    outline: none !important;
}


a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.2em;
    font-family: 'Nunito Sans', sans-serif;
}

input,
button,
select,
textarea {
    font-family: 'Nunito Sans', sans-serif;
}

textarea {
    overflow: hidden;
    resize: none;
}

figure {
    margin: 0;
    padding: 0;
}

p,
.text {
    position: relative;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    color: #777777;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}


ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
}

.theme-btn {
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.centered {
    text-align: center !important;
}

/*Btn Style One*/

.btn-style-one {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    padding: 15px 44px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 50px;
    background-color: var(--sc);
    font-family: 'Nunito Sans', sans-serif;
    display: inline-block;

}

.btn-style-one:hover {
    color: #ffffff;
    -webkit-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
}

.btn-style-one:before {
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
    bottom: -1px;
    content: "";
    border-radius: 50px;
    border: 2px solid var(--pc);
    transition: all 300ms ease;
    opacity: 0;
}

.btn-style-one:hover:before {
    opacity: 1;
}



/*Btn Style Two*/

.btn-style-two {
    position: relative;
    font-size: 18px;
    line-height: 20px;
    color: #222222;
    padding: 17px 44px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 50px;
    background-color: #ffffff;
    border: 2px solid var(--sc);
    -webkit-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -moz-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -ms-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -o-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    font-family: 'Nunito Sans', sans-serif;
    display: inline-block;
}

.btn-style-two:hover {
    color: #ffffff;
    border: 2px solid var(--sc);
    -webkit-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
}

/*Btn Style Three*/

.btn-style-three {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 16px 36px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 50px;
    background-color: var(--pc);
    -webkit-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -moz-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -ms-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -o-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    font-family: 'Nunito Sans', sans-serif;
    display: inline-block;
}

.btn-style-three:hover {
    color: #ffffff;
    -webkit-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
    box-shadow: rgba(var(--sc-o), 1) 0 0px 0px 40px inset;
}

/*Btn Style Four*/

.btn-style-four {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 18px 35px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 50px;
    background-color: #222222;
    -webkit-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -moz-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -ms-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    -o-box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    box-shadow: rgba(255, 255, 255, 0) 0 0px 0px 0px inset;
    display: inline-block;
}

.btn-style-four:hover {
    color: #ffffff;
    -webkit-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
}

/*Btn Style Five*/

.btn-style-five {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    padding: 14px 45px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 50px;
    background-color: var(--sc);
    display: inline-block;
}

.btn-style-five:hover {
    color: #ffffff;
    -webkit-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
}


/*Btn Style Six*/

.btn-style-six {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: var(--sc);
    padding: 14px 45px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 50px;
    background-color: #fff;
    display: inline-block;
}

.btn-style-six:hover {
    color: #ffffff;
    -webkit-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
    box-shadow: rgba(var(--pc-o), 1) 0 0px 0px 40px inset;
}

/*=== List Style One ===*/

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    color: #666666;
    font-weight: 400;
    padding-left: 35px;
    padding-bottom: 10px;
}

.list-style-one li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 28px;
    color: var(--sc);
    content: "\f105";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

/*=== List Style Two ===*/

.list-style-two {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.list-style-two li {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color: #222222;
    font-weight: 500;
    padding-left: 35px;
    margin-bottom: 15px;
    font-family: "Rubik", sans-serif;
}

.list-style-two li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 20px;
    color: var(--sc);
    font-weight: 900;
    font-family: "" Font Awesome 5 Free"";
    content: "\f061";
}

.theme_color {
    color: var(--sc);
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.gif);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/*** 

====================================================================
        Sec Title 
====================================================================

***/
.sec-title {
    position: relative;
    margin-bottom: 50px;
}

.sec-title .centered {
    text-align: center;
}

.sec-title h2 {
    font-size: 36px;
    line-height: 36px;
    color: #222222;
    font-weight: 800;
    padding-bottom: 26px;
}

.sec-title .separater {
    position: relative;
    width: 6px;
    height: 6px;
    background-color: var(--pc);
}

.sec-title .separater:before {
    position: absolute;
    content: '';
    right: 16px;
    bottom: 2px;
    width: 40px;
    height: 2px;
    display: inline-block;
    background-color: var(--pc);
    text-align: center;
}

.sec-title .separater:after {
    position: absolute;
    content: '';
    right: -49px;
    bottom: 2px;
    width: 40px;
    height: 2px;
    display: inline-block;
    background-color: var(--pc);
    text-align: center;
}

.sec-title.centered .separater {
    text-align: center;
    margin: 0 auto;
}

.sec-title.left {
    text-align: left;
    margin-bottom: 58px;
}

.sec-title.left .separater {
    left: 51px;
}

.sec-title.left h2 {
    line-height: 60px;
    padding-bottom: 13px;
}

.sec-title.left .separater:after {
    display: none;
}



/*** 

====================================================================
        Main Header style
====================================================================

***/

.main-header {
    position: relative;
    z-index: 999;
    width: 100%;
}

.main-header .header-top {
    position: relative;
    background-color: var(--sc);
}

/***************** Header Top ******************/
.main-header .header-top .top-left {
    position: relative;
    float: left;
}

.main-header .header-top .top-left .links {
    position: relative;
}

.main-header .header-top .top-left .links li {
    position: relative;
    padding: 9px 0px 10px 0px;
    padding-right: 22px;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
}

.main-header .header-top .top-left .links li .icon {
    position: relative;
    color: var(--pc);
    margin-right: 15px;
}

/***************** End Header Top ******************/


.main-header .header-top .top-right {
    position: relative;
    text-align: right;
    padding: 10px 0px;
}

.main-header .header-top .top-right ul li {
    display: inline-block;
}

.main-header .header-top .top-right ul li a {
    position: relative;
    color: #ffffff;
    font-size: 14px;
    padding-left: 20px;
}

.main-header .header-top .top-right ul li a:hover {
    color: var(--pc);
}

.main-header .main-box {
    position: relative;
    padding: 0px 0px;
    left: 0px;
    top: 0px;
    width: 100%;
    background: none;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-box .outer-container {
    position: relative;
    padding: 0px 40px;
}

.main-header .main-box .logo-box {
    position: relative;
    float: left;
    left: 0px;
    z-index: 10;
    padding: 30px 0px;
}

.main-header .main-box .logo-box .logo img {
    display: inline-block;
    max-width: 100%;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .nav-toggler {
    position: absolute;
    top: 50%;
    margin-top: 0px;
    display: block;
}

.main-header .nav-toggler button {
    position: relative;
    display: block;
    color: #444444;
    text-align: center;
    font-size: 24px;
    line-height: 34px;
    font-weight: normal;
    background: none;
}

.main-header .header-upper {
    position: relative;
    /*margin-bottom:-30px;*/
    background-color: var(--bg-color);

}

.main-header .header-upper .upper-right {
    position: relative;
    top: 10px;
    padding-top: 30px;
}

.main-header .nav-outer {
    position: relative;
    bottom: -30px;
    padding-left: 35px;
    background-color: #fff;
    border-radius: 40px;
    border: 1px solid #e3e6ee;
}

.main-header .header-lower {
    position: relative;
    border-bottom: 2px solid #f7df03;
    background-color: var(--bg-color);
}

.main-header .header-upper .logo-box {
    padding: 15px 0px 0px;
}

.main-header .info-box {
    position: relative;
    float: left;
    min-height: 56px;
    margin-left: 50px;
    font-size: 13px;
    color: #777777;
    text-align: left;
    padding: 0px 0px 20px 65px;
}

.main-header .info-box .icon-box {
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .info-box .icon-box span:before {
    color: var(--sc);
    font-size: 48px;
    line-height: 50px;
    margin-left: 0;
}

.main-header .info-box>ul li {
    position: relative;
    line-height: 20px;
    color: #777777;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 400;
}

.main-header .info-box strong {
    position: relative;
    font-weight: 700;
    color: #222222;
    font-size: 20px;
    line-height: 20px;
}

.main-header .info-box .quote-btn {
    position: relative;
    line-height: 24px;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 38px;
    border-radius: 50px;
    background: none;
    text-transform: uppercase;
    border: 1px solid #2e2e2e;
}

.main-header .info-box .quote-btn:hover {
    color: #ffffff;
    border-color: #26447b;
    background-color: #26447b;
}

.main-header .info-box .social-nav {
    position: relative;
    margin-top: 4px;
}

.main-header .info-box .social-nav li {
    position: relative;
    margin-left: 8px;
    display: inline-block;
}

.main-header .info-box .social-nav li a {
    position: relative;
    width: 40px;
    height: 40px;
    color: #222222;
    line-height: 38px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid #222222;
}

.main-header .info-box .social-nav li a:hover {
    color: var(--pc);
    background-color: #222222;
}

.main-menu {
    position: static;
    float: left;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: static;
    margin: 0px;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    margin-right: 40px;
    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:last-child {
    margin-right: 0px;
}

.main-menu .navigation>li:last-child::after {
    display: none;
}

.main-menu .navigation>li:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    opacity: 0;
    background-color: var(--bg1-color);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(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;
}

.main-menu .navigation>li:hover:before,
.main-menu .navigation>li.current:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.main-header .nav-outer .outer-box .search-box-outer {
    margin-right: 40px;
    margin-top: 12px;
}

.main-menu .navigation>li:hover::before,
.main-menu .navigation>li.current::before {
    opacity: 1;
}

.sticky-header .main-menu .navigation>li>a {
    padding: 20px 0px !important;
    color: #444444 !important;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a {
    color: var(--pc) !important;
    background-color: inherit !important;
}

.sticky-header .nav-outer .options-box {
    margin-top: 26px;
}




/*Sticky Header*/

.sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    background: #ffffff;
    z-index: 0;
    border-bottom: 1px solid #e6e6e6;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header .logo {
    padding: 10px 0px 10px;
}

.fixed-header .sticky-header {
    z-index: 999999;
    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-menu .navigation>li>a {
    position: relative;
    display: block;
    color: #222222;
    text-align: center;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0px;
    opacity: 1;
    font-weight: 700;
    padding: 15px 0px;
    font-size: 15px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'Nunito Sans', sans-serif;
}

.main-menu .navigation>li>a:hover {
    color: var(--bg-color);
}

.sticky-header .main-menu .navigation>li {
    position: relative;
    margin-left: 30px;
    margin-right: 0px !important;
}

.sticky-header .main-menu .navigation>li:before,
.sticky-header .main-menu .navigation>li:after {
    display: none;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a,
.main-header.light-version .main-menu .navigation>li:hover>a,
.main-header.light-version .main-menu .navigation>li.current>a {
    opacity: 1;
}

.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before {
    width: 100%;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 120%;
    width: 250px;
    padding: 0px;
    z-index: 100;
    display: none;
    background: #ffffff;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -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.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #f7df03;
}

.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
    line-height: 24px;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #272727;
    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>a {
    color: #ffffff;
    background: var(--bg2-color);
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 10px;
    height: 20px;
    display: block;
    color: #253d4a;
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li.dropdown:hover>a:after {
    color: #ffffff;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 20px;
    width: 250px;
    padding: 0px;
    z-index: 100;
    display: none;
    background: #ffffff;
    border-top: 3px solid var(--sc);
    -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>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.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 15px;
    line-height: 24px;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #272727;
    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;
    background: #2c2c2c;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 11px;
    width: 10px;
    height: 20px;
    display: block;
    color: #272727;
    line-height: 20px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown:hover>a:after {
    color: #ffffff;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    margin: 6px;
    background-color: #333;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #ffffff;
    line-height: 30px;
    border: 1px solid #ffffff;
    background-size: 20px;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .options-box {
    position: relative;
    float: left;
    margin-top: 42px;
    right: 0px;
    margin-left: 0px;
}

.main-header .options-box .options-nav {
    position: relative;
}

.main-header .options-box .options-nav>li {
    position: relative;
    color: #ffffff;
    font-size: 22px;
    margin-left: 28px;
    display: inline-block;
}

.main-header .options-box .options-nav li.menu-btn {
    cursor: pointer;
}

.main-header .options-box .options-nav>li>a {
    position: relative;
    color: #ffffff;
}

/*** 

====================================================================
                        Counter Section
====================================================================

***/
.counter-section {
    position: relative;
    padding: 47px 0 175px;

}

.counter {
    text-align: center;
}

.counter .counter-icon {
    color: #fff;
    background-color: var(--bg-color);
    font-size: 40px;
    line-height: 90px;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.counter .counter-value {
    color: var(--bg-color);
    background-color: #eee;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 15px;
    margin: -25px 0 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: block;
}

.counter h3 {
    color: #fff;
    background-color: var(--bg-color);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 8px 12px;
    margin: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2) inset;
    display: inline-block;
}

.counter.green .counter-icon,
.counter.green h3 {
    background-color: #3BB44A;
}

.counter.green .counter-value {
    color: #3BB44A;
}

.counter.red .counter-icon,
.counter.red h3 {
    background-color: #F2474F;
}

.counter.red .counter-value {
    color: #F2474F;
}

.counter.orange .counter-icon,
.counter.orange h3 {
    background-color: #F89128;
}

.counter.orange .counter-value {
    color: #F89128;
}

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

/*** 

====================================================================
                        Services Section
====================================================================

***/
.services-section {
    position: relative;
    padding: 10px 0;
    background: #9F63B0;
    background: -webkit-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: -moz-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9F63B0", endColorstr="#EDD2BD", GradientType=1);
}

.services-section2 {
    position: relative;
    background-color: #f5f8fa;
    padding: 10px 0;
}

.services-box {
    position: relative;
    margin-top: 60px;
}

.services-box .container {
    padding: 0;
}

.services-carousel {
    position: relative;
    padding-bottom: 52px;
}

.service-block {
    position: relative;

}

.service-block .inner-box {
    position: relative;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 40px;
    background-color: #fff;
}

.service-block:hover .inner-box {
    background-color: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
}

.service-block .lower-content {
    position: relative;
    padding: 21px 20px 6px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .lower-content h3 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: var(--bg2-color) !important;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-block .lower-content h3 a {
    color: var(--bg2-color);
    display: block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block:hover .lower-content h3 a {
    color: #fff;
    background: #9F63B0;
    background: -webkit-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: -moz-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9F63B0", endColorstr="#EDD2BD", GradientType=1);
}

.service-block .lower-content .text {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 27px;
    color: #777777;
    font-weight: 400;
    margin-bottom: 27px;
}

.service-block .lower-content .link-box {
    position: relative;
}

.service-block .lower-content .link-box a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2em;
    color: var(--pc);
    font-weight: 600;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .lower-content .link-box a:hover {
    color: #222;
}

.services-carousel .owl-nav {
    position: absolute;
    top: 0px;
    right: 237px;
}

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
    cursor: pointer;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    background-color: var(--pc);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    float: left;
    text-align: center;
    position: relative;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    background-color: #222222;
}


.services-carousel .owl-dots {
    position: absolute;
    display: block !important;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.services-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 4px;
    width: 30px;
    margin: 0 5px;
    background-color: var(--pc);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 7px;
}

.services-carousel .owl-dot:hover,
.services-carousel .owl-dot.active {
    height: 8px;
    width: 30px;
    margin-top: 3px;
    background-color: var(--sc);
}

.service-block .image-box {
    position: relative;
}

.service-block .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.service-block .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.service-block .image-box .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 100%;
    content: "";
    opacity: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.service-block .inner-box:hover .overlay-box {
    height: 100%;
    opacity: 1;
}

.service-block .overlay-box a {
    position: absolute;
    right: 0;
    bottom: 5%;
    height: 40px;
    width: 130px;
    margin-left: -20px;
    margin-top: 0;
    text-align: center;
    font-size: 14px;
    line-height: 42px;
    color: #fff;
    background-color: var(--bg-color);
    font-weight: 400;
    border-radius: 25px 0 0 25px;
}

.service-block .overlay-box a .service-block .inner-box:hover .overlay-box a {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.service-block .overlay-box a i {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .overlay-box a:hover i {
    color: #ffffff;
}

.services1-carouse .owl-nav {
    display: none;
}

.services1-carousel .owl-dots {
    position: absolute;
    display: block !important;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.services1-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 4px;
    width: 30px;
    margin: 0 5px;
    background-color: var(--pc);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 7px;
}

.services1-carousel .owl-dot:hover,
.services1-carousel .owl-dot.active {
    height: 8px;
    width: 30px;
    margin-top: 3px;
    background-color: var(--sc);
}

/*** 

====================================================================
                Testimonial Section
====================================================================

***/

.testimonial-section {
    position: relative;
    padding: 96px 0 98px;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-carousel {
    position: relative;
}

.testimonial-block {
    position: relative;
    margin-left: 65px;
    margin-top: 53px;
}

.testimonial-block .inner-box {
    position: relative;
    padding: 31px 21px 30px;
    border: 1px solid #9F63B0;
    background-color: #ffffff;
}

.testimonial-block .inner-box:before {
    content: "\f10e";
    position: absolute;
    right: 30px;
    bottom: 0;
    font-size: 20px;
    font-family: "FontAwesome";
    font-weight: 900;
    color: #fff;
    background-color: var(--bg-color);
    width: 40px;
    height: 70px;
    text-align: center;
    border-radius: 30px 30px 0 0px;
    padding-top: 11px;
}

.testimonial-block .inner-box .text {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 27px;
    color: #777777;
    font-weight: 400;
    margin-bottom: 28px;
}

.testimonial-block .info-box {
    position: relative;
    width: 100%;
    /*padding-left: 110px;*/
}

.testimonial-block .info-box .name {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: var(--bg2-color);
    font-weight: 700;
}

.testimonial-carousel .owl-dots {
    position: absolute;
    display: block !important;
    left: 0;
    bottom: -96px;
    width: 100%;
    text-align: center;
}

.testimonial-carousel .owl-dot {
    width: 30px;
    height: 4px;
    background-color: var(--bg1-color);
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-carousel .owl-dot.active,
.testimonial-carousel .owl-dot:hover {
    width: 30px;
    height: 8px;
    background-color: var(--bg-color);
}



.video-carousel .owl-dots {
    position: absolute;
    display: block !important;
    left: 0;
    bottom: -96px;
    width: 100%;
    text-align: center;
}

.video-carousel .owl-dot {
    width: 30px;
    height: 4px;
    background-color: var(--bg1-color);
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.video-carousel .owl-dot.active,
.video-carousel .owl-dot:hover {
    width: 30px;
    height: 8px;
    background-color: var(--bg-color);
}

/***

==================================================================
                Main Footer
==================================================================

***/

.main-footer {
    position: relative;
    z-index: 1;
    background: #777777;
    color: #fff;
}

.main-footer .widgets-section {
    position: relative;
    padding: 30px 0 11px;
}

.main-footer .footer-column {
    position: relative;
}

.main-footer .footer-widget {
    position: relative;
    margin-bottom: 40px;
}

.main-footer .footer-column .widget-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 30px;
    margin-bottom: 36px;
    padding-bottom: 13px;
}

.main-footer.style-three .footer-column .widget-title,
.main-footer.style-two .footer-column .widget-title {
    color: #fff;
}

.main-footer .footer-column .widget-title:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 35px;
    height: 2px;
    background-color: var(--pc);
}

.main-footer .about-widget {
    position: relative;
    padding-right: 20px;
}

.main-footer .footer-logo {
    position: relative;
    margin-bottom: 33px;
    margin-right: 148px;
    background-color: var(--bg-color);
    border-radius: 4px;
    padding: 15px;
}

.main-footer .footer-logo figure {
    margin: 0;
    margin-top: -20px;
}

.main-footer .footer-logo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.main-footer .about-widget .text {
    position: relative;
    font-size: 14px;
    line-height: 26px;
    color: #777;
    font-weight: 400;
}

.main-footer .about-widget .info-box {
    position: relative;
    width: 100%;
    margin-top: 23px;
    padding-right: 96px;
}

.main-footer .about-widget .info-box li {
    position: relative;
    padding-left: 47px;
    padding-bottom: 13px;

}

.main-footer .about-widget .info-box li i {
    font-size: 25px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 12px;

}

.main-footer .about-widget .info-box li span {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
}

/*Recent Posts*/

.recent-posts {
    position: relative;
}

.recent-posts .post {
    position: relative;
    min-height: 70px;
    padding-left: 105px;
    margin-bottom: 60px;
}

.recent-posts .post .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 90px;
    width: 90px;
    overflow: hidden;
}

.recent-posts .post .thumb a {
    display: block;
}

.recent-posts .post .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.recent-posts .post h4 {
    position: relative;
    font-size: 18px;
    color: #222;
    line-height: 24px;
    font-weight: 700;
    margin-top: 3px;
}

.recent-posts .post h4 a {
    color: #222;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.recent-posts .post h4 a:hover {
    color: var(--pc);
}

.recent-posts .post .post-date {
    position: relative;
    display: block;
}

.recent-posts .post .post-date li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: var(--sc);
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}

.owl-item {
    float: left;
}

.recent-posts .owl-stage-outer {
    position: relative;
    overflow: hidden;
}

.recent-posts .owl-nav {
    position: absolute;
    top: 35px;
    right: 0;
}

.recent-posts .owl-nav .owl-prev,
.recent-posts .owl-nav .owl-next {
    cursor: pointer;
    font-size: 20px;
    line-height: 23px;
    color: var(--pc);
    margin-left: 15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    float: left;
    text-align: center;
    position: relative;
}

.recent-posts .owl-nav .owl-prev:hover,
.recent-posts .owl-nav .owl-next:hover {
    color: #222222;
}

/*=== links Widget ===*/

.main-footer .links-widget {
    position: relative;
}

.main-footer .links-widget .list {
    display: inline-block;
    width: 49.5%;
    position: relative;
}

.main-footer .links-widget .list li {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.main-footer .links-widget .list li a {
    position: relative;
    display: block;
    line-height: 20px;
    font-size: 16px;
    color: #777;
    font-weight: 400;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.main-footer .links-widget .list li:hover:before,
.main-footer .links-widget .list li a:hover {
    color: var(--pc);
}

.main-footer .gallery-widget {
    position: relative;
}

.main-footer .gallery-widget .outer {
    position: relative;
    margin: 0px -7px 0;
}

.main-footer .gallery-widget .outer .image {
    position: relative;
    float: left;
    width: 33.3333%;
    padding: 0px 7px;
    margin-bottom: 14px;
}

.main-footer .gallery-widget .image img {
    display: block;
    width: 100%;
}

.main-footer .gallery-widget .image a {
    position: relative;
    display: block;
}

.main-footer .gallery-widget .image a:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--pc) padding-box content-box;
    padding: 5px;
    opacity: .80;
    content: "";
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .gallery-widget .image a:hover:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.main-footer .gallery-widget .image a:after {
    position: absolute;
    height: 20px;
    width: 20px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
    content: "\f0b2";
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #000000;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .gallery-widget .image a:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*=== Footer Bottom ===*/

.main-footer .footer-bottom {
    position: relative;
    background-color: #dbdbdb;
    color: #000000;
}

.main-footer .footer-bottom .inner-container {
    position: relative;
}

.main-footer .footer-bottom .copyright-text {
    position: relative;
    float: left;
    padding: 20px 0;
}

.main-footer .footer-bottom .copyright-text p {
    position: relative;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.main-footer .footer-bottom .copyright-text a {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color: var(--pc);
}

.main-footer .footer-bottom .copyright-text a:hover {
    text-decoration: underline;
}

.main-footer .footer-bottom .social-links {
    position: relative;
    float: right;

}

.social-icon-two {
    position: relative;
}

.social-icon-two li {
    position: relative;
    display: inline-block;
    margin-left: 26px;
}

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #f4f4f4;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-two li a:hover {
    color: var(--pc);
}

/*** 

====================================================================
        Subscribe Section
====================================================================

***/

/*.subscribe-section{
    position:relative;
    padding:46px 0px;
    overflow:hidden;
    background-color:var(--sc);
}

.subscribe-section:before{
    position:absolute;
    content:'';
    left:0px;
    top:0px;
    width:50%;
    height:100%;
    display:block;
    background-color: var(--pc);
}

.subscribe-section .title-column .icon-box{
    position:absolute;
    content:'';
    right:-55px;
    top:-22px;
    width:140px;
    height:140px;
    z-index:1;
    text-align:center;
}

.subscribe-section .title-column .icon-box .icon:before{
    position:relative;
    color:#222;
    line-height:105px;
    font-size:50px;
    margin-left:28px;
}

.subscribe-section .title-column .icon-box:before{
    position:absolute;
    content:'';
    right:0px;
    top:0px;
    width:110px;
    height:110px;
    transform:rotate(-45deg);
    background-color:#fff;
    transition:all 2000ms ease;
    -moz-transition:all 2000ms ease;
    -webkit-transition:all 2000ms ease;
    -ms-transition:all 2000ms ease;
    -o-transition:all 2000ms ease;
    box-shadow:0px 0px 5px rgba(0,0,0,0.50);
}

.subscribe-section:hover .title-column .icon-box:before{
    transform:rotate(135deg);
}

.subscribe-section h2{
    position:relative;
    color:#222;
    font-size:24px;
    font-weight:700;
    line-height:1.2em;
}

.subscribe-section .text{
    position:relative;
    color:#ffffff;
    z-index:9;
    margin-top:5px;
    font-size:14px;
}

.subscribe-section .form-column{
    position:relative;
}

.subscribe-section .form-column .inner-column{
    position:relative;
    padding-left: 180px;
}

.subscribe-form .form-group{
    position:relative;
    display:block;
    margin:0px;
    width:100%;
    z-index:1;
    margin-top:8px;
}

.subscribe-form .form-group input[type="text"], 
.subscribe-form .form-group input[type="tel"], 
.subscribe-form .form-group input[type="email"], 
.subscribe-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    height: 50px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background: transparent;
    padding: 10px 50px 10px 0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.subscribe-form .form-group input[type="submit"],
.subscribe-form button{
    position:absolute;
    right:0px;
    top:0px;
    height:50px;
    line-height:40px;
    color:#ffffff;
    font-size:14px;
    text-align:center;
    font-weight:700;
    padding:0px;
    background:none;
    letter-spacing:1px;
    text-transform:uppercase;
}*/
/*** 
=============================================
   Breadcrumb  
=============================================
***/
.banner-area {
    position: relative;
    min-height: 200px;
    color: #fff;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #9514148f;
}

.banner-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 22px;
        line-height: 1.3;
    }
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner-heading {
    text-align: center;
    padding-top: 20px;
}

.breadcrumb {
    display: inline-block;
    padding: 0 0 20px 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 3px solid #a55db3;
}

.breadcrumb li {
    float: left;
    margin-right: 5px;
    position: relative;
}

.breadcrumb li:last-child {
    padding: 5px 15px;
    margin-left: 15px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background: #a55db3;
    border-radius: 10px;
    border: 1px solid #a55db3;
}

.breadcrumb li:before {
    display: none;
}

.breadcrumb li a {
    display: block;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid #a55db3;
    font-size: 15px;
    font-weight: bold;
    color: #a55db3;
    transition: all 0.3s ease 0s;
}

.breadcrumb li:hover a {
    text-decoration: none;
    color: #fff;
    background: #a55db3;
    border-color: #a55db3;
}

.breadcrumb li.active span {
    display: block
}

.breadcrumb li a:before,
.breadcrumb li a:after,
.breadcrumb li.active span:before,
.breadcrumb li.active span:after {
    content: "";
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border: 10px solid transparent;
    border-top: 10px solid #a55db3;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}

.breadcrumb li a:after,
.breadcrumb li.active span:after {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #a55db3;
    bottom: -32px;
}

@media only screen and (max-width: 479px) {

    .breadcrumb li a,
    .breadcrumb li:last-child {
        padding: 8px;
        font-size: 12px;
    }

    .breadcrumb li a:before,
    .breadcrumb li.active span:before {
        border: 7px solid transparent;
        border-top: 7px solid #ff0000;
        bottom: -14px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "" !important;
}

.pull-center {
    text-align: center;
}

.call-to-action-box {
    background: #9F63B0;
    background: -webkit-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: -moz-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9F63B0", endColorstr="#EDD2BD", GradientType=1);
    font-size: 18px;
    font-weight: 900;
    color: #fff000 !important;

}

.marquee {
    color: #fff000 !important;
}

/*** 
=============================================
    Slogan area style
=============================================
***/
.slogan-area {
    position: relative;
    display: block;
    padding: 35px 0;

    background: #9F63B0;
    background: -webkit-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: -moz-linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    background: linear-gradient(90deg, rgba(159, 99, 176, 1) 0%, rgba(193, 156, 232, 1) 43%, rgba(237, 210, 189, 1) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9F63B0", endColorstr="#EDD2BD", GradientType=1);
}

.slogan-area .title {
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.slogan-area .title h3 {
    color: #fff000 !important;
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
}

.slogan-area .button {
    position: relative;
    display: block;
}

.slogan-area .button a {
    color: #27282c;
    background: #ffffff;
}

.slogan-area .button a:hover {
    color: #ffffff;
    background: var(--bg2-color);
}

.btn-one {
    position: relative;
    display: inline-block;
    background: #e9212e;
    color: #ffffff;
    font-size: 15px;
    line-height: 60px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 30px 0;
    transition: all 500ms ease;
}

.footer-column p {
    color: #fff;
}