/********************************************************** */
/***********************  Gilkan ************************* */
/**********************************************************

    TABLE OF CONTENT
    ========================

    01. Default CSS
    02. Colors
    03. Animations
    04. Hero Section
    05. Banner Section
    06. About Section
    07. Services Section
    08. Service Details
    09. Pricing Section
    10. Beauty Section
    11. Gallery Section
    12. Team Section
    13. Team Profile
    14. Testimonial Section
    15. Certificate Section
    16. Vission Mission
    17. Contact Page
    18. Error Section
    19. Footer Section


/****************************************************** */
/*******************  01. Default CSS ***************** */
/****************************************************** */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Arabic Font (Cairo) */
@font-face {
    font-family: "Cairo";
    src: url("fonts/Cairo-ttf.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body[dir="rtl"],
html[lang="ar"] {
    body, nav {
        font-family: "Chillax", "Cairo", sans-serif !important;
    }
}

body {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary: #652d92 !important;
    --second-primary: #c08bc1 !important;
    --dark-100: #231F20 !important;
    --bs-text-primary : #652d92 !important;
}


a {
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 38px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

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

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

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

header:after,
section:after,
footer:after {
    display: block;
    clear: both;
    content: "";
}

/** Section Title style One **/
.section-title h2 {
    margin-bottom: 35px;
    color: #652d92;
}

.vm-content h4 {
    color: #652d92;
}



/** Button style One **/
.theme-btn,
a.theme-btn {
    font-size: 18px;
    cursor: pointer;
    min-width: 200px;
    font-weight: 700;
    padding: 16px 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    z-index: 1;
}

.theme-btn:before,
a.theme-btn:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 3px;
    right: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
}

.theme-btn:hover:before,
a.theme-btn:hover:before {
    width: 100%;
}

.theme-btn:after,
a.theme-btn:after {
    content: "\f104";
    font-family: Flaticon;
    font-size: 10px;
    margin-right: 15px;
    rotate: 180deg;
}

.theme-btn.btn-reverse,
a.theme-btn.btn-reverse {
    padding-right: 45px;
}

.theme-btn.btn-reverse:before,
a.theme-btn.btn-reverse:before {
    right: auto;
    left: 0;
}

.theme-btn.btn-reverse:after,
a.theme-btn.btn-reverse:after {
    position: absolute;
    right: 10px;
    transform: rotate(-180deg);
}

/** Social Link Style One */
.social-style-one {
    display: inline-block;
}

.social-style-one a {
    margin: 0 15px;
    font-size: 15px;
    display: inline-block;
}

.social-style-one a:first-child {
    margin-right: 0;
}

.social-style-one a:last-child {
    margin-left: 0;
}

/*List style One*/
.list-style-one li {
    margin-bottom: 15px;
    display: flex;
}

.list-style-one li:before {
    content: "\f104";
    font-size: 10px;
    font-family: Flaticon;
    margin-left: 30px;
    color: #fff;
    transform: rotate(180deg);
}

.list-style-one li a {
    color: #fff;
}

.list-style-one li a:hover {
    color: #652d92;
}

/* Social Icons */
.social-icons {
    margin: 0;
    padding: 0;
    width: auto;
}

.social-icons li {
    display: inline-block;
    margin: -1px 1px 0 0;
    padding: 0;
    border-radius: 100%;
    overflow: visible;
}

.social-icons li a {
    transition: all 0.2s ease;
    border-radius: 100%;
    display: block;
    height: 28px;
    line-height: 28px;
    width: 28px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
}

.social-icons li:hover a {
    background: #652d92;
    color:#fff;
}


/*** Preloader style ** */
.preloader {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-position: center center;
    background-repeat: no-repeat;
    /**background-image: url(../images/preloader.gif); **/
}

/*** Scroll Top style ** */
.scroll-top {
    width:40px;
    height:40px;
    cursor: pointer;
    font-size: 18px;
}

/* input buttons */
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: none;
}

.form-control {
    border: 1px solid;
    border-radius: 0;
    padding: 17px 30px;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
}

.divider {
    height: 12px;
}

/****************************************************** */
/********************* 02. Colors  ******************** */
/****************************************************** */
a,
body,
a:hover,
a:focus,
a:visited {
    color: #787878;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.theme-btn.style-three,
a.theme-btn.style-three,
.theme-btn.style-four,
a.theme-btn.style-four {
    color: #fff;
}

.theme-btn,
a.theme-btn,
.scroll-top,
.theme-btn.style-four:hover,
a.theme-btn.style-four:hover {
    color: #FFFFFF;
}

.color-one,
.vision-mision > i,
.hero-content h1 span,
.hero-content h2 span,
.section-title h2 span,
.service-item.style-one > i,
.style-one .price-circle h3 {
    color:#c08bc1;
}

.style-two .price-circle h3 {
    color: #a0bd7e;
}

.style-three .price-circle h3 {
    color: #e3a7d8;
}

.hero-content h5 {
    color: #fff;
}

.service-item.style-two > i {
    color: #9a9a65;
}

.service-item.style-three > i {
    color: #7acdcd;
}

.service-item.style-four > i {
    color: #ddaad3;
}

.preloader,
.service-item,
.price-circle,
.theme-btn.style-three,
a.theme-btn.style-three,
.theme-btn.style-four,
a.theme-btn.style-four {
    background-color: #652d92;
}

.bg-one {
    background-color: #f9e2e2;
}

.bg-two,
.services-section:after,
.service-item.style-one > i,
.style-one .pricing-content {
    background-color: #c08bc1;
}

.bg-three,
.theme-btn,
a.theme-btn,
.scroll-top,
.what-experct-content {
    background-color: #652d92;
}

.theme-btn:before,
a.theme-btn:before {
    background-color: #171928;
}

.theme-btn.style-two:before,
a.theme-btn.style-two:before,
.theme-btn.style-three:before,
a.theme-btn.style-three:before,
.price-item.style-one .theme-btn:before {
    background-color: #c08bc1;
}

.price-item.style-two .theme-btn {
    background-color: #c1d5aa;
}

.price-item.style-two .theme-btn:before {
    background-color: #a0bd7e;
}

.price-item.style-three .theme-btn {
    background-color: #e3a7d8;
}

.price-item.style-three .theme-btn:before {
    background-color: #be84b3;
}

.service-item.style-two > i {
    background-color: #f7f7e8;
}

.service-item.style-three > i {
    background-color: #e2f7f7;
}

.service-item.style-four > i {
    background-color: #ffeffc;
}

.style-two .pricing-content {
    background-color: #f6fbef;
}

.style-three .pricing-content {
    background-color: #fff2fd;
}

.bg-four {
    background-color: #fffafa;
}

.divider,
.mission {
    background-color: #fff2f2;
}


.form-control {
    border-color: #502b78;
}

.service-item.style-one {
    border-color: #652d92;
}

.service-item.style-two {
    border-color: #e8e8d3;
}

.service-item.style-three {
    border-color: #bfe0e0;
}

.service-item.style-four {
    border-color: #ffd1f6;
}

.style-one .price-circle:after {
    border-color: #fcb4b3;
}

.style-two .price-circle:after {
    border-color: #c1d5aa;
}

.form-control:focus,
.style-three .price-circle:after {
    border-color: #652d92;
}

.style-one .pricing-content ul,
.style-one .pricing-content li {
    border-color: #F4D4D2;
}

.style-two .pricing-content ul,
.style-two .pricing-content li {
    border-color: #d6e6c3;
}

.style-three .pricing-content ul,
.style-three .pricing-content li {
    border-color: #f2d4ec;
}


/****************************************************** */
/******************* 03. Animations  ****************** */
/****************************************************** */
@-webkit-keyframes rotated {
    0%   {-webkit-transform: rotate(0);transform: rotate(0);}
    50% {-webkit-transform: rotate(-175deg);transform: rotate(-175deg);}
    100% {-webkit-transform: rotate(-360deg);transform: rotate(-360deg);}
}
@keyframes rotated {
    0%   {-webkit-transform: rotate(0);transform: rotate(0);}
    50% {-webkit-transform: rotate(-175deg);transform: rotate(-175deg);}
    100% {-webkit-transform: rotate(-360deg);transform: rotate(-360deg);}
}


@-webkit-keyframes rotated-reverse {
    0%   {-webkit-transform: rotate(-360deg);transform: rotate(-360deg);}
    50% {-webkit-transform: rotate(-175deg);transform: rotate(-175deg);}
    100% {-webkit-transform: rotate(0);transform: rotate(0);}
}
@keyframes rotated-reverse {
    0%   {-webkit-transform: rotate(-360deg);transform: rotate(-360deg);}
    50% {-webkit-transform: rotate(-175deg);transform: rotate(-175deg);}
    100% {-webkit-transform: rotate(0);transform: rotate(0);}
}

@-webkit-keyframes down-up {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    50% {
        -webkit-transform: translate(0px, 100px);
        transform: translate(0px, 100px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

}

@keyframes down-up {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    50% {
        -webkit-transform: translate(0px, 100px);
        transform: translate(0px, 100px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

}

/****************************************************** */
/******************* 04. Hero Section  **************** */
/****************************************************** */
.hero-section {
    background: url('../images/inner-banner.jpg');
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top right;
    background-repeat: no-repeat;
}

.hero-content {
    padding: 175px 0 100px;
    max-width: 650px;
left:0;
    z-index: 2;
    position: absolute;
    top: 0;
}

.hero-content h1 {
    font-size: 70px;
}

.hero-content h5 {
    font-size: 20px;
    font-weight: 400;
    margin: 40px 0;
}

.hero-angle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(70%, -70%);
}

.hero-angle img {
    animation: down-up 10s infinite linear;
}


/****************************************************** */
/***************** 05. Banner Section  **************** */
/****************************************************** */
.banner-section {
    position: relative;
    background: url(../images/banner/banner.png);
    background-size: cover;
    background-position: center;
}

.banner-inner {
    height: 490px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 55px;
    margin-bottom: 15px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    display: content;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF;
    content: "\f104";
    font-family: Flaticon;
    font-size: 9px;
    padding: 0 13px;
}

.banner-inner nav {
    background: #652d92;
    position: absolute;
    right: 0;
    bottom: -22.5px;
}

.banner-inner .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 8.5px 22px;
    align-items: center;
}

.banner-angle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(65%, -50%);
    overflow: hidden;
    height: 100%;
}

.banner-angle img {
    animation: down-up 10s infinite linear;
}


/****************************************************** */
/****************** 06. About Section  **************** */
/****************************************************** */
.about-content h6 {
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 25px;
}

.vision-mision {
    display: flex;
    margin: 35px 0;
}

.vision-mision .vm-image {
    margin-left: 30px;
    flex: none;padding-top: 30px;
}

.about-images {
    max-width: 570px;
    padding-right: 25%;
    padding-top: 30px;
    padding-bottom: 21.5%;
    position: relative;
}

.about-images img:first-child {
    position: absolute;
    top: 0;
    left: 75%;
    width: 68%;
}

.about-images img:last-child {
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 90%;
}

/****************************************************** */
/**************** 07. Services Section  *************** */
/****************************************************** */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section .section-title {
    position: relative;
    z-index: 2;
}

.services-section:after {
    position: absolute;
    content: '';
    height: calc(100% - 240px);
    width: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}

.service-item {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 28px 20px;
    border-bottom: 2px solid;
}

.service-item > i {
    height: 118px;
    width: 118px;
    display: inline-block;
    margin-bottom: 40px;
    border-radius: 50%;
    line-height: 118px;
    font-size: 65px;
}

.service-item h4 {
    margin-bottom: 25px;
}

.service-angle {
    position: absolute;
    right: 0;
    top: 5%;
    transform: translateX(70%);
}

.service-angle img {
    animation: down-up 10s infinite linear;
}

.service-ellipse {
    position: absolute;
    right: 50%;
    top: 0;
    transform: translate(50%, -35%);
}

.what-experct-img {
    height: 100%;
    min-height: 400px;
    background: url('../images/about/doctor_2.jpg') center/cover;border: 10px solid #652d92;
}

.what-experct-content {
    padding: 50px 50px 50px 50px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.what-experct-content * {
    position: relative;
    z-index: 2;
}

.what-experct-content:after {
    content: '';
    background: url(../images/services/cicle.png) no-repeat left top;
    position: absolute;
    height: 74%;
    width: 58%;
    left: 0;
    bottom: 0;
}

.what-experct-content h3 {
    font-size: 32px;
    line-height: 42px;
}

.what-experct-content p {
    color: #222222;
    margin: 25px 0;
}

/****************************************************** */
/**************** 08. Service Details  **************** */
/****************************************************** */
.sp-video-conten h2,
.sp-right-content h2,
.sp-right-content h4,
.sp-video-conten p,
.sp-right-content p {
    margin-bottom: 30px;
}

.sp-video {
    padding: 60px;
}

.sp-video img,
.sp-right-content img {
    width: 100%;
}

.document-links a {
    display: flex;
    color: #171928;
    background: #FFFFFF;
    margin-bottom: 20px;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 700;
    align-items: center;
}

.document-links a i {
    margin-left: 20px;
    color: #652d92;
    font-weight: 400;
    font-size: 25px;
    transition: 0.5s;
}

.document-links a:hover {
    background: #652d92;
    color: #FFFFFF;
}

.document-links a:hover i {
    color: #FFFFFF;
}

.video-img {
    position: relative;
}

.video-img .video-play {
    height: 73px;
    width: 73px;
    position: absolute;
    background: #652d92;
    text-align: center;
    line-height: 73px;
    color: #FFFFFF;
    border-radius: 50%;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}

.video-img .video-play:after {
    position: absolute;
    height: 92px;
    width: 92px;
    top: -10px;
    right: -10px;
    border-radius: 50%;
    animation: rotated 20s infinite linear;
    content: url('../images/services/video-roteted.png');
}

/****************************************************** */
/**************** 09. Pricing Section  **************** */
/****************************************************** */
.price-item {
    text-align: center;
    margin-bottom: 30px;
}

.price-image {
    margin-bottom: 10px;
}

.price-image img {
    width: 100%;
}

.pricing-content {
    padding-bottom: 60px;
}

.price-circle {
    height: 165px;
    width: 165px;
    border-radius: 50%;
    position: relative;
    margin-bottom: -15px;
    display: inline-flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.price-circle:after {
    position: absolute;
    content: '';
    height: calc(100% + 25px);
    width: calc(100% + 25px);
    right: -12.5px;
    top: -12.5px;
    z-index: -1;
    border-radius: 50%;
    border: 1px dashed;
}

.price-circle p {
    margin-bottom: 10px;
}

.price-circle h3 {
    font-size: 35px;
    margin-bottom: 0;
}

.pricing-content ul {
    margin-bottom: 70px;
    border-top: 1px dashed;
}

.pricing-content li {
    border-bottom: 1px dashed;
    padding: 13px;
}

/****************************************************** */
/***************** 10. Beauty Section  **************** */
/****************************************************** */
.beauty-section {
    background: url('../images/beauty/beauty-bg.png') center/cover;
}
.beauty-content h3{ color:#652d92}
.beauty-content p {
    margin: 30px 0 35px;
}

.beauty-image {
    position: relative;
    display: inline-block;
}

.beauty-image:after {
    position: absolute;
    content: '';
    height: 72%;
    width: 72%;
    right: 14%;
    top: 14%;
    background: #652d92;
    transform: rotate(-60deg);
}

.beauty-image img {
    position: relative;
    width: 100%;
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/****************************************************** */
/**************** 11. Gallery Section  **************** */
/****************************************************** */
.gallery-item {
    margin-bottom: 30px;
    position: relative;
}

.gallery-item img {
    width: 100%;
}

.gallery-hover {
    position: absolute;
    height: calc(100% - 30px);
    width: calc(100% - 50px);
    background: #652d92;
    right: 25px;
    top: 20px;
    opacity: 0;
    display: flex;
    transition: 0.5s;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-popup-link {
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #652d92;
    font-size: 20px;
}

.gallery-hover h4 {
    margin-top: 25px;
}

img.mfp-img {
    padding-bottom: 25px;
}

/****************************************************** */
/****************** 12. Team Section  ***************** */
/****************************************************** */
.team-item {
    margin-bottom: 30px;
}

.team-item img {
    border: 0;
    transition: 0.5s;
    margin-bottom: 35px;
}

.team-item img:hover {
    padding: 5px;
    transition: 0.5s;
    border: 5px solid #652d92;
}

.owl-carousel.team-carousel .owl-nav {
    text-align: center;
    margin-top: 65px;
}

.owl-carousel.team-carousel.style-two .team-item img:hover {
    padding: 0;
    border: 0;
}

.owl-carousel.team-carousel.style-two .owl-nav {
    position: absolute;
    left: 0;
    top: -200px;
    z-index: 5;
    margin-top: 0;
}

.owl-carousel.team-carousel .owl-nav button {
    font-size: 30px;
    height: 100px;
    width: 100px;
    color: #222222;
    transition: 0.5s;
    text-align: center;
    background-color: #fff2f2;
}

.owl-carousel.team-carousel.style-two .owl-nav button {
    background-color: #FFFFFF;
}

.owl-carousel.team-carousel .owl-nav button.owl-prev {
    margin-left: 10px;
}

.owl-carousel.team-carousel .owl-nav button:hover {
    color: #FFFFFF;
    background-color: #652d92;
}

/****************************************************** */
/***************** 13. Team Profile  ****************** */
/****************************************************** */
.porfile-image {
    position: relative;
}

.porfile-image img {
    width: 100%;
}

.download-bio a {
    display: flex;
    color: #FFFFFF;
    background: #652d92;
    margin-bottom: 20px;
    padding: 28px;
    font-size: 22px;
    font-weight: 700;
    justify-content: center;
}

.download-bio a i {
    font-size: 30px;
    font-weight: 400;
    margin-left: 25px;
}

.experience {
    position: absolute;
    right: 30px;
    bottom: 30px;
    height: 230px;
    width: 230px;
    display: flex;
    flex-flow: column;
    padding: 25px;
    z-index: 1;
}

.experience:before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    background: rgba(251, 170, 169, 0.8);
}

.experience:after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 10px;
    height: 100%;
    width: 100%;
    z-index: -2;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    background: rgba(255, 255, 255, 0.8);
}

.experience h3 {
    margin-top: auto;
    font-size: 35px;
}

.profile-name {
    font-size: 32px;
}

.profile-desi {
    color: #652d92;
}

.profile-details h6 {
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 27px;
}

.profile-details p {
    margin-bottom: 25px;
}

.profile-details .divider {
    height: 6px;
}

.icon-list li {
    width: 50%;
    font-size: 20px;
    margin-bottom: 10px;
}

.icon-list {
    display: flex;
    flex-wrap: wrap;
}

.icon-list li i {
    width: 40px;
    height: 40px;
    color: #652d92;
    line-height: 40px;
    margin-left: 30px;
    text-align: center;
    background: #fff2f2;
    display: inline-block;
}

/****************************************************** */
/************** 14. Testimonial Section  ************** */
/****************************************************** */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-image {
    margin-left: 20px;
    position: relative;
    display: inline-block;
}

.testimonial-image:after {
    position: absolute;
    content: '';
    height: 72%;
    width: 72%;
    right: 14%;
    top: 14%;
    background: #FFFFFF;
    transform: rotate(-60deg);
}

.testimonial-image img {
    position: relative;
    z-index: 1;
}

.testimonial-content {
    margin-right: 80px;
    padding-bottom: 80px;
}

.testimonial-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #524e4e;
    margin-bottom: 35px;
}

.testimonial-content span {
    color: #524e4e;
}

.testimonial-wrap .owl-dots {
    position: absolute;
    bottom: -55px;
}

.testimonial-wrap .owl-dots button {
    height: 8px;
    width: 44px;
    transition: 0.5s;
    margin-left: 10px;
    background: #FFFFFF;
}

.testimonial-wrap .owl-dots button.active {
    background: #222222;
}

.testimonial-dotted {
    position: absolute;
    right: 0;
    top: 0;
}

.testimonial-angle {
    position: absolute;
    bottom: -12%;
    left: 0;
    width: 16%;
    animation: down-up 10s infinite linear;
}

.testimonial-quote {
    position: absolute;
    right: 52%;
    top: 22%;
    width: 15%;
}

/****************************************************** */
/***************** 15. Certificate Section  **************** */
/****************************************************** */
.client-section {
    position: relative;
}

.client-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -50px;
}

.client-item {
    margin: 0 52px 50px;
}

.client-dotted {
    position: absolute;
    right: 0;
    top: 0;
    width: 22%;
}

.client-angle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16%;
    animation: down-up 10s infinite linear;
}


/****************************************************** */
/**************** 16. Vission Mission  **************** */
/****************************************************** */
.vission-mission {
    padding: 60px 65px 60px 55px;
    height: 100%;
}

.vission-mission h3 {
    font-size: 40px;
    margin-bottom: 40px;
}

.vission-mission p,
.vission-mission h6 {
    margin-bottom: 25px;
}

.mission h6 {
    line-height: 27px;
}

/****************************************************** */
/****************** 17. Contact Page  ***************** */
/****************************************************** */
/*contact info*/
.contact-info-item {
    display: flex;
    padding: 20px 35px;
    background: #fff2f2;
    margin-bottom: 30px;
    align-items: center;
    transition: 0.5s;
}

.contact-info-item:hover {
    background: #652d92;
    color: #FFFFFF;
}

.contact-info-icon {
    position: relative;
    margin-left: 30px;
    display: inline-block;
}

.contact-info-icon i {
    height: 72px;
    width: 72px;
    line-height: 72px;
    background: #FFFFFF;
    text-align: center;
    color: #652d92;
    font-size: 22px;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.contact-info-item:hover .contact-info-icon i {
    transform: rotate(-45deg);
}

.contact-info-icon i:before {
    transition: 0.5s;
    display: inline-block;
}

.contact-info-item:hover .contact-info-icon i:before {
    transform: rotate(45deg);
}

.contact-info-icon:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    opacity: 0;
    transition: 0.5;
    background: #ffc9c8;
    transform: rotate(0deg);
}

.contact-info-item:hover .contact-info-icon:after {
    opacity: 1;
    transform: rotate(-30deg);
}

.info-content span {
    display: block;
    font-size: 20px;
    margin: 10px 0;
}

/*contact form*/
.contact-form-inner {
    background: #c08bc1;
    padding: 100px;
    border-bottom: 10px solid;
    border-color: #652d92;
    transform: translateY(250px);
    margin-top: -180px;
    position: relative;
    z-index: 888;
}

.contact-map {
    height: 820px;
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}

/****************************************************** */
/***************** 18. Error Section  ***************** */
/****************************************************** */
.error-images {
    display: inline-block;
    position: relative;
    padding: 50px;
}

.error-images img {
    position: relative;
    z-index: 2;
}

.error-dots:before {
    position: absolute;
    content: '';
    background: url('../images/error/error-dot3.png') no-repeat center/cover;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    animation: rotated 35s infinite linear;
}

.error-dots:after {
    position: absolute;
    content: '';
    height: 56%;
    width: 56%;
    right: 22%;
    top: 22%;
    z-index: 1;
    background: #FAE2E2;
    transform: rotate(30deg);
}

.error-images:before {
    position: absolute;
    content: '';
    background: url('../images/error/error-dot2.png') no-repeat center/cover;
    height: calc(100% - 100px);
    width: calc(100% - 100px);
    right: 50px;
    top: 50px;
    animation: rotated-reverse 45s infinite linear;
}

.error-images:after {
    position: absolute;
    content: '';
    background: url('../images/error/error-dot1.png') no-repeat center/cover;
    height: calc(100% - 180px);
    width: calc(100% - 180px);
    right: 90px;
    top: 90px;
    animation: rotated 55s infinite linear;
}

.error-content h1 {
    color: #652d92;
    font-size: 230px;
    text-shadow: -10px 10px #fef4f3;
}

.error-content h5 {
    font-size: 25px;
    margin-bottom: 50px;
}

.error-content h5 span {
    font-weight: 400;
}

/****************************************************** */
/***************** 19. Footer Section  **************** */
/****************************************************** */
.footer-section {
    background: #c08bc1;
    position: relative;
}

.widget {
    z-index: 2;
    position: relative;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 25px;
    margin-bottom: 50px;
}

/*about widget*/
.about-widget-contact {
    border-right: 5px solid;
    border-color: #652d92;
    padding: 10px 30px 10px 0;
}

.about-widget-contact p {
    margin-bottom: 25px;
}

.about-widget-contact h4 a {
    color: #652d92;
    font-size: 23px;
}

/*subscribe widget*/
.subscribe-widget form {
    background: #FFFFFF;
    padding: 50px 50px 50px 45px;
    border-right: 5px solid;
    border-color: #652d92;
}

.subscribe-widget form input {
    width: 100%;
    color: #FFFFFF;
    background: #652d92;
    padding: 16px 30px;
    margin-bottom: 20px;
}

.subscribe-widget form input::placeholder {
    color: #FFFFFF;
}

.btn-and-text {
    display: flex;
    align-items: center;
}

.btn-and-text button {
    height: 60px;
    width: 60px;
    flex: none;
    color: #FFFFFF;
    cursor: pointer;
    margin-left: 28px;
    background: #222222;
}

.btn-and-text p {
    margin: 0;
}

/*copyright*/
.copyright {
    z-index: 2;
    padding: 20px 0;
    position: relative;
    background: #ffecec;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright p {
    margin: 0;
}

.footer-dotted-top {
    position: absolute;
    right: 0;
    top: 0;
}

.footer-dotted-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
}


.what-experct-content ul li {color:#fff}

/* Maps */
.google-map {
    background: #E5E3DF;
    height: 400px;
    margin: 145px 0 30px 0;
    width: 100%;
}

.google-map.small {
    height: 250px;
    border-radius: 6px;
    margin: 0;
    clear: both;
}

.google-map img {
    max-width: 9999px;
}

.google-map iframe {
    width: inherit !important;
}


/* Featured Box */
.featured-box {
    background: var(--light);
    box-sizing: border-box;
    border-bottom: 1px solid #DFDFDF;
    border-left: 1px solid #ECECEC;
    border-radius: var(--border-radius2x);
    border-right: 1px solid #ECECEC;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    min-height: 100px;
    position: relative;
    /*text-align: center;*/
    z-index: 1;
}

.featured-box h4 {
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: -0.7px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.featured-box .box-content {
    border-radius: var(--border-radius2x);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-top-width: 4px;
    padding: 28.8px;
    padding: 1.8rem;
    position: relative;
}

.featured-box .box-content:not(.box-content-border-0) {
    top: -1px;
    border-top-width: 4px;
}

.featured-box .box-content.box-content-border-0 {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-bottom: 0 !important;
}

.featured-box .box-content.box-content-border-bottom {
    top: 1px;
}

.featured-box .box-content-border-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-bottom: 4px solid rgba(0, 0, 0, 0.06);
}

.featured-box.border-radius {
    border-radius: var(--border-radius2x) !important;
}

.featured-box.border-radius.box-shadow-1:before {
    border-radius: var(--border-radius2x) !important;
}

/* Featured Box Left */
.featured-box-text-left {
    text-align: left;
}

/* Featured Boxes - Flat */
.featured-boxes-flat .featured-box {
    box-shadow: none;
    margin: 10px 0;
}

.featured-boxes-flat .featured-box .box-content {
    background: var(--light);
    margin-top: 65px;
}

.featured-boxes-flat .featured-box .icon-featured {
    display: inline-block;
    font-size: 2em;
    height: 90px;
    line-height: 90px;
    padding: 0;
    width: 90px;
    margin: -100px 0 -15px;
    position: relative;
    top: -40px;
}

/* Featured Boxes - Style 2 */
.featured-boxes-style-2 .featured-box {
    background: none;
    border: 0;
    margin: 10px 0;
    box-shadow: none;
}

.featured-boxes-style-2 .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.featured-boxes-style-2 .featured-box .icon-featured {
    display: inline-block;
    font-size: 1.8em;
    height: 75px;
    line-height: 75px;
    padding: 0;
    width: 75px;
    margin-top: 0;
}

/* Featured Boxes - Style 3 */
.featured-boxes-style-3 .featured-box {
    margin: 10px 0;
}

.featured-boxes-style-3 .featured-box .icon-featured {
    display: inline-block;
    font-size: 1.8em;
    height: 75px;
    line-height: 75px;
    padding: 0;
    width: 75px;
    margin-top: -37px;
    top: -37px;
    background: var(--light);
    border: 2px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.06);
}

.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box {
    background: none;
    border: 0;
    box-shadow: none;
}

.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Featured Boxes - Style 4 */
.featured-boxes-style-4 .featured-box {
    background: none;
    border: 0;
    margin: 10px 0;
    box-shadow: none;
}

.featured-boxes-style-4 .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.featured-boxes-style-4 .featured-box .icon-featured {
    display: inline-block;
    font-size: 35px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    width: 45px;
    margin-top: 0;
    margin-bottom: 10px;
    background: transparent;
    color: rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

/* Featured Boxes - Style 5, 6, 7 and 9 */
.featured-boxes-style-5 .featured-box, .featured-boxes-style-6 .featured-box, .featured-boxes-style-7 .featured-box, .featured-boxes-style-9 .featured-box {
    background: none;
    border: 0;
    box-shadow: none;
    margin: 10px 0;
}

.featured-boxes-style-5 .featured-box .box-content, .featured-boxes-style-6 .featured-box .box-content, .featured-boxes-style-7 .featured-box .box-content, .featured-boxes-style-9 .featured-box .box-content {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.featured-boxes-style-5 .featured-box .box-content h4, .featured-boxes-style-6 .featured-box .box-content h4, .featured-boxes-style-7 .featured-box .box-content h4, .featured-boxes-style-9 .featured-box .box-content h4 {
    color: var(--dark--200);
}

.featured-boxes-style-5 .featured-box .icon-featured, .featured-boxes-style-6 .featured-box .icon-featured, .featured-boxes-style-7 .featured-box .icon-featured, .featured-boxes-style-9 .featured-box .icon-featured {
    display: inline-block;
    font-size: 2em;
    height: 75px;
    padding: 0;
    width: 75px;
    margin-top: 0;
    margin-bottom: 10px;
    background: var(--light);
    border: 1px solid #dfdfdf;
    color: var(--default);
    line-height: 73px;
}

/* Featured Boxes - Style 6 */
.featured-boxes-style-6 .featured-box .icon-featured {
    border: 1px solid #cecece;
    color: var(--default);
}

.featured-boxes-style-6 .featured-box .icon-featured:after {
    border: 5px solid var(--grey-100);
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 100%;
    left: -6px;
    padding: 1px;
    position: absolute;
    top: -6px;
    width: 100%;
}

/* Featured Boxes - Style 7 */
.featured-boxes-style-7 .featured-box .icon-featured {
    border: 1px solid #dfdfdf;
    color: var(--default);
}

/* Featured Boxes - Style 8 */
.featured-boxes-style-8 .featured-box .icon-featured {
    display: inline-block;
    font-size: 2em;
    height: 75px;
    padding: 0;
    width: 75px;
    margin: -15px -15px 0 0;
    background: var(--light);
    line-height: 75px;
    border: 0;
    color: var(--default);
}

.featured-boxes-style-8 .featured-box .icon-featured:after {
    display: none;
}

/* Featured Boxes - Style 9 */
.featured-boxes-style-9 .featured-box .icon-featured {
    background: var(--light);
    box-shadow: 0px 0px 32px -7px rgba(0, 0, 0, 0.1);
    border: 0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    transition-duration: .4s;
}

/* Featured Boxes Modern */
.featured-boxes-modern-style-1 .featured-box {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: auto !important;
    margin: 0 !important;
}

.featured-boxes-modern-style-1 .featured-box .featured-box-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: cubic-bezier(0.39, 0.66, 0.42, 0.99) all 2s;
    transform: scale(1);
}

.featured-boxes-modern-style-1 .featured-box .box-content {
    padding: 64px;
    padding: 4rem;
    border: none;
    z-index: 3;
}

.featured-boxes-modern-style-1 .featured-box .box-content .icon-featured {
    color: var(--light);
    background: transparent;
    width: auto;
    height: auto;
    line-height: 1.4;
    font-size: 46.4px;
    font-size: 2.9rem;
    margin: 0 0 16px;
    margin: 0 0 1rem;
}

.featured-boxes-modern-style-1 .featured-box .box-content h2 {
    color: var(--light);
    font-weight: 600;
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 11.2px;
    margin-bottom: 0.7rem;
}

.featured-boxes-modern-style-1 .featured-box .box-content p {
    color: #999;
    margin-bottom: 25.6px;
    margin-bottom: 1.6rem;
}

.featured-boxes-modern-style-1 .featured-box:hover .featured-box-background {
    transform: scale(1.1);
}

@media (max-width: 575px) {
    .featured-boxes-modern-style-1 .featured-box .box-content {
        padding: 2rem 1.5rem;
    }
}

.featured-boxes-modern-style-2 .featured-box {
    position: relative;
    background: #6c6ef1;
    background: linear-gradient(135deg, #6c6ef1 0%, #e2498e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c6ef1', endColorstr='#e2498e', GradientType=1 );
    border-radius: 0;
    margin: 0 !important;
    overflow: hidden;
}

.featured-boxes-modern-style-2 .featured-box:before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    background: var(--light);
}

.featured-boxes-modern-style-2 .featured-box .box-content {
    padding: 64px;
    padding: 4rem;
    border: none;
}

.featured-boxes-modern-style-2 .featured-box .box-content .icon-featured {
    color: var(--light);
    background: transparent;
    width: auto;
    height: auto;
    line-height: 1.4;
    font-size: 46.4px;
    font-size: 2.9rem;
    margin: 0 0 16px;
    margin: 0 0 1rem;
}

.featured-boxes-modern-style-2 .featured-box .box-content h2 {
    color: var(--dark);
    font-weight: 700;
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 11.2px;
    margin-bottom: 0.7rem;
}

.featured-boxes-modern-style-2 .featured-box .box-content p {
    color: #999;
    margin-bottom: 25.6px;
    margin-bottom: 1.6rem;
}

@media (max-width: 575px) {
    .featured-boxes-modern-style-2 .featured-box .box-content {
        padding: 2rem 1.5rem;
    }
}

.featured-boxes-modern-style-2-hover-only .featured-box:before {
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    transition: cubic-bezier(0.39, 0.66, 0.42, 0.99) all 200ms;
}

.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box {
    background: rgba(0, 0, 0, 0.06) !important;
    box-shadow: none;
    border: 0;
}

.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box-no-borders {
    background: none !important;
}

.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box-box-shadow {
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.featured-boxes-modern-style-2-hover-only:hover .featured-box:before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
}

/* Featured Boxes */
.featured-boxes .featured-box {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    margin-top: 24px;
    margin-top: 1.5rem;
}

/* Effects */
.featured-box-effect-1 .icon-featured:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 3px #FFF;
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(1);
    opacity: 0;
}

.featured-box-effect-1:hover .icon-featured:after {
    transform: scale(0.8);
    opacity: 1;
}

.featured-box-effect-2 .icon-featured:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 3px #FFF;
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(0.8);
    opacity: 0;
}

.featured-box-effect-2:hover .icon-featured:after {
    transform: scale(0.95);
    opacity: 1;
}

.featured-box-effect-3 .icon-featured:after {
    top: 0;
    left: 0;
    box-shadow: 0 0 0 10px #FFF;
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(0.9);
    opacity: 0;
}

.featured-box-effect-3:hover .icon-featured {
    color: var(--light) !important;
}

.featured-box-effect-3:hover .icon-featured:after {
    transform: scale(1);
    opacity: 0.8;
}

.featured-box-effect-4 .icon-featured {
    transition: transform 0.2s, transform 0.2s;
    transform: scale(1);
}

.featured-box-effect-4:hover .icon-featured {
    transform: scale(1.15);
}

.featured-box-effect-5 .icon-featured {
    overflow: hidden;
    transition: all 0.3s;
}

.featured-box-effect-5:hover .icon-featured {
    animation: toRightFromLeft 0.3s forwards;
}

@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }

    50% {
        opacity: 0;
        transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

.featured-box-effect-6 .icon-featured:after {
    transition: all 0.2s, transform 0.2s;
}

.featured-box-effect-6:hover .box-content .icon-featured:after {
    transform: scale(1.1);
}

.featured-box-effect-7 .icon-featured:after {
    opacity: 0;
    box-shadow: 3px 3px #d5d5d5;
    transform: rotate(-90deg);
    transition: opacity 0.2s, transform 0.2s;
    left: 0;
    top: -1px;
}

.featured-box-effect-7:hover .icon-featured:after {
    opacity: 1;
    transform: rotate(0deg);
}

.featured-box-effect-7 .icon-featured:before {
    transform: scale(0.8);
    opacity: 0.7;
    transition: transform 0.2s, opacity 0.2s;
}

.featured-box-effect-7:hover .icon-featured:before {
    transform: scale(1);
    opacity: 1;
}

/* Feature Box */
.feature-box {
    display: flex;
}

.feature-box .feature-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 100%;
    color: var(--light);
    font-size: 16px;
    font-size: 1rem;
    position: relative;
    top: 7px;
    text-align: center;
    padding: 0.8em;
    height: 1px;
    width: 2.7em;
    height: 2.7em;
}

