/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
    font-family: Kankanyan;
    src: url(../../assets/fonts/BraindYerevan.otf);
}

@font-face {
    font-family: MardotoRegular;
    src: url(../../assets/fonts/Mardoto-Regular.ttf);
}

@font-face {
    font-family: DejaVuSansCondensed;
    src: url(../../assets/fonts/DejaVuSansCondensed.ttf);
}

@font-face {
    font-family: DejaVuSansExtraLight;
    src: url(../../assets/fonts/DejaVuSans-ExtraLight.ttf);
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

* {
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: MardotoRegular;
    color: #444444;
}

a {
    color: #38a28b;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    text-decoration: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffd673;
    border-top-color: #ecf8f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #38a28b8b;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #38a28b;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: #38a28b;
    color: #fff;
    height: 40px;
    font-size: 16px;
    z-index: 996;
    transition: all 0.5s;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar i {
    padding-right: 6px;
    line-height: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    #header {
        padding: 15px 0;
    }
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#header .logo a {
    color: #555555;
}

#header .logo img {
    height: 55px;
}


/**
* Appointment Button
*/

.appointment-btn {
    margin-left: 25px;
    background: #fff;
    color: #38a28b;
    border: 2px solid #38a28b;
    border-radius: 8px;
    padding: 8px 15px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 1px;
}

.appointment-btn:hover {
    background: #38a28b;
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

#header .navbar {
    padding: 0;
    /* font-family: "Kankanyan" !important; */
    font-weight: 700;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 15px 10px 15px;
    font-size: 16px;
    color: #626262;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 400;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}


/* .navbar ul li:first-child>a {
  margin-right: 5px;
  border-left: 3px solid #ec1c24;
  background: linear-gradient(to right, #ec1c24 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: all .3s ease-out;
} */

.navbar ul li:first-child>a {
    margin-right: 5px;
    border-left: 3px solid #ffd673;
    background: linear-gradient(to right, #ffd673 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right;
    transition: all .3s ease-out;
}

.navbar ul li:nth-child(2)>a {
    margin-right: 5px;
    border-left: 3px solid #38a28b;
    background: linear-gradient(to right, #38a28b 49%, #fff 49%);
    background-size: 200% 100%;
    background-position: right;
    transition: all .3s ease-out;
}

.navbar ul li:nth-child(3)>a {
    margin-right: 5px;
    border-left: 3px solid #f7b6c9;
    background: linear-gradient(to right, #f7b6c9 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right;
    transition: all .3s ease-out;
}

.navbar ul li:nth-child(4)>a {
    margin-right: 5px;
    border-left: 3px solid #a2c0db;
    background: linear-gradient(to right, #a2c0db 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right;
    transition: all .3s ease-out;
}

.navbar ul li:nth-child(5)>a {
    margin-right: 5px;
    border-left: 3px solid #4A59AC;
    background: linear-gradient(to right, #4A59AC 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right;
    transition: all .3s ease-out;
}

.navbar ul li:nth-child(6)>a {
    margin-right: 5px;
    border-left: 3px solid #1e283e;
    background: linear-gradient(to right, #1e283e 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right;
}

.navbar ul li>a:hover,
.navbar ul li>a.active {
    background-position: left;
    color: #fff;
}

@media (max-width: 1200px) {
    #navbar {
        margin-left: 15px;
    }
    #navbar li a {
        font-size: 12px;
    }
    .appointment-btn {
        margin-left: 15px;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #555555;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(60, 60, 60, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #555555;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(60, 60, 60, 0.8);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#hero .carousel-item h2>span {
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
}

#hero .container {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    /* background: rgba(0, 0, 0, 0.3); */
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    /* border-top: 4px solid #3fbbc0; */
}

@media (max-width: 1200px) {
    #hero .container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

#hero h2 {
    font-family: Kankanyan, sans-serif;
    letter-spacing: 2px;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 700;
}

#hero p {
    margin: 0 auto 30px auto;
    color: #555555;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(56, 162, 139, 0.8);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: #38A28B;
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #38a28b;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    transition: 0.3s;
    line-height: 1;
    color: #38a28b;
    background: rgba(0, 0, 0, 0);
    border: 2px solid #38a28b;
    text-align: center;
}

#hero .btn-get-started:hover {
    background: #38a28b;
    color: #fff;
}

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }
    #hero .container {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 160vh;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}


/* .section-bg {
  background-color: #f7fcfc;
} */

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    padding: 1.5rem 0;
    font-size: 40px;
    font-family: Kankanyan, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
}


/* .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #38a28b;
  bottom: 0;
  left: 0;
} */

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 20px 0;
    background-color: #ecf8f9;
    min-height: 40px;
    margin-top: 120px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    background: #38a28b;
    color: #fff;
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    font-size: 28px;
    font-weight: 100;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.cta h3 {
    color: #fff !important;
}

.cta .cta-btn {
    /* font-family: "Roboto", sans-serif; */
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #38a28b;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .section-title h2 {
    background-color: #ffd673;
}

.about .section-title p {
    text-align: justify;
}

.about .row .col-lg-5 img {
    border-radius: 12px;
}

.about .content h3 {
    font-weight: 100;
    font-size: 26px;
    line-height: normal;
    line-height: 36px;
    margin-bottom: 1rem;
}

.about .content h3 span {
    font-family: Kankanyan, DejaVuSansCondensed, sans-serif;
    letter-spacing: 1px;
    border-radius: 5px;
    padding: 3px 10px;
    color: #fff;
}

@media (max-width: 1200px) {
    .about .content h3 {
        text-align: center;
    }
    .about .content h3 strong {
        display: block;
    }
}

.about .content p {
    font-style: italic;
    text-align: left;
    margin-bottom: 1.5rem;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
    font-size: 16px;
    margin-left: 30px;
    line-height: 30px;
}

.about .content ul i,
.tab-content i {
    font-size: 20px;
    padding-right: 10px;
    color: #38a28b;
    float: left;
}

.about .row>p:last-child {
    margin: 1.5rem 0 0;
    text-align: center;
}

.about .row>p:last-child span {
    font-style: italic;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
    background-image: url("../img/slide/Asset0.png");
    background-position: center;
    background-size: cover;
}

.services .section-title h2 {
    background-color: #38a28b;
}

.services .icon-box {
    margin-bottom: 20px;
    margin-left: 20px;
    text-align: center;
    border: 2px solid #38a28b;
    border-radius: 12px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    /* height: 200px; */
}

.services .icon-box:hover {
    background-color: #38a28b;
    color: #fff;
}

.services .row {
    justify-content: center;
}

.services .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #38a28b;
    overflow: hidden;
}

