@import url(../css/all.min.css);
@import url(../css/bootstrap.css);
@import url(../css/owl.carousel.min.css);
@import url(../css/owl.theme.default.min.css);
@import url(../css/animate.css);
@import url('https://fonts.cdnfonts.com/css/dubai');


*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #0671D4;
    --sub-color: #28323C;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Dubai', sans-serif;
    background-color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Dubai', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}



.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}



.hamburger, .is-closed {
    width: 35px;
    height: 35px;
    position: absolute;
    z-index: 9;
    left: 15px;
    top: 20px;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    transition: background-color .2s linear;
    margin-right: 0px;
    background-color: transparent;
}

.hamburger span, .is-closed span {
    width: 20px;
    height: 2px;
    border-radius: 0px;
    background-color: var(--sub-color);
    display: block;
    margin-bottom: 4px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.is-closed span:nth-child(1) {
    transform: rotate(45deg)
}

.is-closed span:nth-child(2) {
    display: none;
}

.is-closed span:nth-child(3) {
    transform: rotate(135deg);
    margin-top: -5px;
}

.opt-mobail {
    display: none;
}

.opt-mobail .lang-site {
    position: absolute;
    right: 15px;
    top: 25px;
    display: none
}
.opt-mobail .lang-site a {
    color: var(--main-color);
    font-weight: 500;
}

.icon-book {
    border: 2px solid #f00;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    display: block;
}
/* Style Header */

#header {
    width: 100%;
    padding: 10px 0;
    position: relative;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9;
}
#header:before {
    content: "";
    background: url(../images/top-butterfly.svg);
    background-size: 100% 100%;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 20px;
    right: 340px;
    z-index: 9;
}
#header:after {
    content: "";
    background: #0671D4;
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.logo-site a {
    display: inline-block;
    background: #fff;
    border-radius: 50%;
}

.logo-site img {
    width: 210px;
}
.menu-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.btn-contact {
    background: #0671D4;
    padding: 5px 15px;
    color: #fff;
    font-weight: 500;
    font-size: 16px
}
.social-media {
    display: flex;
    margin: 0 15px;
    padding: 0 15px;
    position: relative;
}
.social-media:before {
    content: "";
    background: #808D9E;
    width: 0.5px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.social-media:after {
    content: "";
    background: #808D9E;
    width: 0.5px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.social-media li {
    margin: 0 8px;
}
.social-media li a img {
    width: 20px;
}
.menu-end ul {
    display: flex;
    align-items: center;
}
.menu-end ul li {
    margin-left: 20px;
}
.menu-end ul li:last-child {
    margin-left: 0;
}
.menu-end a {
    color: #0671D4;
    font-weight: 500;
}
.icon-search {
    background: url(../images/svg/search.svg);
    background-size: 100% 100%;
    width: 19px;
    height: 19px;
    display: block;
}

.main_menu {
    display: flex;
}

.main_menu > li {
    margin-left: 25px;
}

.main_menu > li:last-child {
    margin-left: 0;
}

.main_menu > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    background: #fff;
    box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.20);
    color: #000;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    width: 130px;
    height: 90px;
    border-radius: 6px;
}

.main_menu > li > a svg {
    margin-bottom: 10px;
}
.main_menu > li.lst-about a {
    border-color: #BBE62E;
    color: #BBE62E;
}
.main_menu > li.lst-services a {
    border-color: #0671D4;
    color: #0671D4;
}
.main_menu > li.lst-events a {
    border-color: #FAC751;
    color: #FAC751;
}
.main_menu > li.lst-team a {
    border-color: #F9ADA5;
    color: #F9ADA5;
}
.main_menu > li.lst-blogs a {
    border-color: #652881;;
    color: #652881;;
}
.main_menu > li.lst-contact a {
    border-color: #E21524;;
    color: #E21524;;
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-menu.show {
    display: block;
    min-width: 100%;
    left: 50% !important;
    transform: translate(-50%, 90px) !important;
    border-radius: 10px;
    text-align: center;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 5px;
}

/* Style Home Slide */

.section_home {
    position: relative;
    background: #0671D4;
    padding: 120px 0 50px;
    z-index: 1;
}
.section_home .row {
    align-items: center;
}
.section_home .container {
    position: relative;
}
.section_home .container:before {
    content: "";
    background: url(../images/before-home.svg);
    background-size: 100% 100%;
    width: 100%;
    height: 10px;
    position: absolute;
    left: 0;
    bottom: -7px;
}
.home_txt {
    position: relative;
}
.home_txt:before {
    content: "";
    background: url(../images/butterfly-home.svg);
    background-size: 100% 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -120px;
    left: 260px;
}
.home_txt h1 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 35px;
    line-height: 1.8;
}