.feature-box .feature-box-info {
    flex: 1 1 100%;
    padding-left: 15px;
}

.feature-box.align-items-center .feature-box-icon {
    top: 0;
}

/* Style 2 */
.feature-box.feature-box-style-2 h4 {
    color: var(--dark);
}

.feature-box.feature-box-style-2 .feature-box-icon {
    background: transparent;
    top: -3px;
}

.feature-box.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-2 .feature-box-icon .icons {
    font-size: 1.7em;
}

.feature-box.feature-box-style-2.align-items-center .feature-box-icon {
    top: 0;
}

/* Style 3 */
.feature-box.feature-box-style-3 h4 {
    color: var(--dark);
}

.feature-box.feature-box-style-3 .feature-box-icon {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    line-height: 32px;
}

.feature-box.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-3 .feature-box-icon .icons {
    color: rgba(0, 0, 0, 0.06);
}

/* Style 4 */
.feature-box.feature-box-style-4 {
    flex-wrap: wrap;
}

.feature-box.feature-box-style-4 h4 {
    color: var(--dark);
}

.feature-box.feature-box-style-4 .feature-box-icon {
    flex-basis: 100%;
    justify-content: flex-start;
    background: transparent;
    padding: 0 0 19.2px 0;
    padding: 0 0 1.2rem 0;
}