.services .icon i {
    font-size: 36px;
    line-height: 0;
}

.services .icon-box:hover i {
    color: #fff;
}

.services .title {
    font-weight: 100;
    font-size: 20px;
    text-transform: uppercase;
    font-family: DejaVuSansExtraLight;
    position: relative;
}

.services .title a {
    color: #000;
}

.services .icon-box:hover a {
    color: #fff;
}

.services .title a {
    padding-bottom: 10px;
    /* border-bottom: 1px solid #38a28b; */
}

@keyframes flip {
    from {
        -webkit-transform: perspective(100rem) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -180deg);
        transform: perspective(100rem) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -180deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    /* 40% {
    -webkit-transform: perspective(600px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(600px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  } */
    /* 
  50% {
    -webkit-transform: perspective(600px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(600px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  } */
    /* 80% {
    -webkit-transform: perspective(600px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(600px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  } */
    to {
        -webkit-transform: perspective(100rem) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(100rem) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.services .description {
    display: none;
    text-align: center;
    z-index: 11 !important;
}

.services .description p {
    margin-top: 1.5rem;
}

.services .description ul {
    list-style-type: none;
    padding: 15px 0 0 0;
    margin: 0 auto;
    /* text-align: left; */
    display: block;
}

.services .description ul li {
    /* float: left; */
    margin: 0 auto;
    text-align: left;
    margin-left: 32px;
}

.services .description i {
    color: #fff;
    padding-right: 8px;
    float: left;
}

.services .icon-box:hover .description {
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    top: -24px;
    left: -24px;
    width: calc(100% + 48px);
    height: calc(100% + 48px);
    padding: 0 18px;
    border: 2px solid #38a28b;
    border-radius: 12px;
    background-color: #ed3c0d;
    background-color: #38a28b;
    color: #fff;
    animation-name: bounceIn;
    animation-timing-function: ease-in-out;
    animation-duration: 0.5s;
    cursor: pointer;
    overflow: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: blue orange;
    z-index: 9;
}

.services .description::-webkit-scrollbar {
    width: 7px;
}

.services .description::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 10px;
    background-color: #fff;
    background-color: transparent;
}

.services .description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* border-left: 2px solid #ddd; */
    /* border-right: 2px solid #ddd; */
    /* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .3); */
    background-color: #fff;
}


