@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Sacramento&display=swap');
:root {
    --theme-color: #000;
    --theme-bg: #055988;
    --theme-title: #000;
    --theme-btn-bg: #2A86BB;
    --light-gray: #f5f5f5;
    --red-color: #f00;
    --light-green: #54b352;
    --font-bootstrap-icon: 'bootstrap-icons';
    --white-color: #fff;
    --gray-color: #d0d1d2;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: var(--theme-color);
}

.ShowOverlayDesk {
    position: relative;
    width: 100%;
    height: 100vh;
}

.ShowOverlayDesk::before {
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
    transition: all 0.8s;
    animation: fadeIn 0.8s;
    -webkit-animation: fadeIn 0.8s;
    -moz-animation: fadeIn 0.8s;
    -o-animation: fadeIn 0.8s;
    -ms-animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a,
button,
.btn {
    transition: all 0.8s;
}

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

input,
input:focus,
input:active,
select:focus,
select:active,
option:focus,
option:active,
textarea:focus,
textarea:active,
button:focus,
button:active,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active,
.form-control:focus,
.form-control:active {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    margin: 0px;
    padding: 0px;
}

h1,
.h1 {
    font-size: 70px;
    line-height: 50px;
    color: var(--theme-title);
    font-family: 'Sacramento', cursive;
}

h2,
.h2 {
    font-size: 45px;
    line-height: 44px;
    color: var(--theme-title);
    font-family: 'Sacramento', cursive;
}

h3,
.h3 {
    font-size: 36px;
    line-height: 38px;
    color: var(--theme-title);
    font-family: 'Sacramento', cursive;
}

h4,
.h4 {
    font-size: 30px;
    line-height: 32px;
    color: var(--theme-title);
}

h5,
.h5 {
    font-size: 25px;
    line-height: 26px;
    color: var(--theme-title);
}

h6,
.h6 {
    font-size: 20px;
    line-height: 26px;
    color: var(--theme-title);
}

.subTitle {
    font-family: 'Sacramento', cursive;
    font-size: 30px;
    font-weight: 400;
    color: #575757;
}

a,
a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    color: var(--theme-title);
}

img {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    max-width: 100%;
}

p a {
    color: var(--theme-title);
}

p {
    line-height: 26px;
    margin-bottom: 15px;
}

p strong {
    font-family: var(--font-medium);
}

p span {
    display: block;
}

ol li {
    list-style-type: decimal;
    padding-bottom: 10px;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    right: 24px;
    bottom: 24px;
    overflow: hidden;
   
}

.scroll-top-wrapper .scroll-top-inner {
    color: var(--black-color);
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 44px;
    border: 2px solid var(--theme-btn-bg);
    border-radius: 55px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.scroll-top-wrapper .scroll-top-inner i {
    font-size: 26px;
}

.scroll-top-wrapper:hover .scroll-top-inner {
    background: var(--theme-title);
    color: var(--white-color);
    border: none;
    border: 1px solid var(--white-color);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

::-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #949494 !important;
    opacity: 1;
}

:-moz-placeholder {
    color: #949494 !important;
    opacity: 1;
}

.section-title .h1 {
    display: block;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: var(--font-medium);
    position: relative;
}

.section-title.btm-line .h1:before {
    width: 60%;
    height: 0px;
    border-bottom: 5px dotted var(--theme-background);
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    margin: auto;
}

section,
footer {
    width: 100%;
    padding: 50px 0;
}

.btn-primary {
    background: var(--theme-btn-bg);
    border: 1px solid var(--theme-btn-bg);
    border-radius: 30px;
    color: var(--white-color);
    padding: 9px 30px;
    transition: all 0.8s;
    font-size: 18px;
}

.btn-primary:focus,
.btn-primary:hover {
    background: var(--white-color);
    color: var(--black-color);
    border: 1px solid var(--white-color);
}

.btn-secondry {
    background: var(--white-color);
    border-radius: 10px;
    color: var(--black-color);
    border: 1px solid var(--white-color);
    padding: 9px 30px;
    transition: all 0.8s;
}

.btn-secondry:focus,
.btn-secondry:hover {
    background: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--black-color);
}