.feature-box.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-4 .feature-box-icon .icons {
    font-size: 2.35em;
    width: auto;
    height: auto;
}

.feature-box.feature-box-style-4 .feature-box-info {
    clear: both;
    padding-left: 0;
}

/* Style 5 */
.feature-box.feature-box-style-5 h4 {
    color: var(--dark);
}

.feature-box.feature-box-style-5 .feature-box-icon {
    background: transparent;
    top: 0;
    padding: 1em 1.4em;
    min-width: 5em;
}

.feature-box.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-5 .feature-box-icon .icons {
    font-size: 2.75em;
}

.feature-box.feature-box-style-5.align-items-center .feature-box-icon {
    top: 0;
}

/* Style 6 */
.feature-box.feature-box-style-6 h4 {
    color: var(--dark);
}

.feature-box.feature-box-style-6 .feature-box-icon {
    border: 1px solid #cecece;
    background: transparent;
    line-height: 32px;
}

.feature-box.feature-box-style-6 .feature-box-icon:after {
    border: 3px solid var(--grey-100);
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
    display: block;
    height: 100%;
    left: -4px;
    padding: 1px;
    position: absolute;
    top: -4px;
    width: 100%;
}

.feature-box.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-6 .feature-box-icon .icons {
    color: #a9a9a9;
}