.home_txt p {
    color: #fff;
    font-size: 20px;
    line-height: 1.8;
}
.thumb-home {
    position: relative;
}
.thumb-home:before {
    content: "";
    background: url(../images/sun.svg);
    background-size: 100% 100%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -120px;
    right: -90px;
}
.thumb-home:after {
    content: "";
    background: url(../images/star.svg);
    background-size: 100% 100%;
    width: 310px;
    height: 100px;
    position: absolute;
    top: -150px;
    left: -170px;
}

/* Style Stac Site */

.sec_head {
    margin-bottom: 40px;
    position: relative;
    text-align: center
}

.sec_head h2 {
    color: #000;
    font-weight: 600;
    font-size: 34px;
    position: relative;
}

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    margin: 30px 0 0;
    border-radius: 0;
    justify-content: center;
    background: #0671D4;
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #EBEBEB;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span {
    color: #fff;
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
}
.btn-site:hover span {
    color: #000;
}

/* Style Service */

.section_services {
    position: relative;
    padding: 50px 0;
}
.section_services:before {
    content: "";
    background: #0671D4;
    width: 100%;
    height: 40%;
    position: absolute;
    top: 0;
    left: 0;
}
.section_services:after {
    content: "";
    background: #BBE62E;
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.section_services .item {
    padding: 110px 0;
}
.txt-service {
    background: #fff;
    border-radius: 50%;
    padding: 20px;
    width: 250px;
    height: 250px;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}
.center .txt-service {
    transform: scale(1.8);
    background: #94CC80;
    border: 5px solid #fff !important;
    transition: .5s;
}
.center .txt-service h4,
.center .txt-service p {
    transform: scale(1);
    color: #fff;
}
.txt-service p {
    margin-top: 15px;
    display: none;
}
.center .txt-service p {
    display: block;
    font-size: 10px;
}
.owl-item.active .txt-service {
    border: 3.5px solid #0671D4
}
.active .item .txt-service h4 {
    color: #0671D4
}
.center ~ .owl-item.active .item .txt-service {
    border: 3.5px solid #CED982 !important
}
.center ~ .owl-item.active .item .txt-service h4 {
    color: #CED982;
}
.center .txt-service h4 {
    font-size: 18px;
    color: #fff !important;
}
#service-slider .owl-nav > button {
    position: absolute;
    top: 162px;
    color: #fff !important;
    font-size: 24px !important;
    right: 0;
}
#service-slider .owl-nav > button.owl-prev {
    left: 0;
    right: auto;
}

/* Style Story */