/* ---------- nava css ------- */

.HeaderNav.fixedheader #navbarTogglerDemo {
    margin-top: -15px;
    padding-bottom: 0px;
}

.HeaderNav .navbar-nav {
    display: flex;
    width: 100%;
    justify-content: center;
}

.main-nav .container {
    position: relative;
}

.main-nav.fixedheader {
    position: fixed;
    width: 100%;
    background: var(--white-color);
    z-index: 9;
    left: 0;
    top: 0;
    box-shadow: 0 0 5px rgb(236, 236, 236, 0.5);
    animation: slide-down 0.5s;
    padding-bottom: 10px;
}

.main-nav.fixedheader .HeaderNav {
    margin-top: 10px;
}

.fixedheader .navbar-brand img {
    width: 40%;
    transition: all 0.8s;
}

.main-nav.fixedheader .navbar .nav-item a {
    padding: 7px 18px;
    font-size: 18px;
}

.main-nav .navbar .nav-item a {
    padding: 10px 25px;
    margin: 0 2px;
    display: block;
    color: var(--theme-color);
    font-weight: 300;
    font-size: 22px;
    /* font-weight: 400;
    font-size: 35px;
    font-family: 'Sacramento', cursive; */
    transition: all 1s;
    position: relative;
}

.main-nav .navbar .nav-item:hover>a,
.main-nav .navbar .nav-item a:focus,
.main-nav .navbar .nav-item.active>a {
    color: var(--white-color);
    background: var(--theme-color);
    border-radius: 35px;
}

.main-nav .navbar .nav-item.dropdown>a::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: .255em;
    content: "";
    position: relative;
    top: 2px;
    border: solid var(--theme-color);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.main-nav .navbar .nav-item.dropdown>a:hover::after {
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
}

.navbar-expand-lg .navbar-nav .sub-menu li:hover>a,
.navbar-expand-lg .navbar-nav .sub-menu li.active>a {
    color: var(--white-color);
    background: var(--theme-color);
}

.navbar-nav .dropdown:hover .sub-menu {
    display: block;
}

.navbar-expand-lg .navbar-nav .sub-menu {
    padding: 0;
    border-radius: 5px;
    white-space: nowrap;
    transition: all 0.8s;
    animation: 0.8s slide-up;
    background: var(--white-color);
	display: none;
}

.navbar-expand-lg .navbar-nav .sub-menu li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--gray-color);
    background: var(--white-color);
    position: relative;
}

@keyframes slide-up {
    from {
        margin-top: 10%;
        height: 100%;
    }
    to {
        margin-top: 0%;
        height: 100%;
    }
}

.navbar-expand-lg .navbar-nav .sub-menu li:last-child a {
    border-bottom: none;
}

.navbar-expand-lg .navbar-nav .sub-menu li a {
    margin: 0;
}

.navbar-expand-lg .navbar-nav .sub-menu li a,
.navbar-expand-lg .navbar-nav .sub-menu li a:hover {
    border-radius: 0;
}

.navbar-nav>.dropdown>a::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: .255em;
    content: "";
    position: relative;
    top: 2px;
    border: solid var(--black-color);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

button.sub-menu-toggle {display: none;}
.navbar-expand-lg .navbar-nav .sub-menu{position: absolute;}
/* --------- Home css ------- */

.HomeBanner {
    position: relative;
    z-index: 0;
}

.HomeBanner img {
    border-radius: 35px;
    width: 100%;
}

.homeMainBox {
    background: url(../images/bg.png) left top no-repeat;
    padding: 30px;
    position: relative;
    background-size: cover;
    background-attachment: fixed;overflow: hidden;
}

.homeMainBox::before {
    content: '';
    border: 5px solid var(--theme-color);
    border-radius: 15px;
    position: absolute;
    width: 98%;
    height: 98%;
    left: 1%;
    top: 1%;
}

.homeMainBox .container {
    position: relative;
    z-index: 2;
}

.LogoBox img {
    width: 70%;
    padding-top: 10px;
}

