/*--------------------------------------------------------------
1. GENERAL
---------------------------------------------------------------*/
body {
    background-color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #767676;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

/*---------------------------------------------------------------
2. HEADINGS
---------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    color: #58575d;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}
h1 {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 25px;
}
h2 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 25px;
}
h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}
h4 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
}
h5 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}
h6 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

/*---------------------------------------------------------------
3. TEXT & PARAGRAPH
---------------------------------------------------------------*/

/*text align*/
.text-justify {
    text-align: justify
}

/*---------------------------------------------------------------
4. LISTS
---------------------------------------------------------------*/


/*---------------------------------------------------------------
5. BOX SPACING (inner & outer)
    >padding
    >marging
---------------------------------------------------------------*/


/*---------------------------------------------------------------
6. BOX MAX-WIDTH CSS
---------------------------------------------------------------*/


/*---------------------------------------------------------------
7. POSITIONS (absolute & relative & statice & z-index)
---------------------------------------------------------------*/


/*---------------------------------------------------------------
8. COLOR (text & background)
---------------------------------------------------------------*/
/*=== >background image===*/
.bg-img-fix {
    background-attachment: fixed;
    background-size: cover;
}

/*---------------------------------------------------------------
9. IMAGES OVERLAY EFFECTS (overly animation on images)
---------------------------------------------------------------*/
.dez-img-overlay1, .dez-img-overlay2 {
    position: relative;
}
.dez-img-overlay1:before,.dez-img-overlay1:after,.dez-img-overlay2:before,.dez-img-overlay2:after {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0.4;
    z-index: 1;
    -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;
}
/*effect 1*/
.dez-img-overlay1:hover:after,
.dez-img-overlay1:after {
    height: 95%;
    opacity: 1;
    right: 7.5%;
    top: 2.5%;
    -moz-transform: skewY(0deg);
    -webkit-transform: skewY(0deg);
    -o-transform: skewY(0deg);
    -ms-transform: skewY(0deg);
    transform: skewY(0deg);
    width: 85%;
}
.dez-img-overlay1:hover:before,
.dez-img-overlay1:before {
    height: 85%;
    left: 2.5%;
    opacity: 1;
    top: 7.5%;
    -moz-transform: skewY(0deg);
    -webkit-transform: skewY(0deg);
    -o-transform: skewY(0deg);
    -ms-transform: skewY(0deg);
    transform: skewY(0deg);
    width: 95%;
}
.dez-img-overlay1:after {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 5%;
    height: 80%;
    left: auto;
    right: 5%;
    top: auto;
    -moz-transform: skewY(70deg);
    -webkit-transform: skewY(70deg);
    -o-transform: skewY(70deg);
    -ms-transform: skewY(70deg);
    transform: skewY(70deg);
    width: 90%;
}
.dez-img-overlay1:before {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    bottom: auto;
    height: 90%;
    left: 5%;
    right: auto;
    top: 5%;
    -moz-transform: skewX(-70deg);
    -webkit-transform: skewX(-70deg);
    -o-transform: skewX(-70deg);
    -ms-transform: skewX(-70deg);
    transform: skewX(-70deg);
    width: 80%;
}
.dez-img-overlay1 {
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 1px;
}
/*effect 2*/
.dez-img-overlay2:before {
    width: 100%;
    height: 100%;
    opacity: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}
.dez-img-overlay2:hover:before,
.dez-img-overlay2:before {
    opacity: 0.9;
}

/*---------------------------------------------------------------
10. IMAGES EFFECTS (image animation in images)
---------------------------------------------------------------*/
.dez-img-effect {
    position: relative;
    overflow: hidden;
    display: block;
}
.dez-img-effect img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.25s;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
}
/* >image-zoom-slow */
.dez-img-effect.zoom-slow img {
    transition: all 5s;
    -moz-transition: all 5s;
    -webkit-transition: all 5s;
    -o-transition: all 5s;
}
.dez-img-effect.zoom-slow:hover img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
/* >image-zoom */
.dez-img-effect.zoom:hover img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
/* >image-rotate */
.dez-img-effect.rotate:hover img {
    -moz-transform: scale(1.5) rotate(-20deg);
    -webkit-transform: scale(1.5) rotate(-20deg);
    -o-transform: scale(1.5) rotate(-20deg);
    -ms-transform: scale(1.5) rotate(-20deg);
    transform: scale(1.5) rotate(-20deg);
}
/* >image-sepia */
.dez-img-effect.sepia img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
}
.algo-image-hover.sepia:hover img {
    -webkit-filter: sepia(0);
    filter: sepia(0);
}
/* >image-blurr */
.dez-img-effect.blurr img {
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
}
.dez-img-effect.blurr:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
}
/* >image-blurr-invert */
.dez-img-effect.blurr-invert img {
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
}
.dez-img-effect.blurr-invert img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
}
.dez-img-effect.blurr-invert:hover img {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
}
/* >image off color */
.dez-img-effect.off-color img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);
}
.dez-img-effect.off-color:hover img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1);
}
/* >image on color */
.dez-img-effect.on-color img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1);
}
.dez-img-effect.on-color:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);
}