.section_story {
    background: #BBE62E;
    padding: 20px 0 0;
    position: relative;
}
.section_story .container {
    position: relative;
}
.section_story .container:before {
    content: "";
    background: url(../images/shape-story.svg);
    background-size: 100% 100%;
    width: 500px;
    height: 170px;
    position: absolute;
    right: 40px;
    bottom: 0;
}
.section_story .container:after {
    content: "";
    background: url(../images/story-flower.svg);
    background-size: 100% 100%;
    width: 130px;
    height: 130px;
    position: absolute;
    left: 0px;
    bottom: -10px;
}
.txt-story {
    padding-top: 80px;
}
.txt-story h2 {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 40px;
    position: relative
}
.txt-story h2:before {
    content: "";
    background: url(../images/ph-shape.svg);
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -40px;
    right: -25px;
}
.txt-story p {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

/* Style Statistics  */

.section_statistics {
    background: var(--main-color);
    position: relative;
    padding: 80px 0;
}
.section_statistics .container {
    position: relative;
}
.section_statistics .container:before {
    content: "";
    background: url(../images/shape-statistic.svg);
    background-size: 100% 100%;
    width: 140px;
    height: 100px;
    position: absolute;
    top: -70px;
    left: 0;
}
.item-statistic {
    text-align: center;
    position: relative;
}
.item-statistic h3,
.item-statistic span {
    color: #fff;
    margin-bottom: 20px;
    font-size: 40px;
    display: inline-block
}
.item-statistic p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

/* Style Gallery */

.section_gallery {
    position: relative;
    padding: 30px 0 0;
}
.item-gallery {
    position: relative;
    overflow: hidden
}
.item-gallery:hover:before {
    content: "";
    background: rgba(0, 0, 0, 0.50);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.item-gallery figure {
    margin-bottom: 0;
}
.item-gallery figure img {
    height: 730px;
    object-fit: cover
}
.item-gallery .txt-gallery {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    text-align: center;
    height: 100%;
    width: 100%;
    z-index: 9;
    transition: .5s;
}

.item-gallery:hover .txt-gallery {
    transform: translateY(-100%)
}

.txt-gallery p {
    color: #fff;
    margin-top: 20px;
}

/* Style Testimonial */

.section_testimonial {
    padding: 80px 0;
    position: relative;
}
.section_testimonial:after {
    content: "";
    background: url(../images/shape-testi.svg);
    background-size: cover;
    width: 370px;
    height: 500px;
    position: absolute;
    left: 0;
    top: 0;
}
.section_testimonial:before {
    content: "";
    background: url(../images/sun.svg);
    background-size: 100% 100%;
    width: 230px;
    height: 200px;
    position: absolute;
    top: -20px;
    right: 0;
}
.item-testimonial {
    padding: 50px;
    text-align: center;
    position: relative;
    width: 50%;
    margin: auto;
}
.item-testimonial:before,
.item-testimonial:after {
    content: "";
    background: url(../images/quote.svg);
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: -20px;
}
.item-testimonial:after {
    bottom: 0;
    top: auto;
    right: auto;
    left: -20px;
    transform: scale(-1);
}
.item-testimonial p {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.8;
}
.item-testimonial h5 {
    font-size: 24px;
}
#testimonial-slider .owl-nav {
    display: block !important;
}
#testimonial-slider .owl-nav > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color) !important;
    font-size: 40px !important;
    right: 200px;
}
#testimonial-slider .owl-nav > button.owl-prev {
    left: 200px;
    right: auto;
}

/* Style Team */

.section_team {
    padding: 100px 0 200px;
    position: relative;
    background: url(../images/shape-team.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 270px;
}
.section_team:before {
    content: "";
    background: url(../images/shape-heart.svg);
    background-size: 100% 100%;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 50px;
}
.section_team:after {
    content: "";
    background: #F5F3F2;
    width: 100%;
    height: 460px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.section_team .container {
    position: relative;
}
.section_team .container:after {
    content: "";
    background: url(../images/shape-pencil.svg);
    background-size: 100% 100%;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -180px;
    right: 0;
}
.section_team .item {
    padding: 30px 20px;
}
.item-team {
    position: relative;
    text-align: center;
}
.item .item-team:first-child {
        margin-bottom: 70px;
}
.item-team figure {
    text-align: center;
    position: relative;
    width: 180px;
    margin: 0 auto 55px;
}
.item-team .span1:before {
    content: "";
    background: var(--main-color);
    width: 180px;
    height: 10px;
    position: absolute;
    top: -30px;
    right: -30px;
}
.item-team .span1:after {
    content: "";
    background: var(--main-color);
    width: 10px;
    height: 170px;
    position: absolute;
    top: -30px;
    right: -30px;
}
.item-team .span2:before {
    content: "";
    background: var(--main-color);
    width: 180px;
    height: 10px;
    position: absolute;
    bottom: -30px;
    left: -30px;
}
.item-team .span2:after {
    content: "";
    background: var(--main-color);
    width: 10px;
    height: 170px;
    position: absolute;
    bottom: -30px;
    left: -30px;
}
.item-team figure img {
    width: 180px !important;
    height: 170px;
    margin: auto;
}
.txt-team h6 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px
}
.txt-team p {
    font-weight: 500;
    color: #000;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#team-slider .owl-nav {
    display: block !important;
}
#team-slider .owl-nav > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #000 !important;
    font-size: 30px !important;
    right: -40px;
}
#team-slider .owl-nav > button.owl-prev {
    left: -40px;
    right: auto;
}