/* Feature Box Icon Size */
.feature-box .feature-box-icon.feature-box-icon-lg {
    width: 3.7em;
    height: 3.7em;
}

.feature-box .feature-box-icon.feature-box-icon-xl {
    width: 4.5em;
    height: 4.5em;
}

/* Reverse All Resolutions */
.feature-box.reverse-allres {
    text-align: right;
    flex-direction: row-reverse;
}

.feature-box.reverse-allres .feature-box-info {
    padding-right: 15px;
    padding-left: 0;
}

.feature-box.reverse-allres.feature-box-style-4 .feature-box-icon {
    justify-content: flex-end;
}

.feature-box.reverse-allres.feature-box-style-4 .feature-box-info {
    padding-right: 0;
}

/* Reverse */
@media (min-width: 992px) {
    .feature-box.reverse {
        text-align: right;
        flex-direction: row-reverse;
    }

    .feature-box.reverse .feature-box-info {
        padding-right: 15px;
        padding-left: 0;
    }

    .feature-box.reverse.feature-box-style-4 .feature-box-icon {
        justify-content: flex-end;
    }

    .feature-box.reverse.feature-box-style-4 .feature-box-info {
        padding-right: 0;
    }
}

/* Full Width */
.featured-boxes-full .featured-box-full {
    text-align: center;
    padding: 55px;
}