/*---------------------------------------------------------------
11. CONTENT SHOW ON IMAGE BOX
---------------------------------------------------------------*/


/*---------------------------------------------------------------
13. DEFAULT
---------------------------------------------------------------*/
.alignright {
    float: right;
    margin: 5px 0 10px 25px;
}
.alignleft {
    float: left;
    margin: 5px 25px 10px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 10px 25px;
}
a img.alignleft {
    float: left;
    margin: 5px 25px 10px 0;
}

/*---------------------------------------------------------------
14. HEADER (top part of page)
---------------------------------------------------------------*/
.site-header {
    position: relative;
    z-index: 999;
}
.site-header ul,
.site-header ol {
    margin-bottom: 0;
}

/*---------------------------------------------------------------
15. PAGE TOP BAR (left & right content)
---------------------------------------------------------------*/


/*---------------------------------------------------------------
16. LOGO
---------------------------------------------------------------*/
.logo-header {
    overflow: hidden;
    width: 406px;
    height: 80px;
    margin: 4px 0;
}
.logo-header img {
    float: left;
    width: 100%;
    height: auto;
}
.logo-header .logo-text-name {
    font-size: 19px;
    line-height: 26px;
    font-family: Tahoma, sans-serif;
    padding: 4px 0 6px 0;
}
.logo-header .logo-text-moto {
    /* limit to 2 rows */
    overflow: hidden;
    height: 34px;
    font-size: 14px;
    line-height: 16px;
    font-family: Tahoma, sans-serif;
    white-space: normal;
}
/* kindergarten */
.header-curve .logo-header:before,
.header-curve .logo-header:after {
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: -1;
}
.header-curve .logo-header:before {
    left: -1300px;
    width: 1710px;
    -ms-transform: skew(25deg);
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
}
.header-curve .logo-header {
    /*background-color: white;*/
}
/* boxed */
.boxed .header-curve .logo-header:before {
    left: 30px;
    width: 380px;
}
.boxed .header-curve .logo-header:after {
    right: auto;
    left: -4px;
    width: 200px;
}
/* responsive */
@media (max-width: 1199.98px) {
    .logo-header {
        width: 340px;
    }
    .logo-header > .logo-text-name {
        font-size: 15px;
    }
    .logo-header > .logo-text-moto {
        font-size: 11px;
    }
    .header-curve .logo-header:before {
        width: 1640px;
    }
    .boxed .header-curve .logo-header:before {
        width: 310px;
    }
}

/*---------------------------------------------------------------
17. MAIN BAR
---------------------------------------------------------------*/
.main-bar {
    width: 100%;
    outline: 1px solid #e3e3e3;
    background: #fff;
}
.navbar-toggler {
    outline: 2px solid #eee;
}

/*---------------------------------------------------------------
18. NAVIGATIONS (menus)
---------------------------------------------------------------*/
.is-fixed {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: -1px; /* -1 fix small scalling issue */
    z-index: 999;

}
.top-bar {
    padding: 0;
    background-color: #F5F5F5;
}
.social-line div {
    display: inline-block;
    float: left;
    margin-left: -1px;
}
.social-line div a {
    color: #ababab;
    border: 1px solid #e3e3e3;
    border-width: 0 1px;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    display: inline-block;
    min-width: 45px;
    cursor: pointer;
}
@media (max-width: 767.98px) {
    .social-line:first-child {
        border: 1px solid #e3e3e3;
    }
}
.nav-item .nav-link {
    border-radius: 2px;
    font-size: 18px;
}
.nav-item .nav-link.active {
    outline: 1px solid var(--skin-color-light);
}
@media (max-width: 1399.98px) {
    .nav-item .nav-link {
        font-size: 16px;
    }
}
.nav-item .nav-link:hover {
    border-radius: 4px;
}