/* Style Events */

.section_events {
    position: relative;
    padding: 80px 0;
    background: #F5F3F2
}
.section_events .sec_head h2 {
    position: relative;
    display: inline-block;
}
.section_events .sec_head h2:before {
    content: "";
    background: url(../images/story-flower.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -40px;
    left: -170px;
}
.item-event {
    position: relative;
    background: #fff;
}
.txt-event {
    background: #fff;
    padding: 15px;
}
.txt-event h4 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}
.txt-event p {
    color: #000;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
}
.txt-event .btn-site {
    border-radius: 30px;
    padding: 8px 45px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}
.item-event ul {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
}
.item-event li {
    margin-right: 10px;
}
.item-event li span {
    background: #BBE62E;
    color: #fff;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 10px;
    font-size: 13px;
}
#events-slider .item {
    padding: 30px 0;
}
#events-slider .owl-dots {
    text-align: center;
    display: block !important;
    padding-top: 40px;
}
#events-slider .owl-dot span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #D9D9D9;
    display: block;
    margin: 0 5px;
}
#events-slider .owl-dot.active span {
    background: var(--main-color);
}

/* Style Blogs */

.section_blogs {
    position: relative;
    padding: 140px 0 70px;
}
.section_blogs:before {
    content: "";
    background: url(../images/shape-blog.svg);
    background-size: 100% 100%;
    width: 180px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
}
.section_blogs:after {
    content: "";
    background: url(../images/after-blog.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 250px;
    position: absolute;
    bottom: -30px;
    left: -10px;
    z-index: 9;
}
#blogs-slider {
    width: 80%;
    margin: auto;
}
.txt-blog h4 {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}
.txt-blog p {
    color: #5C5C5C;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 20px;
}
.txt-blog span {
    font-size: 14px;
    margin-left: 10px;
    display: inline-block;
    color: #5C5C5C
}
.txt-blog small {
    background: #BBE62E;
    padding: 10px 10px;
    border-radius: 40px;
    color: #fff;
}
#blogs-slider .owl-nav {
    display: block !important;
}
#blogs-slider .owl-nav > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color) !important;
    font-size: 40px !important;
    right: -70px;
}
#blogs-slider .owl-nav > button.owl-prev {
    left: -70px;
    right: auto;
}

/* Style Book Appointments */

.section_Book_appointments {
    position: relative;
    background: rgba(187, 230, 46, 0.5);
    padding: 60px 0;
}
.section_Book_appointments .container {
    position: relative;
}
.section_Book_appointments .container:before {
    content: "";
    background: url(../images/appoint.png);
    background-size: 100% 100%;
    width: 400px;
    height: 400px;
    position: absolute;
    bottom: -60px;
    left: 110px;
}
.section_Book_appointments .container:after {
    content: "";
    background: url(../images/shape-appoint.svg);
    background-size: 100% 100%;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 60px;
    left: 320px;
}
.cont-appointment {
    width: 60%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.05);
    padding: 70px 35px 35px 70px;
}
.cont-appointment h4 {
    color: var(--main-color);
    margin-bottom: 30px;
}
.form-appoint .form-group {
    margin-bottom: 20px;
    position: relative;
}
.form-appoint .form-control {
    border-radius: 0;
    border: 1px solid #BBE62E;
    height: 45px;
}
.form-appoint .form-control::placeholder {
    color: #808D9E;
    font-size: 14px;
}
.form-appoint .form-select {
    padding: 10px 15px;
    background-position: right 7.75rem center;
}
.form-appoint .btn-site {
    height: 45px;
    width: 250px;
}

/* Style Contact */