.featured-boxes-full .featured-box-full [class*="fa-"], .featured-boxes-full .featured-box-full .icons, .featured-boxes-full .featured-box-full h1, .featured-boxes-full .featured-box-full h2, .featured-boxes-full .featured-box-full h3, .featured-boxes-full .featured-box-full h4, .featured-boxes-full .featured-box-full h5, .featured-boxes-full .featured-box-full h6, .featured-boxes-full .featured-box-full p, .featured-boxes-full .featured-box-full a {
    padding: 0;
    margin: 0;
}

.featured-boxes-full .featured-box-full:not(.featured-box-full-light) [class*="fa-"], .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .icons, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h1, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h2, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h3, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h4, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h5, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h6, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) p, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) a {
    color: var(--light);
}

.featured-boxes-full .featured-box-full .icons, .featured-boxes-full .featured-box-full [class*="fa-"] {
    font-size: 3.9em;
    margin-bottom: 15px;
}

.featured-boxes-full .featured-box-full p {
    padding-top: 12px;
    opacity: 0.8;
}

.featured-boxes-full .featured-box-full.featured-box-full-light {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.featured-boxes-full .featured-box-full.featured-box-full-light:not(:last-child) {
    border-right: 0;
}

.featured-boxes-full .featured-box-full.featured-box-full-light:first-child {
    border-left: 0;
}

/* Icons - Skin */
.icon-featured {
    background-color: var(--primary);
}

/* Featured Box - - Skin */
.featured-box-primary .icon-featured {
    background-color: var(--primary);
}

.featured-box-primary h4 {
    color: var(--primary);
}

.featured-box-primary .box-content {
    border-top-color: var(--primary);
}

.featured-box-primary .box-content-border-bottom {
    border-bottom-color: var(--primary);
}

.featured-box-secondary .icon-featured {
    background-color: var(--secondary);
}

.featured-box-secondary h4 {
    color: var(--secondary);
}

.featured-box-secondary .box-content {
    border-top-color: var(--secondary);
}

.featured-box-secondary .box-content-border-bottom {
    border-bottom-color: var(--secondary);
}

.featured-box-tertiary .icon-featured {
    background-color: var(--tertiary);
}

.featured-box-tertiary h4 {
    color: var(--tertiary);
}

.featured-box-tertiary .box-content {
    border-top-color: var(--tertiary);
}

.featured-box-tertiary .box-content-border-bottom {
    border-bottom-color: var(--tertiary);
}

.featured-box-quaternary .icon-featured {
    background-color: var(--quaternary);
}

.featured-box-quaternary h4 {
    color: var(--quaternary);
}

.featured-box-quaternary .box-content {
    border-top-color: var(--quaternary);
}

.featured-box-quaternary .box-content-border-bottom {
    border-bottom-color: var(--quaternary);
}

.featured-box-dark .icon-featured {
    background-color: var(--dark);
}

.featured-box-dark h4 {
    color: var(--dark);
}

.featured-box-dark .box-content {
    border-top-color: var(--dark);
}

.featured-box-dark .box-content-border-bottom {
    border-bottom-color: var(--dark);
}

.featured-box-light .icon-featured {
    background-color: var(--light);
}

.featured-box-light h4 {
    color: var(--light);
}

.featured-box-light .box-content {
    border-top-color: var(--light);
}

.featured-box-light .box-content-border-bottom {
    border-bottom-color: var(--light);
}

.featured-boxes-style-3 .featured-box.featured-box-primary .icon-featured {
    border-color: var(--primary);
    color: var(--primary);
}

.featured-boxes-style-3 .featured-box.featured-box-secondary .icon-featured {
    border-color: var(--secondary);
    color: var(--secondary);
}

.featured-boxes-style-3 .featured-box.featured-box-tertiary .icon-featured {
    border-color: var(--tertiary);
    color: var(--tertiary);
}

.featured-boxes-style-3 .featured-box.featured-box-quaternary .icon-featured {
    border-color: var(--quaternary);
    color: var(--quaternary);
}

.featured-boxes-style-3 .featured-box.featured-box-dark .icon-featured {
    border-color: var(--dark);
    color: var(--dark);
}

.featured-boxes-style-3 .featured-box.featured-box-light .icon-featured {
    border-color: var(--light);
    color: var(--light);
}

.featured-boxes-style-4 .featured-box.featured-box-primary .icon-featured {
    border-color: var(--primary);
    color: var(--primary);
}

.featured-boxes-style-4 .featured-box.featured-box-secondary .icon-featured {
    border-color: var(--secondary);
    color: var(--secondary);
}

.featured-boxes-style-4 .featured-box.featured-box-tertiary .icon-featured {
    border-color: var(--tertiary);
    color: var(--tertiary);
}

.featured-boxes-style-4 .featured-box.featured-box-quaternary .icon-featured {
    border-color: var(--quaternary);
    color: var(--quaternary);
}

.featured-boxes-style-4 .featured-box.featured-box-dark .icon-featured {
    border-color: var(--dark);
    color: var(--dark);
}

.featured-boxes-style-4 .featured-box.featured-box-light .icon-featured {
    border-color: var(--light);
    color: var(--light);
}

.featured-boxes-style-5 .featured-box.featured-box-primary .icon-featured {
    color: var(--primary);
}

.featured-boxes-style-5 .featured-box.featured-box-secondary .icon-featured {
    color: var(--secondary);
}

.featured-boxes-style-5 .featured-box.featured-box-tertiary .icon-featured {
    color: var(--tertiary);
}

.featured-boxes-style-5 .featured-box.featured-box-quaternary .icon-featured {
    color: var(--quaternary);
}

.featured-boxes-style-5 .featured-box.featured-box-dark .icon-featured {
    color: var(--dark);
}

.featured-boxes-style-5 .featured-box.featured-box-light .icon-featured {
    color: var(--light);
}

.featured-boxes-style-6 .featured-box.featured-box-primary .icon-featured {
    color: var(--primary);
}

.featured-boxes-style-6 .featured-box.featured-box-secondary .icon-featured {
    color: var(--secondary);
}

.featured-boxes-style-6 .featured-box.featured-box-tertiary .icon-featured {
    color: var(--tertiary);
}

.featured-boxes-style-6 .featured-box.featured-box-quaternary .icon-featured {
    color: var(--quaternary);
}

.featured-boxes-style-6 .featured-box.featured-box-dark .icon-featured {
    color: var(--dark);
}

.featured-boxes-style-6 .featured-box.featured-box-light .icon-featured {
    color: var(--light);
}

.featured-boxes-style-8 .featured-box.featured-box-primary .icon-featured {
    color: var(--primary);
}

.featured-boxes-style-8 .featured-box.featured-box-secondary .icon-featured {
    color: var(--secondary);
}

.featured-boxes-style-8 .featured-box.featured-box-tertiary .icon-featured {
    color: var(--tertiary);
}

.featured-boxes-style-8 .featured-box.featured-box-quaternary .icon-featured {
    color: var(--quaternary);
}

.featured-boxes-style-8 .featured-box.featured-box-dark .icon-featured {
    color: var(--dark);
}

.featured-boxes-style-8 .featured-box.featured-box-light .icon-featured {
    color: var(--light);
}

/* Featured Box Modern - Gradient - Skin */
.featured-boxes-modern-style-primary .featured-box {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--quaternary) 100%);
}