/*---------------------------------------------------------------
19. BANNER
---------------------------------------------------------------*/
/*== > inner page banner ==*/
.dez-bnr-inr {
    height: 208px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
}
.dez-bnr-inr .container {
    display: table;
    height: 100%;
}
.dez-bnr-inr-entry {
    display: table-cell;
    vertical-align: middle;
}

/*---------------------------------------------------------------
21. BLOG
---------------------------------------------------------------*/
/*== post date syle css ==*/
.post-date {
    font-size: 16px;
    font-weight: normal;
    color: white;
    padding: 2px 6px;

    position: absolute;
    top: 0;
    left: 16px;
    border-radius: 0 0 8px 8px;
    border: 1px solid #666;
    border-top: none;
}

/*---------------------------------------------------------------
24. SORTCODES 
        >Buttons
        >Title separators		
        >Deviders	
        >Lists & bullets	
        >Tabs
        >Accordians		
        >Carousels	
        >Testimonials	
        >Pricing table
        >Alert box	
        >Modal pop
        >Social icons
        >Breadcrumb
        >Tables
        >Image effects

---------------------------------------------------------------*/

/*== >Buttons ======= */
/* theme default button */
.site-button,
.site-button-secondry {
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    line-height: 1.42857;
}
.site-button,
.site-button-secondry {
    background-color: #EFBB20;
    border-radius: 4px;
    box-shadow: 2px 2px 0 var(--skin-color-very-light)
}
.site-button:active,
.site-button:hover,
.site-button:focus,
.active > .site-button {
    background-color: #d8a409;
    color: #fff;
    box-shadow: 0 0 6px var(--skin-color);
}
.site-button-secondry {
    background-color: #58575d;
    padding: 6px 12px;
}
.site-button-secondry:active,
.site-button-secondry:hover {
    background-color: var(--skin-color-dark)
}

/* button text link */

.site-button-link {
    display: inline-block;
    font-weight: 600;
}
/* white */

.site-button-link.white {
    color: #e7e7e7;
}
.site-button-link.white:hover,
.site-button-link.white:active,
.site-button-link.white:focus {
    color: #CCC;
}
/* black */

.site-button-link.black {
    color: #171717;
}
.site-button-link.black:hover,
.site-button-link.black:active,
.site-button-link.black:focus {
    color: #000;
}
/* Gray */

.site-button-link.gray {
    color: #666666;
}
.site-button-link.gray:hover,
.site-button-link.gray:active,
.site-button-link.gray:focus {
    color: #555555;
}
/* pink */

.site-button-link.pink {
    color: #e63f75;
}
.site-button-link.pink:hover,
.site-button-link.pink:active,
.site-button-link.pink:focus {
    color: #2ca2be;
}
/* Blue */

.site-button-link.blue {
    color: #2AAAE2;
}
.site-button-link.blue:hover,
.site-button-link.blue:active,
.site-button-link.blue:focus {
    color: #2ca2be;
}
/* Green */

.site-button-link.green {
    color: #35B494;
}
.site-button-link.green:hover,
.site-button-link.green:active,
.site-button-link.green:focus {
    color: #26a585;
}
/* Orange */

.site-button-link.orange {
    color: #E56713;
}
.site-button-link.orange:hover,
.site-button-link.orange:active,
.site-button-link.orange:focus {
    color: #d55703;
}
/* Red */

.site-button-link.red {
    color: #D93223;
}
.site-button-link.red:hover,
.site-button-link.red:active,
.site-button-link.red:focus {
    color: #c51e0f;
}
/* Brown */

.site-button-link.brown {
    color: #69441F;
}
.site-button-link.brown:hover,
.site-button-link.brown:active,
.site-button-link.brown:focus {
    color: #5f3a15;
}
/* Yellow */

.site-button-link.yellow {
    color: #ecc731;
}
.site-button-link.yellow:hover,
.site-button-link.yellow:active,
.site-button-link.yellow:focus {
    color: #d4af19;
}
/* purple */