/* .  */


/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/

.appointment .php-email-form {
    width: 100%;
}

.appointment .section-title h2 {
    background-color: #38a28b;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.appointment .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.appointment .php-email-form .error-message br+br {
    margin-top: 25px;
}

.appointment .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.appointment .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.appointment .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
    border-color: #38a28b;
}

.appointment .php-email-form input,
.appointment .php-email-form select {
    height: 44px;
}

.appointment .php-email-form textarea {
    padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
    background: #fff;
    border: 2px solid #38a28b;
    padding: 10px 35px;
    color: #38a28b;
    outline: none;
    transition: 0.3s;
    border-radius: 50px;
    font-family: DejaVuSansCondensed;
}

.appointment .php-email-form button[type="submit"]:hover {
    background: #38a28b;
    color: #f7fcfc;
}


/*--------------------------------------------------------------
# groups
--------------------------------------------------------------*/

.groups .nav-tabs {
    border: 0;
}

.groups .section-title h2 {
    background-color: #f7b6c9;
}

.groups .nav-link {
    border: 0;
    padding: 20px;
    color: #555555;
    border-radius: 0;
    border-left: 5px solid #fff;
    cursor: pointer;
}

.groups .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 0;
}

.groups .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.groups .nav-link:hover h4 {
    color: #f7b6c9;
}

.groups .nav-link.active {
    background: #f7fcfc;
    border-color: #f7b6c9;
}

.groups .nav-link.active h4 {
    color: #f7b6c9;
}

.depServices {
    display: block;
    width: 300px;
    float: left;
}

.depServices p {
    margin-left: 30px;
}

.tab-content i {
    float: left;
    padding-right: 5px;
}

.tab-content p {
    font-size: 18px;
}

.groups .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
}

.groups .tab-pane img {
    float: left;
    max-width: 550px;
    padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
    .groups .tab-pane img {
        float: none;
        padding: 0 0 15px 0;
        max-width: 100%;
    }
}

.groups .tab-pane h3 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #f7b6c9;
}

.groups .tab-pane p {
    color: #777777;
}

.groups .tab-pane i {
    color: #f7b6c9;
}

.groups .tab-pane p:last-child {
    margin-bottom: 0;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*---F
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery {
    overflow: hidden;
}

.gallery .section-title h2 {
    background-color: #a2c0db;
}

.gallery .section-title p {
    text-align: center;
}

.gallery .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #a2c0db;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #a2c0db;
}

.gallery .swiper-slide-active {
    text-align: center;
}

@media (min-width: 992px) {
    .gallery .swiper-wrapper {
        padding: 40px 0;
    }
    .gallery .swiper-slide-active {
        border: 6px solid #a2c0db;
        padding: 4px;
        background: #fff;
        z-index: 1;
        transform: scale(1.2);
        margin-top: 10px;
    }
}

.Scriptcontent {
    display: flex;
    width: 60%;
    margin: 0 auto;
}

.scene {
    -webkit-perspective: 800px;
    perspective: 800px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    /* background: url("https://i.imgur.com/2WQui47.jpg"); */
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
    flex-direction: row;
}

.scene:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.scene:hover .side {
    opacity: 1;
}