.featured-boxes-modern-style-secondary .featured-box {
    background: var(--secondary);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--quaternary) 100%);
}

.featured-boxes-modern-style-tertiary .featured-box {
    background: var(--tertiary);
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--quaternary) 100%);
}

/* Featured Box - Effects - Skin */
.featured-box-effect-2.featured-box-primary .icon-featured:after {
    box-shadow: 0 0 0 3px var(--primary);
}

.featured-box-effect-2.featured-box-secondary .icon-featured:after {
    box-shadow: 0 0 0 3px var(--secondary);
}

.featured-box-effect-2.featured-box-tertiary .icon-featured:after {
    box-shadow: 0 0 0 3px var(--tertiary);
}

.featured-box-effect-2.featured-box-quaternary .icon-featured:after {
    box-shadow: 0 0 0 3px var(--quaternary);
}

.featured-box-effect-2.featured-box-dark .icon-featured:after {
    box-shadow: 0 0 0 3px var(--dark);
}

.featured-box-effect-2.featured-box-light .icon-featured:after {
    box-shadow: 0 0 0 3px var(--light);
}

.featured-box-effect-3.featured-box-primary .icon-featured:after {
    box-shadow: 0 0 0 10px var(--primary);
}

.featured-box-effect-3.featured-box-primary:hover .icon-featured {
    background: var(--primary) !important;
}