.section_contact {
    position: relative;
    padding: 70px 0;
}
.section_contact .sec_head {
    text-align: start;
}
.section_contact .sec_head p {
    color: #000;
    font-weight: 400;
    font-size: 18px;
    margin-top: 20px;
}
.section_contact .form-group {
    margin-bottom: 20px;
}
.section_contact .form-group:last-child {
    margin-bottom: 0;
}
.form-contact .form-control {
    border: 1px solid #5C5C5C;
    height: 45px;
    border-radius: 0;
}
.form-contact textarea.form-control {
    height: 300px
}
.form-contact .btn-site {
    background: #BBE62E;
    width: 100%;
    height: 45px;
}

.contact-ifo {
    background: var(--main-color);
    padding: 60px;
    height: 100%;
}
.dta-contact:last-child {
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 40px;
}
.dta-contact h4 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #fff;
}
.hd-contact li {
    display: block;
    margin-bottom: 20px;
}
.hd-contact li a {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}
.hd-contact li a svg {
    width: 30px;
    margin-left: 15px
}
.social-media-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-media-contact li {
    margin: 0 25px;
}
.social-media-contact li a {
    color: #fff;
    font-size: 45px;
}


/* Style Fotter */

footer {
    position: relative;
    background: url(../images/bg-footer.png);
    padding: 40px 0 20px;
}

.menu-ft h5 {
    color: #000;
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.menu-ft ul li {
    margin-bottom: 15px;
}
.menu-ft ul li a {
    color: #000;
    font-size: 14px;
}
.li-ft li a:hover {
    color: var(--main-color);
}
.lst-map {
    display: flex;
    flex-wrap: wrap;
}
.lst-map li {
    width: 50%;
}

.list-contact li {
    display: block;
    margin-bottom: 10px;
    color: #fff
}

.list-contact li a {
    color: #000;
    display: flex;
    font-size: 18px;
    align-items: center;
}

.list-contact li a:hover {
    opacity: .5
}

.list-contact li a svg {
    margin-right: 10px;
}
.form-subs {
    position: relative;
}
.form-subs .form-control {
    border: 1px solid #A0AEC0;
    height: 45px;
    border-radius: 0;
    background: transparent;
}
.form-subs .btn-site {
    position: absolute;
    top: 0;
    left: 0;
    height: 45px;
    margin: 0;
}

.bottom-ft {
    padding: 15px 0 0;
    text-align: center;
}

.copyRight {
    color: #000;
    font-size: 14px;
}


.modal-content {
    border-radius: 0;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 9;
}

.close-modal a {
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.modal-dialog {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0
}

.cont-search {
    padding: 40px;
}

.cont-search h5 {
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form-search .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-search .form-control {
    height: 45px;
    border: 1px solid #E2E0E0;
    border-radius: 0;
    margin-right: 10px;
}

.form-search .btn-site {
    height: 45px;
    margin: 0;
    width: 45px;
}

/* Style Event Inner Page */

.event_inner_page {
    position: relative;
    background: #0671D4;
    padding: 120px 0 50px;
}
.event_inner_page .container {
    position: relative;
}
.event_inner_page .container:before {
    content: "";
    background: url(../images/butterfly-home.svg);
    background-size: 100% 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}
.head-reg {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}
.head-reg:before {
    content: "";
    background: url(../images/star.svg);
    background-size: 100% 100%;
    width: 310px;
    height: 100px;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}
.head-reg:after {
    content: "";
    background: url(http://127.0.0.1:63149/images/sun.svg);
    background-size: 100% 100%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -120px;
    right: -90px;
}
.head-reg h1 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #fff;
}
.head-reg .btn-site {
    background: #fff;
    margin: 0 auto;
}
.head-reg .btn-site span {
    color: var(--main-color);
    font-weight: 500;
    font-size: 17px;
}
.event_inner_page .row {
    align-items: center;
}
.txt--event,
.areas--specialization {
    padding-right: 40px;
}
.txt--event span {
    background: #BBE62E;
    color: #fff;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 15px;
    margin-left: 30px;
    font-size: 13px;
}
.txt--event span:last-child {
    margin-left: 0
}
.txt--event h3 {
    color: #fff;
    margin: 30px 0;
}
.txt--event p {
    color: #fff;
    font-size: 19px;
    line-height: 2;
    margin-bottom: 30px;
}
.txt--event a {
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 22px;
    text-decoration: underline !important;
}
.txt--event a svg {
    width: 30px;
    margin-left: 15px;
}

.areas--specialization h5 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}
.areas--specialization p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}
.areas--specialization li {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    background: rgb(255 255 255 / 30%);
    padding: 5px 15px;
    border-radius: 30px;
    margin: 0 0 10px 5px;
}
.thumb-event {
    text-align: center;
}
.thumb-event img {
}

.section_reg {
    position: relative;
    padding: 30px 0;
    background: rgba(187, 230, 46, 0.50);
}
.cont-contact {
    background: #fff;
    padding: 30px 50px;
    border-radius: 15px;
    position: relative;
    z-index: 1
}
.cont-contact:before {
    content: "";
    background: url(../images/shape-statistic.svg);
    background-size: 100% 100%;
    width: 170px;
    height: 150px;
    position: absolute;
    top: 180px;
    left: -100px;
    z-index: -1
}
.cont-contact:after {
    content: "";
    background: url(../images/shape-statistic.svg);
    background-size: 100% 100%;
    width: 170px;
    height: 150px;
    position: absolute;
    bottom: 40px;
    right: -116px;
    z-index: -1
}
.sec-head {
    text-align: center;
    margin-bottom: 40px;
}
.sec-head h4 {
    color: var(--main-color);
    font-size: 28px;
}
.form-reg .form-group {
    margin-bottom: 20px;
}
.form-reg .form-group:last-child {
    margin-bottom: 0;
}
.form-reg .form-control {
    border: 1px solid #AFAFAF;
    height: 45px;
    border-radius: 0;
}
.form-reg textarea.form-control {
    height: 200px
}
.form-reg .btn-site {
    width: 140px;
    height: 45px;
    margin: 0 auto;
}

.section_gallery_event {
    padding: 60px 0 120px
}
.item--gallery img {
    border-radius: 10px;
}
#gallery--slider .owl-dots {
    text-align: center;
    display: block !important;
    padding-top: 40px;
}
#gallery--slider .owl-dot span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #D9D9D9;
    display: block;
    margin: 0 5px;
}
#gallery--slider .owl-dot.active span {
    background: var(--main-color);
}