.site-button-link.purple {
    color: #ae1af7;
}
.site-button-link.purple:hover,
.site-button-link.purple:active,
.site-button-link.purple:focus {
    color: #9804e1;
}

.icon-bx-xs {
    border-radius: 4px;
}
/*== >Title separators ====== */
.dez-separator {
    display: inline-block;
    height: 3px;
    width: 50px;
    margin-bottom: 10px;
    position: relative;
}
.dez-separator.style-liner {
    width: 20px;
}
.dez-separator.style-icon {
    width: 30px;
    height: auto;
    text-align: center;
    font-size: 20px;
}
.dez-separator[class*="style-"]:after,
.dez-separator[class*="style-"]:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    width: 70px;
    height: 1px;
    background: #cecece;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dez-separator[class*="style-"]:before {
    left: auto;
    right: 30px;
}
.dez-separator.style-skew {
    width: 15px;
    height: 10px;
    margin-left: 1px;
    margin-right: 1px;
    -moz-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    -o-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
}
.dez-separator.style-skew[class*="style-"]:after,
.dez-separator.style-skew[class*="style-"]:before {
    width: 80px;
    height: 4px;
    left: 20px;
    -moz-transform: translateY(-50%) skewX(-10deg);
    -webkit-transform: translateY(-50%) skewX(-10deg);
    -o-transform: translateY(-50%) skewX(-10deg);
    -ms-transform: translateY(-50%) skewX(-10deg);
    transform: translateY(-50%) skewX(-10deg);
}
.dez-separator.style-skew[class*="style-"]:before {
    right: 20px;
    left: auto;
}

/*== >Breadcrumb ====*/
.breadcrumb-row {
    background: #e8e9e9;
    padding: 20px 0;
}
.breadcrumb-row ul {
    margin: 0;
}
.breadcrumb-row ul li {
    padding: 0;
    margin-right: 3px;
    color: #333333;
}
.breadcrumb-row ul li:after {
    content: "/";
    margin-left: 7px;
}
.breadcrumb-row ul li:last-child {
    color: #676767;
}
.breadcrumb-row ul li:last-child:after {
    display: none;
}