.PicBox {
    box-shadow: 0 0 15px #000000b0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.PicBox img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.HomeTxtBox {
    border-radius: 30px;
    position: relative;
    margin: -100px auto 0;
    width: 90%;
    padding: 10px 20px;
    text-align: center;
    background: linear-gradient(to bottom, rgb(255, 255, 255, 1) 60%, rgb(255, 255, 255, 0.7) 40%);
}

.HomeTxtBox h3 {margin: 30px 0;font-size: 48px; /* text-shadow: 0px 3px 3px #000000ce;*/ 
    color: #ec0707;}
.HomeTxtBox a {font-size: 40px;font-family: 'Sacramento', cursive;}
.HomeTxtBox a:hover {color: var(--theme-btn-bg);text-shadow: none;}
.HomeLeft {margin-right: 10px;}
.HomeRight {margin-left: 10px;}
.homeMainBox footer {background: transparent;}
.HomeTxtBox h3, .HomeTxtBox p, .HomeTxtBox a { transition: all 0.8s;}
.HomeTxtBox p {padding-bottom: 15px;}
.HomeTxtBox p, .HomeTxtBox a {font-size: 40px;font-family: 'Sacramento', cursive;}
.HomeTxtBox p.clickhere:hover {color: var(--theme-btn-bg);text-shadow: none;}
.clickhere {font-family: 'Poppins', sans-serif !important;  font-size: 22px !important;}

/* ------------  css ------------ */

.TitleBox span {
    position: relative;
    padding: 0;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 400;
}

.TitleBox span::before {
    position: absolute;
    width: 100%;
    height: 3px;
    content: '';
    bottom: -20px;
    left: 0;
    right: 0;
    border-radius: 8px;
    background: linear-gradient(to right, #000, #2A86BB, #000);
}

.herapyFP {
    font-size: 20px;
    margin-top: 30px;
    position: relative;
    padding-left: 20px;
    line-height: 35px;
}

.herapyFP::before {
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-color: var(--theme-btn-bg);
    border-radius: 3px;
}

.SpecialtyList {
    background: var(--light-gray);
    padding: 40px;
    margin-top: 40px;
    border-radius: 10px;
}

.ListBox {
    display: flex;
    margin-top: 20px;
    flex-flow: wrap;
}

.ListBox li {
    position: relative;
    padding: 10px 15px;
    display: flex;
    width: 50%;
}

p a,
.ListBox li a {
    color: var(--theme-bg);
    font-weight: 500;
}

.ListBox li::before {
    position: relative;
    font-weight: 20px;
    left: -15px;
    content: '\F26B';
    color: var(--theme-bg);
    font-family: var(--font-bootstrap-icon);
}

.ListBox.Single {
    display: block;
    margin-bottom: 20px;
}

.ListBox.Single li {
    padding-top: 0;
    width: 100%;
}

.Corvbox {
    border-radius: 15px;
    border-top: 5px solid var(--theme-color);
    border-left: 5px solid var(--theme-color);
    box-shadow: 5px 5px 5px var(--theme-color);
    width: 100%;
}

.ContLeft {
    position: relative;
}

.ContLeft figure {
    padding-right: 15px;
}

.ContLeft span {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    font-size: 20px;
    left: 50%;
    margin: 0 0 0 -75px;
    padding-top: 10px;
    bottom: 20px;
    font-weight: 500;
    box-shadow: 3px 3px 10px var(--gray-color);
}

.ContLeft span b {
    font-size: 30px;
    color: var(--theme-bg);
}

.BigFo {
    margin-top: 20px;
    font-size: 25px;
    color: var(--theme-bg);
}

.BigFo a {
    color: var(--theme-bg);
}

.BigFo small {
    color: var(--theme-color);
    font-size: 18px;
}


/* ------------ Tao Studies Center css ------------ */

.AreasTaoStudy {
    background: var(--light-gray);
}

.LinkList {
    display: block !important;
    padding-left: 30px !important;
}

.LinkList a:nth-child(1) {
    margin-left: -15px;
}

.ListBox li.LinkList::before {
    left: -30px;
}

.AreasTaoStudy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AreasTaoStudy .row {
    margin: 0;
}

.AreasTaoStudy .row .AreasTaoLeft {
    padding-left: 0;
    padding-right: 30px;
}

.AreasTaoRight {
    padding: 30px 0;
}


/* ------------ Equine Assisted Therapy css ------------ */

.ForInnerstyle .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.ForInnerstyle .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    border: none;
    background: var(--theme-bg);
    color: var(--white-color);
}

.ForInnerstyle .owl-nav button:hover {
    background: var(--theme-color);
    color: var(--white-color);
}

.ForInnerstyle .owl-nav button.left-arrow {
    position: absolute;
    left: -20px;
}

.ForInnerstyle .owl-nav button.right-arrow {
    position: absolute;
    right: -20px;
}

.AllmodalStyle .Btnclose {
    position: absolute;
    top: -10px;
    right: -10px;
    border: none;
    background: var(--red-color);
    color: #fff;
    font-size: 30px;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 30px;
}

.AllmodalStyle .modal-body {
    text-align: center;
}

.ForInnerstyle .item img {
    border: 3px solid var(--theme-title);
    border-radius: 10px;
}


/* ------------ Contact Us css ------------ */

sup {
    color: var(--red-color);
}

.ContactForm label {
    padding-bottom: 5px;
}

.ContactForm input {
    margin-bottom: 15px;
    height: 50px;
    line-height: 50px;
}

.ContactForm input[type="submit"] {
    background: var(--theme-btn-bg);
    border: 1px solid var(--theme-btn-bg);
    border-radius: 30px;
    color: var(--white-color);
    padding: 9px 30px;
    line-height: normal;
    transition: all 0.8s;
    font-size: 18px;
    margin-top: 20px;
}

.ContTxt .h6 {
    color: #055988;
    margin-top: 25px;
    font-weight: 400;
}

.ContactForm input[type="submit"]:hover {
    background: var(--theme-color);
    color: var(--white-color);
}

.ContactForm textarea {
    height: 100px;
}

.CallTxt {
    padding: 11px 0 0 0;
    font-size: 20px;
}

.CallTxt .bi {
    width: 50px;
    display: inline-block;
    height: 50px;
    background: var(--theme-bg);
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    margin-right: 10px;
    color: var(--white-color);
    font-size: 25px;
}


/* ------------ Folk Music css ------------ */

.FolkTomSmith p em {
    font-weight: 400;
}

.Discography {
    background: var(--light-gray);
}

.AudioList {
    margin-top: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-flow: wrap;
}

.AudioList li {
    width: 48%;
    text-align: center;
    margin-right: 2%;
}

.AudioList li audio {
    width: 100%;
}

.AudioList li p {
    background: #fff;
    margin-top: -5px;
    margin-bottom: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.Achievements figure {
    background-attachment: var(--white-color);
}

.Achievements figure img {
    box-shadow: 0 0 10px var(--gray-color);
    width: 100%;
    border-radius: 15px;
}

.AchievementsList h6 {
    width: 100%;
}

.AchievementsList li {
    width: 25%;
}

.PlayBassPic {
    text-align: center;
    border: 1px solid var(--gray-color);
    border-radius: 15px;
    padding: 15px;
    height: 100%;
}

.PlayBassPic img {
    width: auto;
}

.GalleryPicBox {
    text-align: center;
    border: 1px solid var(--gray-color);
    border-radius: 15px;
    padding: 40px 20px 20px;
    height: 100%;
}

.GalleryPicBox .carousel-indicators button {
    width: 100px !important;
}

.GalleryPicBox .carousel-indicators button img {
    width: 100px !important;
    height: 60px;
}

.GalleryPicBox .carousel-inner .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.GalleryPicBox .carousel-inner .caption-top p {
    background: var(--white-color);
}

.GalleryPicBox .carousel-control-prev-icon,
.GalleryPicBox .carousel-control-next-icon {
    background-color: var(--theme-title);
    width: 50px;
    height: 50px;
    background-size: 35px;
}

.BottomTxt {
    margin-top: 90px;
}


/* ------------ Footer css ------------ */

footer {
    background: var(--light-gray);
}

.FooteNav a img {
    width: 30px;
    margin-left: 10px;
    transition: all 0.8s;
}

.FooteNav a:hover img {
    transform: scale(1.3);
}