.featured-box-effect-3.featured-box-secondary .icon-featured:after {
    box-shadow: 0 0 0 10px var(--secondary);
}

.featured-box-effect-3.featured-box-secondary:hover .icon-featured {
    background: var(--secondary) !important;
}

.featured-box-effect-3.featured-box-tertiary .icon-featured:after {
    box-shadow: 0 0 0 10px var(--tertiary);
}

.featured-box-effect-3.featured-box-tertiary:hover .icon-featured {
    background: var(--tertiary) !important;
}

.featured-box-effect-3.featured-box-quaternary .icon-featured:after {
    box-shadow: 0 0 0 10px var(--quaternary);
}

.featured-box-effect-3.featured-box-quaternary:hover .icon-featured {
    background: var(--quaternary) !important;
}

.featured-box-effect-3.featured-box-dark .icon-featured:after {
    box-shadow: 0 0 0 10px var(--dark);
}

.featured-box-effect-3.featured-box-dark:hover .icon-featured {
    background: var(--dark) !important;
}

.featured-box-effect-3.featured-box-light .icon-featured:after {
    box-shadow: 0 0 0 10px var(--light);
}

.featured-box-effect-3.featured-box-light:hover .icon-featured {
    background: var(--light) !important;
}

/* Feature Box - Skin */
.feature-box .feature-box-icon {
    background-color: var(--primary);
}