.section-event-inner {
    position: relative;
    padding: 0 0 140px;
}
.section-event-inner .item-event {
    position: relative;
    background: #fff;
    box-shadow: 0px 22px 35px 0px rgba(0, 0, 0, 0.05);
}
.nav-tabs {
    border-bottom: 0;
    margin-bottom: 40px;
}
.nav-item {
    flex: 1;
}
.nav-tabs .nav-link {
    width: 100%;
    height: 60px;
    margin: 0;
    background: #F6F6F6;
    border: 0;
    color: #0671D4;
    font-weight: 500;
    border-radius: 0;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #fff;
    background-color: var(--main-color);
    border: 0;
}

/* Style Blog Details */

.blog_inner_page {
    position: relative;
    padding: 120px 0 50px;
}
.blog_inner_page:before {
    content: "";
    background: #DDF396;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.header-blog:after {
    background: #ddf396 !important;
    height: 150px !important;
}
.head-blog {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}
.head-blog:before {
    content: "";
    background: url(../images/star-blog.svg);
    background-size: 100% 100%;
    width: 310px;
    height: 100px;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}
.head-blog:after {
    content: "";
    background: url(../images/butterfly-home.svg);
    background-size: 100% 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}
.head-blog h1 {
    color: #000;
    font-size: 34px;
    margin-bottom: 30px;
}
.thumb-blog {
    position: relative;
    margin-bottom: 70px;
}
.title-blog {
    position: relative;
    width: 83%;
    margin: 0 auto;
}
.title-blog h2 {
    color: #000;
    font-size: 40px;
    margin-bottom: 20px;
}
.title-blog li {
    display: inline-block;
    margin-left: 30px;
    color: #757575;
    font-size: 18px;
}

.ph-blog p {
    width: 83%;
    margin: 50px auto;
    color: #2D2D2D;
    font-size: 18px;
    line-height: 2;
}


.hd-blogs {
    margin-bottom: 40px;
    background: #F6F6F6
}
.hd-blogs h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    height: 60px;
    background: var(--main-color);
    width: 33.3334%;
    line-height: 60px;
    text-align: center;
}