.cube {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
    width: 300px;
    height: 300px;
    -webkit-animation: rotate 20s ease-in-out infinite;
    animation: rotate 20s ease-in-out infinite;
    animation-delay: 12s;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.cube:hover {
    animation-play-state: paused;
}

.side {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #333;
    opacity: .95;
    background-size: cover;
    background-repeat: no-repeat;
}

.back {
    -webkit-transform: translateZ(-150px) rotateX(180deg);
    transform: translateZ(-150px) rotateX(180deg);
    background-image: url(https://source.unsplash.com/featured/?nature);
    transition-delay: 2s;
}

.left {
    -webkit-transform: translateX(-150px) rotateY(90deg);
    transform: translateX(-150px) rotateY(90deg);
    background-image: url(https://source.unsplash.com/featured/?tree);
    transition-delay: 2s;
}

.right {
    -webkit-transform: translateX(150px) rotateY(90deg);
    transform: translateX(150px) rotateY(90deg);
    background-image: url(https://source.unsplash.com/featured/?home);
    transition-delay: 2s;
}

.top {
    -webkit-transform: translateY(-150px) rotateX(90deg);
    transform: translateY(-150px) rotateX(90deg);
    background-image: url(https://source.unsplash.com/featured/?car);
    transition-delay: 2s;
}

.bottom {
    -webkit-transform: translateY(150px) rotateX(270deg);
    transform: translateY(150px) rotateX(270deg);
    background-image: url(https://source.unsplash.com/featured/?work);
    transition-delay: 2s;
}

.front {
    -webkit-transform: translateZ(150px);
    transform: translateZ(150px);
    background-image: url(https://source.unsplash.com/featured/?);
    transition-delay: 2s;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
    }
    12.5% {
        -webkit-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }
    25% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    37.5% {
        -webkit-transform: rotateY(270deg);
        transform: rotateY(270deg);
    }
    50% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
    62.5% {
        -webkit-transform: rotateX(90deg);
        transform: rotateX(90deg);
    }
    75% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
    }
    87.5% {
        -webkit-transform: rotateX(270deg);
        transform: rotateX(270deg);
    }
    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
    }
}


/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/

.faq {
    padding: 60px 0;
}

.faq .section-title h2 {
    background-color: #4A59AC;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list .question:hover {
    background: linear-gradient(to right, #4a59ac, #FFF);
    background-size: 130% 3%;
}

[aria-expanded="true"] {
    background: linear-gradient(to right, #4a59ac, #FFF);
    background-size: 130% 3%;
    color: #fff;
    transition: .3s;
    padding: 10px;
}

.faq .faq-list li {
    border-bottom: 1px solid #d9f1f2;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list .question {
    padding: 10px;
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 35px;
    cursor: pointer;
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
    padding-top: 10px;
    margin: 0 10px 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: #444444;
}

.faq .faq-list .collapsed:hover {
    color: #fff;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
    padding: 20px 0 30px 0;
}

.contact .section-title h2 {
    background-color: #1e283e;
}

.contact .info-box i {
    font-size: 32px;
    color: #38a28bcc;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #38a28bcc;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .subscription h4 {
    font-size: 20px;
    font-weight: 700;
}

.contact .subscription p {
    font-size: 16px;
    line-height: 24px;
    float: left;
}

.contact form {
    display: inline-flex;
    float: right;
    padding-top: 4.5rem;
}

@media (max-width: 991px) {
    .contact form {
        float: left;
        padding: 1rem 0;
        margin-top: 0 !important;
    }
}

.contact input[type="email"] {
    text-indent: 15px;
    font-size: 16px;
    border: 1px solid #38a28b;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: none;
}

.contact input[type="submit"] {
    background: #38a28bbb;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border: 1px solid #38a28b;
    border-left: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    float: right;
}

.contact input[type="submit"]:hover {
    background: #38a28b;
}

.contact .social-links {
    padding-bottom: 1.5rem;
}

.contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #38a28b9c;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.contact .social-links a:hover {
    background: #38a28b;
    text-decoration: none;
}

#thank-you-message {
    display: none;
}

#errorMessage {
    display: none;
}

#thank-you-message.show {
    display: inline-block;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background-color: #eee;
    padding: 1rem 0;
}

#footer .copyright {
    text-align: center;
    padding-top: 1rem;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
}

footer .heart {
    display: inline-block;
    margin-bottom: 12px;
    -webkit-animation: animateHeart 1.5s infinite;
    animation: animateHeart 1.5s infinite
}

footer .heart:after,
footer .heart:before {
    position: absolute;
    content: '';
    top: 0;
    left: 8px;
    width: 8px;
    height: 13px;
    background: #f34235;
    border-radius: 60px 60px 0 0;
    -webkit-transform: rotate(-45deg) translateZ(0);
    transform: rotate(-45deg) translateZ(0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%
}

footer .heart:after {
    left: 0;
    -webkit-transform: rotate(45deg) translateZ(0);
    transform: rotate(45deg) translateZ(0);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

@-webkit-keyframes animateHeart {
    0% {
        -webkit-transform: scale(1)
    }
    5% {
        -webkit-transform: scale(1.2)
    }
    10% {
        -webkit-transform: scale(1.1)
    }
    15% {
        -webkit-transform: scale(1.3)
    }
    50% {
        -webkit-transform: scale(1)
    }
    100% {
        -webkit-transform: scale(1)
    }
}

@keyframes animateHeart {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    5% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    10% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    15% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}