.feature-box-primary .feature-box-icon {
    background-color: var(--primary);
}

.feature-box-secondary .feature-box-icon {
    background-color: var(--secondary);
}

.feature-box-tertiary .feature-box-icon {
    background-color: var(--tertiary);
}

.feature-box-quaternary .feature-box-icon {
    background-color: var(--quaternary);
}

.feature-box-dark .feature-box-icon {
    background-color: var(--dark);
}

.feature-box-light .feature-box-icon {
    background-color: var(--light);
}

.feature-box.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-2 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-primary.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box-primary.feature-box-style-2 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-secondary.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box-secondary.feature-box-style-2 .feature-box-icon .icons {
    color: var(--secondary);
}

.feature-box-tertiary.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box-tertiary.feature-box-style-2 .feature-box-icon .icons {
    color: var(--tertiary);
}

.feature-box-quaternary.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box-quaternary.feature-box-style-2 .feature-box-icon .icons {
    color: var(--quaternary);
}

.feature-box-dark.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box-dark.feature-box-style-2 .feature-box-icon .icons {
    color: var(--dark);
}

.feature-box-light.feature-box-style-2 .feature-box-icon [class*="fa-"], .feature-box-light.feature-box-style-2 .feature-box-icon .icons {
    color: var(--light);
}

.feature-box.feature-box-style-3 .feature-box-icon {
    border-color: var(--primary);
}

.feature-box.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-3 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-primary.feature-box-style-3 .feature-box-icon {
    border-color: var(--primary);
}

.feature-box-primary.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box-primary.feature-box-style-3 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-secondary.feature-box-style-3 .feature-box-icon {
    border-color: var(--secondary);
}

.feature-box-secondary.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box-secondary.feature-box-style-3 .feature-box-icon .icons {
    color: var(--secondary);
}

.feature-box-tertiary.feature-box-style-3 .feature-box-icon {
    border-color: var(--tertiary);
}

.feature-box-tertiary.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box-tertiary.feature-box-style-3 .feature-box-icon .icons {
    color: var(--tertiary);
}

.feature-box-quaternary.feature-box-style-3 .feature-box-icon {
    border-color: var(--quaternary);
}

.feature-box-quaternary.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box-quaternary.feature-box-style-3 .feature-box-icon .icons {
    color: var(--quaternary);
}

.feature-box-dark.feature-box-style-3 .feature-box-icon {
    border-color: var(--dark);
}

.feature-box-dark.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box-dark.feature-box-style-3 .feature-box-icon .icons {
    color: var(--dark);
}

.feature-box-light.feature-box-style-3 .feature-box-icon {
    border-color: var(--light);
}

.feature-box-light.feature-box-style-3 .feature-box-icon [class*="fa-"], .feature-box-light.feature-box-style-3 .feature-box-icon .icons {
    color: var(--light);
}

.feature-box.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-4 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-primary.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box-primary.feature-box-style-4 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-secondary.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box-secondary.feature-box-style-4 .feature-box-icon .icons {
    color: var(--secondary);
}

.feature-box-tertiary.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box-tertiary.feature-box-style-4 .feature-box-icon .icons {
    color: var(--tertiary);
}

.feature-box-quaternary.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box-quaternary.feature-box-style-4 .feature-box-icon .icons {
    color: var(--quaternary);
}

.feature-box-dark.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box-dark.feature-box-style-4 .feature-box-icon .icons {
    color: var(--dark);
}

.feature-box-light.feature-box-style-4 .feature-box-icon [class*="fa-"], .feature-box-light.feature-box-style-4 .feature-box-icon .icons {
    color: var(--light);
}

.feature-box.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box.feature-box-style-5 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-primary.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box-primary.feature-box-style-5 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-secondary.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box-secondary.feature-box-style-5 .feature-box-icon .icons {
    color: var(--secondary);
}

.feature-box-tertiary.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box-tertiary.feature-box-style-5 .feature-box-icon .icons {
    color: var(--tertiary);
}

.feature-box-quaternary.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box-quaternary.feature-box-style-5 .feature-box-icon .icons {
    color: var(--quaternary);
}

.feature-box-dark.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box-dark.feature-box-style-5 .feature-box-icon .icons {
    color: var(--dark);
}

.feature-box-light.feature-box-style-5 .feature-box-icon [class*="fa-"], .feature-box-light.feature-box-style-5 .feature-box-icon .icons {
    color: var(--light);
}

.feature-box-primary.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box-primary.feature-box-style-6 .feature-box-icon .icons {
    color: var(--primary);
}

.feature-box-secondary.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box-secondary.feature-box-style-6 .feature-box-icon .icons {
    color: var(--secondary);
}

.feature-box-tertiary.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box-tertiary.feature-box-style-6 .feature-box-icon .icons {
    color: var(--tertiary);
}

.feature-box-quaternary.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box-quaternary.feature-box-style-6 .feature-box-icon .icons {
    color: var(--quaternary);
}

.feature-box-dark.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box-dark.feature-box-style-6 .feature-box-icon .icons {
    color: var(--dark);
}

.feature-box-light.feature-box-style-6 .feature-box-icon [class*="fa-"], .feature-box-light.feature-box-style-6 .feature-box-icon .icons {
    color: var(--light);
}

.featured-boxes-full .featured-box-full-primary {
    background-color: var(--primary);
    color: var(--primary-inverse);
}

.featured-boxes-full .featured-box-full-secondary {
    background-color: var(--secondary);
    color: var(--secondary-inverse);
}

.featured-boxes-full .featured-box-full-tertiary {
    background-color: var(--tertiary);
    color: var(--tertiary-inverse);
}

.featured-boxes-full .featured-box-full-quaternary {
    background-color: var(--quaternary);
    color: var(--quaternary-inverse);
}

.featured-boxes-full .featured-box-full-dark {
    background-color: var(--dark);
    color: var(--dark-inverse);
}

.featured-boxes-full .featured-box-full-light {
    background-color: var(--light);
    color: var(--light-inverse);
}


.btn-main-color{
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-main-color:hover{
    background-color: var(--second-primary);
    border-color: var(--second-primary);
}

.btn-second-color{
    background-color: #ccc;
    border-color: #ccc;
    color: var(--primary);
}

.btn-second-color:hover{
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.text-main-color{
    color: var(--primary);
}

.reservation-select{
    border-radius: 7px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #ccc;
    padding: 5px;
}