/*== >Image effects ==*/
/*use for section*/
.overlay-black-light,
.overlay-black-middle,
.overlay-black-dark,
.overlay-gradient-light,
.overlay-gradient-middle,
.overlay-gradient-dark,
.overlay-white-light,
.overlay-white-middle,
.overlay-white-dark {
    position: relative;
}
.overlay-black-light:after,
.overlay-black-middle:after,
.overlay-black-dark:after,
.overlay-gradient-light:after,
.overlay-gradient-middle:after,
.overlay-gradient-dark:after,
.overlay-white-light:after,
.overlay-white-middle:after,
.overlay-white-dark:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.overlay-black-light:after,
.overlay-black-middle:after,
.overlay-black-dark:after {
    background: #000;
}
.overlay-gradient-light:after,
.overlay-gradient-middle:after,
.overlay-gradient-dark:after {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}
.overlay-white-light:after,
.overlay-white-middle:after,
.overlay-white-dark:after {
    background: #FFF;
}
.overlay-black-light:after {
    opacity: 0.3;
}
.overlay-black-middle:after {
    opacity: 0.5;
}
.overlay-black-dark:after {
    opacity: 0.9;
}
.overlay-gradient-light:after {
    opacity: 0.3;
}
.overlay-gradient-middle:after {
    opacity: 0.5;
}
.overlay-gradient-dark:after {
    opacity: 0.9;
}
.overlay-white-light:after {
    opacity: 0.5;
}
.overlay-white-middle:after {
    opacity: 0.7;
}
.overlay-white-dark:after {
    opacity: 0.9;
}
.overlay-black-light .container,
.overlay-black-middle .container,
.overlay-black-dark .container,
.overlay-white-light .container,
.overlay-white-middle .container,
.overlay-white-dark .container,
.overlay-black-light .container-fluid,
.overlay-black-middle .container-fluid,
.overlay-black-dark .container-fluid,
.overlay-white-light .container-fluid,
.overlay-white-middle .container-fluid,
.overlay-white-dark .container-fluid {
    position: relative;
    z-index: 1;
}
/* ICON BOXES */
.icon-bx-xl,
.icon-bx-lg,
.icon-bx-md,
.icon-bx-sm,
.icon-bx-xs {
    color: white;
    display: inline-block;
    text-align: center;
}
.icon-bx-xl {
    width: 150px;
    height: 150px;
    line-height: 150px;
}
.icon-bx-lg {
    width: 120px;
    height: 120px;
    line-height: 120px;
}
.icon-bx-md {
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.icon-bx-sm {
    width: 80px;
    height: 80px;
    line-height: 80px;
}
.icon-bx-xs {
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.icon-bx-xl.radius,
.icon-bx-lg.radius,
.icon-bx-md.radius,
.icon-bx-sm.radius,
.icon-bx-xs.radius {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.border-1, .border-2, .border-3, .border-4, .border-5 {
    border-style: solid;
}
.border-1 {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}
.border-3 {
    border-width: 3px;
}
.border-4 {
    border-width: 4px;
}
.border-5 {
    border-width: 5px;
}
.icon-bx-xl i,.icon-bx-lg i,.icon-bx-md i,.icon-bx-sm i,.icon-bx-xs i {
    vertical-align: middle;
}
.icon-bx-xl i {
    font-size: 80px;
}
.icon-bx-lg i {
    font-size: 60px;
}
.icon-bx-md i {
    font-size: 45px;
}
.icon-bx-sm i {
    font-size: 30px;
}
.icon-bx-xs i {
    font-size: 20px;
}
/*==for images==*/

/*---------------------------------------------------------------
22. WIDGETS (sitemap)
---------------------------------------------------------------*/
.widget_pages ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.widget_pages ul li {
    padding-bottom: 18px;
    margin-bottom: 13px;
    border-bottom: 1px solid rgba(102, 102, 102, 0.11);
    position: relative;
    padding: 10px 10px 10px 15px;
    margin-bottom: 0;
    line-height: 20px;
}
.widget_pages ul li a {
    color: #767676;
}
.widget_pages ul li:before {
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
}
.widget_pages ul li li {
    border-bottom: none;
    padding-left: 30px;
    padding-right: 5px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 28px;
}

/*---------------------------------------------------------------
26. FOOTER
---------------------------------------------------------------*/
footer {
    color: #fff;
}
footer a {
    color: #fff;
}
.footer-school {
    background-color: #002147;
    padding: 30px 0;
}
.footer-kindergarten {
    background-position: center;
    height: 376px;
    padding: 310px 0 20px;
}

/* Scroll to top */
.scroll-to-top {
    visibility: hidden;
    opacity: 0;
    padding: 0;
    border: 0;
    background: none;
    position: fixed;
    right: 8px;
    bottom: 144px;
    height: 52px;
    width: 52px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 0 3px var(--skin-color);
    z-index: 999;
    transform: translateY(15px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.scroll-to-top:hover {
    box-shadow: 0 0 10px var(--skin-color-dark);
}
.scroll-to-top.active-progress {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.scroll-to-top svg.progress-circle {
    width: 100%;
    height: 100%;
}
.scroll-to-top svg.progress-circle path {
    fill: var(--skin-color);
    stroke: var(--skin-color-dark);
    stroke-width: 6;
}
.scroll-to-top svg.arrow-up-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    fill: var(--skin-color-very-light);
}
/*.scroll-to-top .scroll-percentage {
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: var(--skin-color-very-light);
}*/
/* END Scroll to top */

/*---------------------------------------------------------------
27. PAGE-CONTENT
---------------------------------------------------------------*/
.page-wraper {
    background: #f7f8fa;
}
.page-content {
    margin-top: 0;
    padding-bottom: 0;
}
/*= Section Head Part =*/
.section-head {
    margin-bottom: 20px;
}
.section-head h1,
.section-head h2,
.section-head h3 {
    margin-top: 0;
}
.section-head p {
    padding-top: 10px;
    font-size: 14px;
    color: #9897a0;
}
.text-center.section-head p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}
@media only screen and (max-width: 991.98px) {
    .page-content {
        margin-top: 0;
    }
}

/*---------------------------------------------------------------
28. INNER-CONTENT
---------------------------------------------------------------*/

/*===============================================
        Layout boxed css
=============================================== */
#bg {
    background-attachment: fixed;
    background-size: cover;
}
.boxed .page-wraper {
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
}
.boxed .tp-banner-container,
.boxed .rev_slider_wrapper {
    left: 0 !important;
    width: 100% !important;
}
/* Slider for fluid (not boxed) */
:not(.boxed) .tp-banner-container {
    z-index: 9;
    position: relative;
}
.boxed .tp-rightarrow {
    right: 0 !important;
}
.boxed .tp-leftarrow {
    left: 0 !important;
}

/*---------------------------------------------------------------
Z SKIN COLORS
---------------------------------------------------------------*/
/* Primary color background */
.bg-color-primary,
.site-button,
.pagination > .active > a,
.pagination > .active > span,
.tp-bottom,
.post-date {
    background-color: var(--skin-color);
}
.navbar-toggler {
    background-color: var(--skin-color) !important;
}
.color-primary > li > a,
footer a:hover {
    color: var(--skin-color) !important;
}
.nav-link:hover {
    color: var(--skin-color);
}
a,
a.active,
a:hover,
.color-primary,
.page-link,
.card-title,
.breadcrumb-item a,
.social-line a:hover, .social-line a.active,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.widget_pages ul li a:hover,
.logo-header {
    color: var(--skin-color);
}
.page-link:hover {
    color: white;
}
.page-link:active {
    box-shadow: 0 0 10px var(--skin-color-dark);
}
.dropdown-menu a.active {
    background-color: var(--skin-color);
}
.dropdown-menu a:hover {
    background-color: var(--skin-color-dark);
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a.active{
    background-color: var(--skin-color-very-light);
    color: var(--skin-color) !important;
}
.dropdown-menu a:hover {
    color: var(--skin-color-very-light);
}
/* Primary color border */
.switch-btn,  .navbar-toggler, button.scroltop {
    border-color: var(--skin-color);
}
.active > .page-link {
    border-color: var(--skin-color-dark);
}
.form-check-input:checked {
    background-color: var(--skin-color);
}

/* Primary color hover */
.site-button:active,
.site-button:hover,
.site-button:focus,
.active > .site-button,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.scroltop {
    background-color: var(--skin-color);
}



/* Menu */
.dropdown-toggle::after {
    margin-left: 0;
}


/* cursor magnifier */
.mfp-link {
    cursor: zoom-in;
}


/* Bootstrap 5 customazations */
.dropdown-menu {
    margin-top: -1px !important;
    padding-top: 0;
    cursor: pointer;
}
.dropdown-divider {
    margin-top: 0;
    margin-bottom: 0;
}
.card-text {
    color: #555;
}
@media only screen and (max-width: 991.98px) {
    #navbar-main > ul > li > a {
        padding-left: 8px;
        padding-right: 8px;
        color: #333;
    }
}
/* navbar - scrollable dropdown */
.dropdown-menu {
    max-width: 560px;
    max-height: 600px;
    overflow-x: hidden;
}
.dropdown-menu .dropdown-item {
}
@media only screen and (max-width: 991.98px) {
    .dropdown-menu .dropdown-item {
        white-space: normal;
    }
}

table td {
    border-style: solid;
    border-width: 1px;
}

/* sticky footer fix (to optimize)*/
html, body {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
}
.page-wrapper {
    flex: 1;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--skin-color-very-light);
    --bs-tooltip-color: var(--skin-color-dark);
}

#cb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    display: none;
    opacity: 0.9;
    background-color: var(--skin-color-very-light);
}
#cb-cookie-banner > button {
    background-color: var(--skin-color-dark);
    border: none;
}

.contact-map {
    width: 100%;
    height: 400px;
    border: 1px solid var(--skin-color-very-light);
    border-radius: 6px;
    box-shadow: 0 0 3px var(--skin-color-very-light);
}

.no-tooltip {
    pointer-events: none;
}

/* Social Share Buttons */
.diamond {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transform: rotate(45deg);
}
.diamond i {
    transform: rotate(-45deg);
}
.diamond-facebook {
    background-color: #1877f2;
}
.diamond-x {
    background-color: #000000;
}
.decorative-symbol-container {
    position: relative;
    display: inline-block;
}
.decorative-symbol {
    font-size: 44px;
    color: #333;
    font-style: italic;
}
.decorative-symbol:nth-child(2) {
    margin-left: -16px;
}