@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {

    font-family: 'NegaraSerif-HairlineItalic';
    src: url(../fonts/NegaraSerif-HairlineItalic.otf);

}
@font-face {

    font-family: 'Zirkel-Regular';
    src: url(../fonts/Zirkel-Regular.ttf);

}

@font-face {

    font-family: 'Roboto-Regular';
    src: url(../fonts/Roboto-Regular.ttf);

}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000!important;
    text-align: center;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000!important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000!important;
    color: #fff!important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}


h1 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 58px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    margin: 0 0 10px;
}

h2 {
    font-family: 'Zirkel-Regular', Sans-Serif;
    font-size: 30px;
    line-height: 35px;
    color: #15a2a2;
    font-weight: 500;
    margin: 0 0 10px;
}

h3 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
}

h4 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}

h5 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 25px;
    line-height: 35px;
    color: #000;
    font-weight: 500;
    margin: 0 0 10px;
        text-align: justify;
}

h6 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 40px;
    line-height: 45px;
    color: #000;
    font-weight: 500;
    margin: 0 0 10px;
}

p {
    color: #000;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    letter-spacing: 0px;
    margin: 0 0 10px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
/*header {
    padding: 12px 0;
}*/

.topSec {
    padding: 10px 0;
    background: #fff;
    position: relative;
}


.topSec:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #15a2a2;
    content: '';
    top: 0;
    clip-path: polygon(50% 0%, 83% 0, 100% 0, 100% 70%, 100% 100%, 70% 100%, 43% 100%, 41% 20%, 0 19%, 0 0);
}

.top-bar-center {
    z-index: 9999;
    position: relative;
}
.top-bar-center ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}
.top-bar-center ul li:first-child {
    border-right: 1px solid #fff;
    padding-right: 21px;
}
.top-bar-center ul li:nth-child(2) {
    border-right: 1px solid #fff;
    padding-right: 21px;
}
.top-bar-center ul li a {
    color: #fff;
    font-size: 18px;
    font-family: Roboto-Regular;
}
.top-bar-center ul li a i {
    padding-right: 6px;
    font-size: 21px;
}
.tp-social {
    display: flex;
    align-items: center;
    gap: 5px;
}
.tp-social a {
    background: #fff;
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    padding: 8px 0px;
}
.tp-social a i {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/*.menuSection {
    padding: 20px 0;
}*/
.menuSection {
    margin: 0 0 20px;
}
.menu-button a.theme-btn-1 {
    font-size: 17px;
}
.theme-btn-1 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 15px 8px;
    font-size: 22px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    /* position: absolute; */
    right: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: 'Montserrat';
}



.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}
.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 8px 8px;
    font-size: 17px;
    font-family: 'Montserrat';
}
.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #15a2a2;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/*header css start */

/*banner css start */

a.btm {
    position: absolute;
    bottom: 0;
    right: 50%;
}

a.btm i {
    color: #fff;
    font-size: 23px;
    border: 1px solid #ffffff91;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    left: unset;
    background: #15a2a2;
}

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: transparent;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/


/* search box css */
body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 50px;
    height: 50px;
}

.close:hover {
    background: #e21d1a;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000b0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    height: 70px;
    color: #ffffff;
    width: 171px;
    height: 55px;
    background: #000000;
    font-family: 'Poppins';
    font-size: 22px;
    cursor: pointer;
    border: 0;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, #e70e0e 0%, #f66565 100%);
    display: inline-block;
}

.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #e21d1a;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #55cd6c;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Poppins';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}


/* .search-btn:hover {
  color: #00A896;
} */


/* end search box css */

.banner-text-btn a.theme-btn-1 {
    background: #15a2a2;
    width: 33%;
}
.banner_text p {
    width: 95%;
}

.abs-vid {
    position: absolute;
    bottom: 9%;
    right: -4%;
    transform: translate(-90%);
    border: solid 8px transparent;
    border-radius: 60px;
    background: #ffffff;
}
.abt-img{
    position: relative;
}
.abs-vid i {
    font-size: 25px;
    color: #000000;
    /* border: solid; */
    border-radius: 45px;
    padding: 20px;
    width: 85px;
    height: 86px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    /* background: linear-gradient(to right, #1862a2 10%, #073668 100%) !important; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: solid 7px;
}

.abt-img::before {
    position: absolute;
    content: "";
    /* background: aqua; */
    height: 575px;
    width: 586px;
    border-radius: 100%;
    z-index: -1;
    left: 21px;
    top: 2px;
    border: solid 4px #00f2f2;
}
.abt-img {
    position: relative;
    animation: 2s ritbonc ease-in-out infinite alternate;
}

@keyframes ritbonc {
    from {
        transform: rotate(10deg);
    }
    to {
        transform: rotate(-10deg);
    }
}


/*services start*/


section.services_secc {
    background-image: url(../images/ser-bk.png);
    height: 1137px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 135px 90px 50px;
}


.main_serv_boxx {
    z-index: 1;
    padding: 0px 20px 10px;
    /* background: #ffffff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    position: relative;
    margin-top: 56px;
}

.serv_headd img {
    /* border-radius: 20px; */
    width: 100%;
    /* height: 230px; */
    object-fit: cover;
}

.serv_headd {
}

/*.main_serv_boxx:after {
    position: absolute;
    content: "";
    background: #ffffff;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    width: 100%;
    height: 100%;
    top: 40px;
    left: 0;
    z-index: -1;
    border-radius: 20px;
}*/


.main_serv_boxx:after {
    position: absolute;
    content: "";
    background: #ffffff;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    width: 100%;
    height: 524px;
    top: 93px;
    left: 0;
    z-index: -1;
    border-radius: 20px;
}
.main_serv_boxx h3 {
    font-size: 36px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main_serv_boxx p {
    font-size: 15px;
    color: #000 !important;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    line-height: 24px;
    width: 100% !important;
    margin: 11px 0 !important;
}

.serv-text-btn {
    margin: 20px 0 0;
}
.main_serv_boxx .theme_btn {position: absolute;left: 30%;bottom: -13%;}

section.services_secc .slick-list {
    padding: 0 0px 100px;
}

section.services_secc .slick-slide {
    opacity: 1;
}


section.services_secc .slick-prev::before {
    content: "\f060";
    font-family: 'Font Awesome 6 Pro';
    background-color: #65ebeb;
    color: #000;
    height: 40px;
    display: flex;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    /* border-bottom-left-radius: 0; */
    /* border-top-right-radius: 0; */
    opacity: 1;
}

section.services_secc .slick-next:before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
    background-color: #f01414;
    color: #fff;
    height: 50px;
    display: flex;
    width: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    opacity: 0;
}

section.services_secc .slick-prev {
    top: 50%;
    left: -45px;
    z-index: 1;
}
section.services_secc .slick-next {
    right: 30px;
    top: 50%;
    z-index: 1;
}

.ser-head {
    text-align: center;
}

.ser-head p {
    color: #fff;
    width: 65%;
    margin: 0 auto;
}


.serv-text-btn a.theme-btn-1 {
    /* background: #15a2a2; */
    width: 52%;
}


.abt-txt h3 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 46px;
}

/*services end*/


.appr-img::before {
    position: absolute;
    content: "";
    background: #15a2a2;
    height: 200px;
    width: 200px;
    bottom: 9%;
    right: 0;
    z-index: -1;
}
.appr-img {
    position: relative;
    animation: 2s ritbonc ease-in-out infinite alternate;
}


.img-bor::before {
    position: absolute;
    content: "";
    background: url(../images/bef.png);
    height: 627px;
    width: 628px;
    right: 0;
    top: 0;
}
.img-bor {
    position: relative;
}

.img-bor::after {
    position: absolute;
    content: "";
    background: url(../images/aft.png);
    height: 627px;
    width: 628px;
    left: 0;
    /*bottom: 0;*/
}
.booking-input input {
    width: 100%;
    height: 54px;
    border: 1px solid #c8c8c8;
    /* border-radius: 60px; */
    margin-bottom: 30px;
    padding: 10px 20px;
    text-transform: capitalize;
        background: #fff;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.booking-input input::placeholder{
    font-size: 18px;
    color: #000;
    font-family: 'Montserrat';
}
.booking-input select {
    width: 100%;
    height: 60px;
    border: 1px solid #c8c8c8;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-bottom: 30px;
    padding: 10px 20px;
    text-transform: capitalize;
    background: #fff;
    -webkit-appearance: searchfield;
    font-family: 'Montserrat';
    color: #000;
    font-size: 18px;
}

/*.booking-input select::placeholder{
    font-size: 18px;
    color: #000;
    font-family: 'Montserrat';
}*/

.booking-input textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #c8c8c8;
    /*border-radius: 20px;*/
    padding: 10px 20px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    
    margin-bottom: 50px;
    background: #fff;
    margin: 0;
}

.booking-input textarea::placeholder{
    font-size: 18px;
    color: #000;
    font-family: 'Montserrat';
}
.appointment {
    background: #eff9f9;
}
.appt-head {
    text-align: center;
    margin-bottom: 4%;
}


.appt-head p {
    width: 65%;
    margin: 0 auto;
}

.book-text-btn a.theme-btn-1 {
    background: #15a2a2;
    width: 100%;
}

.gall-img img {
    width: 100%;
}
section.gallery.pt-8.pb-8 {
    background: url(../images/gall-bk.png);
    height: 1177px;
    width: 100%;
    background-size: cover;
    padding: 135px 90px 50px;
}

.gall-txt {
    text-align: center;
}
.gall-txt p {
    color: #fff;
    width: 67%;
    margin: 0 auto;
}
.test-head {
    text-align: center;
}
.test-head p {
    width: 65%;
    margin: 0 auto;
}



/*testimonial start*/
.testimonial-main {
    text-align: center;
}

.testimonial-main h2 {
    font-size: 50px;
    color: var(--blueclr);
    margin-bottom: 10px;
    font-family: beckman;
    font-weight: bold;
    text-shadow: 1px 0;
}

.testimonial-main h3 {
    font-size: 50px;
    font-family: beckman;
    color: #061735;
    text-shadow: 1px 0;
}

.testimonial-box img {
    width: 30%;
    margin: 0 auto;
    margin-top: -75px;
}

.testimonial-box {
    text-align: center;
    box-shadow: 0 0 10px #0000002e;
    background: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.testimonial-slide .slick-track {
    margin-top: 20px;
}

.testimonial-slide .slick-slide {
    margin: 30px 20px;
}


.testimonial-slide .slick-active {
    opacity: 1.5;
}

.testimonial-box i {
    color: #15a2a2;
    font-size: 30px;
    margin: 18px 0;
}
.testimonial-slide .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

.slick-current .testimonial-box i {
    color: #fff;
    font-size: 30px;
    margin: 18px 0;
}

.testimonial-box h6 {
    color: #fff;
}

.testimonial-box h6 span {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.testimonial-box h6 {
    display: none;
}

.testimonial-box img {
    display: none;
}

.slick-slide.slick-current.slick-active.slick-center img {
    display: inherit;
}

.slick-slide.slick-current.slick-active.slick-center h6 {
    display: inherit;
    font-size: 25px;
    font-family: beckman;
    line-height: 25px;
}

.slick-slide.slick-current.slick-active.slick-center .testimonial-box {
    background: #15a2a2;
      color: #fff !important;
    transition: 0.5s;
}

.testimonial-slide .slick-prev,
.slick-next {

    top: 35%;

}

.testimonial-box p {
    font-size: 15px;
    padding: 0 15px;
    font-style: italic;
    color: #000;
}

section.testimonial-wrap {
    position: relative;
    padding: 80px 0;

}

.slick-slide.slick-current.slick-active.slick-center .testimonial-box p {
    color: #fff;
}
section.testimonial-wrap:before {
    content: '';
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 150%;
    background-image: url(../images/testi-back.jpg);
    z-index: -1;
    background-size: cover;
}

.testimonial-slide .slick-prev:before {
    content: "\f104";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    background: var(--redclr);
    color: #fff;
    border-radius: 50%;
    padding: 10px 15px;
}

.testimonial-slide .slick-next:before {
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    background: var(--blueclr);
    color: #fff;
    border-radius: 50%;
    padding: 10px 15px;
}


.testimonial-slide .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #15a2a2;
}
.testimonial-slide .slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}
.testimonial-slide .slick-dots li button:before {
    font-family: 'slick';
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: 'Ã¢â‚¬Â¢';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/*.testimonial-box:hover {
    background: #15a2a2;
    color: #fff;
}
.testimonial-box i:hover {
    color: #fff;
}
*/

/* Footer Section Start */

footer.footer-sec {
    position: relative;
    padding: 70px 0 0;
    background-color: #000;
    width: 100%;
    clip-path: polygon(0 7%, 100% 0%, 100% 100%, 0% 100%);
}

ul.footer-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 20px;
}

ul.footer-social-list li i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
}
ul.footer-social-list li i:hover {
    background: #15a2a2;
    color: #fff;
    transition: 1s ease-in-out;
}

.footer-text h2, .footer-text span {
    font-size: 30px !important;
    line-height: 38px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'NegaraSerif-HairlineItalic';
    font-weight: 500;
}

ul.footer-link li a {
    font-size: 16px;
    color: #ffffff;
    line-height: 16px;
    font-weight: 300;
    font-family: 'Montserrat';
    text-transform: capitalize;
}
ul.footer-link-list li i {
  font-size: 20px;
  color: #404041;
}

ul.footer-link-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  padding-right: 15px;
  margin-bottom: 0;
}

ul.footer-link-list li p {
  font-size: 16px;
  color: #404041;
  font-family: 'Roboto';
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.footer-form {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  position: relative;
}

.footer-form input {
  width: 100%;
  height: 60px;
  padding: 15px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 400;
  font-family: 'Roboto';
  font-size: 17px;
  padding-left: 80px;
}

.footer-form i {
  position: absolute;
  top: 19px;
  left: 40px;
  font-size: 20px;
  color: var(--sky-blue);
}

.footr-btn button {
  border: 0;
  margin: 0;
  width: 100%;
}

.footer-text.ftr-border {
  position: relative;
  padding-left: 20px;
}

.footer-text.ftr-border:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 110%;
  left: -20px;
  top: -15%;
  background: #0c8381bf;
  display: none;
}

.footer-text.ftr-border:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 110%;
  right: 20px;
  top: -15%;
  background: #0c8381bf;
  display: none;
}

section.bottom-nav {
    padding: 20px 0;
    text-transform: capitalize;
    border-top: 1px solid #ffffffb3;
    margin-top: 30px;
    background-color: #000000;
}

section.bottom-nav p {
    font-size: 19px;
    color: #ffffff;
    font-family: 'Montserrat';
    text-align: center;
    line-height: 20px;
    margin: 0;
}

ul.footer-link li {
  border-bottom: 1px solid transparent;
  width: 75%;
  transition: 1s ease-in-out;
}

/*ul.footer-link li:hover {
  padding-left: 0;
  border-color: #0e62f4;
  transition: 1s ease-in-out;
  display: inline-block;
  width: 50%;
}*/
/*
ul.footer-link-list li {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: 1s ease-in-out;
}
*/
ul.footer-link-list li:hover {
  padding-left: 0;
  border-color: #0e62f4;
  transition: 1s ease-in-out;
  color: #0c8381;
}

footer.footer-sec .row .col-lg-3:not(:last-child) {
    border-right: 1px solid #fff;
    padding-left: 35px;
}
.last-cld {
  padding-left: 0;
}

ul.footer-link-list li a {
    font-size: 16px;
    color: #fff;
    line-height: 13px;
    font-family: 'Montserrat';
}

/*.footer-text img {
  margin-bottom: 30px;
  filter: invert(1) brightness(2.5);
}
*/
.footer-text p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 100;
}

.footer-text.wow.fadeInRight {
    text-align: center;
}

.footer-text li {
    color: #fff;
    display: flex;
    align-items: baseline;
    margin: 25px 0;
    gap: 7px;
}

.footer-text.footer-text1 i {
    margin-right: 15px;
    color: #ffffff;
}

.footer-text a {
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat';
}

/* Footer Section End */


/*inner pages*/


.banner-image {
    position: relative;
    z-index: 2;
}

.title-new  {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  /*  background: #b7040461;*/
    display: flex;
    align-items: center;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
}



.banner-image img {
    width: 100%;
   /* height: 550px;
    object-fit: cover;*/
}

.offer {
    background-image: url(../images/ser-bk.png);
    height: 1137px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 135px 90px 50px;
}


.offer-txt p {
    color: #fff;
    line-height: 20px;
}

.offer-txt span.quote {
    font-size: 55px;
    font-family: 'NegaraSerif-HairlineItalic';
    color: #fff;
    width: 62%;
    position: relative;
    display: block;
    line-height: 67px;
}

.about-taisha {
    text-align: center;
    width: 84%;
    margin: 0 auto;
}
.about-taisha h4 {
    font-size: 61px;
    line-height: 70px;
}

.about-taisha p {
    color: #fff;
    line-height: 28px;
}

.inner-abt-img img {
    width: 100%;
}
.comp-head h2 {
    font-size: 50px;
    line-height: 70px;
    font-family: 'NegaraSerif-HairlineItalic';
    width: 81%;
}
.comp-head p {
    font-size: 18px;
}

.commp-img {
    position: relative;
}

.commp-img::before {
    position: absolute;
    content: "";
    background: #15a2a2;
    height: 200px;
    width: 200px;
    bottom: 9%;
    left: 0;
    z-index: -1;
}

/*.commp-img::after {
    position: absolute;
    content: "";
    background: url(../images/bef1.png);
    height: 603px;
    width: 604px;
    right: 0;
    top: 0;
}
*/

.commp-img-1 {
    position: relative;
}
.commp-img-1::before {
    position: absolute;
    content: "";
    background: #15a2a2;
    height: 200px;
    width: 200px;
    bottom: 8%;
    right: 0;
    z-index: -1;
}
/*.commp-img-1::after {
    position: absolute;
    content: "";
    background: url(../images/bef2.png);
    height: 603px;
    width: 604px;
    right: 0;
    top: 0;
}
*/



.abt-vid-div {
    position: relative;
}

.abt-abs-vid {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50% );
}

.abt-abs-vid i {
    font-size: 25px;
    color: #39b0b0;
    /* border: solid; */
    border-radius: 45px;
    padding: 20px;
    width: 80px;
    height: 80px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    /* background: linear-gradient(to right, #1862a2 10%, #073668 100%)!important; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}
section.video-services.pt-8.pb-8 {
    background: url(../images/video-bk.png);
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #367de2d6;
}
.video {
    background-image: url(../images/ser-bk.png);
/*    height: 1137px;*/
    background-repeat: no-repeat;
    background-size: cover;
    padding: 135px 90px 50px;
}

.video-head {
    text-align: center;
}
.video-head p {
    color: #fff;
    margin: 0 auto;
    width: 50%;
}


ul.com-sym {
    list-style: disc;
    margin: 20px;
}

ul.com-sym li {
    margin: 0 16px 5px;
}


/*faq start*/


.faq {
    background-image: url(../images/ser-bk.png);
    /* height: 1137px; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 135px 90px 50px;
}

.gorilla-content .accordion-button.collapsed {
    /* padding: 22px 30px; */
    background-color: #65ebeb;
    color: #000000;
    font-size: 25px;
    font-family: 'NegaraSerif-HairlineItalic';
    line-height: 30px;
    /* border-radius: 0; */
    /* text-transform: uppercase; */
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}
.gorilla-content .accordion-button {
    /* color: #000000 !important; */
    font-size: 24px;
    padding: 20px 20px;
    line-height: 45px;
    background-color: transparent;
    font-size: 45px;
    font-family: 'Trirong-Regular';
}

.gorilla-content .gorrila-page-txt .color-red {
    color: #A60000;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 30px;
}

.gorrila-page-txt ul {
    list-style: auto;
}

.gorrila-page-txt ul li {
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    margin-left: 15px;
}

.gorrila-page-txt ul li::marker {
    color: #A60000;
}

.accordion-body.gorrila-page-txt {
    padding: 20px 30px;
}

.gorilla-content .accordion-item {
    margin: 20px 0;
    border-radius: 0;
    border: 0;
    background: #ffffff;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}
.gorilla-content .accordion-button:not(.collapsed) {
    box-shadow: none;
    /* border: 2px solid #00edff; */
    border-bottom: 0;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    color: #000000;
    /* text-transform: uppercase; */
    font-size: 30px;
    font-family: 'NegaraSerif-HairlineItalic';
}
.accordion-collapse.collapse {
    /*border: 2px solid #00edff;
*/    border-top: 0;
    border-radius: 0 0 10px 10px;
    /* margin-bottom: 30px; */
}

.gorilla-content button:focus:not(:focus-visible) {
    box-shadow: none;
}

.accordion-body p {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
}
.gorilla-content .accordion-button::after {
    content: '\f078';
    font-weight: 700;
    font-family: 'Font Awesome 6 Pro';
    background-image: none;
    transform: rotate(0deg);
    
}

.accordion-button:not(.collapsed)::after {
    content: '\f068';
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    color: #000000;
    font-size: 32px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: 30px;
}


/* Blog Sec */

/*section.blog-page {
    padding: 100px 0;
    
}
*/

.blog-box {
    position: relative;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 7px 0 #3e3e3e69;
    border-radius: 10px;
    margin-top: 70px;
}

.blog-imag img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    margin-bottom: 20px;
}

.blog-imag {
    overflow-x: hidden;
    transition: 1s ease-in-out;
}

.blog-imag img:hover {
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
}

.blog-text h6 {
    font-size: 21px;
    color: #15a2a2;
    font-family: 'Montserrat';
    margin: 0 0 15px 0;
    line-height: 32px;
}

.blog-text h3 {
    font-size: 29px;
    color: #000;
    line-height: 32px;
}
/*.blog-text span {
    font-size: 36px;
    display: flex;
    line-height: 45px;
}
*/
.blog-text a {
    margin: 10px 0 0 0;
    padding: 15px 20px;
}

.b-text-abs h5 {
    /* background: linear-gradient(0deg, rgb(6 182 234) 0%, rgb(6 182 234) 40%, rgb(6 182 234) 100%); */
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 500;
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    line-height: 25px;
    border-radius: 0;
    margin: 0 !important;
    /* clip-path: polygon(8% 0, 94% 0, 100% 50%, 94% 100%, 8% 100%, 0% 51%); */
    background: #000;
    border-top-right-radius: 22px;
    border-bottom-left-radius: 22px;
}
.b-text-abs {
    position: absolute;
    top: 6%;
    right: 5%;
}

.blog-text {
    padding-bottom: 40px;
    padding-left: 15px;
}

.num-tabs .btn {
    background-color: #fff;
    color: #000;
    font-size: 20px;
    border-radius: 0;
    width: 50px;
    margin: 7px;
    height: 50px;
    font-family: 'Montserrat';
    box-shadow: 0 0 6px 0 #e3e3e3;
}

a.blogbtn.btn10 {
    /* text-align: center; */
    /* margin: 0 auto; */
    width: 43%;
}

/* Style the active class, and buttons on mouse-over */

.num-tabs .active,
.btn {
    background-color: #fff;
    color: #000;
    font-size: 25px;
    border-radius: 0;
    width: 50px;
    height: 50px;
}

.num-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 0 50px;
}

button.btn:hover {
    background: #15a2a2;
    font-size: 25px;
    border-radius: 0;
    width: 50px;
    height: 50px;
    color: white;
}

button.btn.active {
    background: #fff;
    color: #000;
    font-size: 25px;
    border-radius: 0;
    width: 50px;
    height: 50px;
    font-family: 'Montserrat';
}
/* Blog Sec */



.blog-text-btn a.theme-btn-1 {
    background: #15a2a2;
    width: 48%;
}
/* Blog Page End */


.cont-box {
    box-shadow: 0px 0px 6px #00000040;
    text-align: center;
    padding: 75px 40px;
    /* height: 230px; */
    background: #15a2a2;
    border-radius: 25px;
    position: relative;
    z-index: 0;
}
.cont-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--redclr);
    z-index: -1;
    transition: 0.5s;
    border-radius: 25px;
}
.cont-box h2 {
    color: #fff;
    font-size: 27px;
    /* font-family: 'Raleway', sans-serif; */
    /* padding: 0; */
    /* margin: 0; */
    /* font-family: 'beckman'; */
    /* font-weight: bold; */
}

.cont-box p {
    color: #fff;
    font-size: 18px;
    margin: 0 0 18px;
    font-weight: 400;
}
.d-block {
    display: block !important;
}

span.d-block {
    font-size: 18px;
    color: #fff;
}
span.d-block a {
    color: #fff;
    font-size: 21px;
    font-family: 'Montserrat';
}
.cont-box a {
    font-size: 18px;
    font-family: 'Montserrat';
    color: #fff;
}



/* Blog Detail Page Start */

section.blog-detail-page {
  
    padding: 100px 0;
        
}


.det-img-main img {
    width: 100%;
    /* box-shadow: 0 0 20px 2px #3e3e3e2b; */
}

.recent-posts h2 {
    font-weight: 400;
    font-size: 52px;
    margin-bottom: 35px;
    font-family: 'NegaraSerif-HairlineItalic';
    color: black;
}


.recent-posts span {
    font-family: 'Bebas Neue', cursive;
    font-size: 54px;
    line-height: 60px;
    color: #85c75d;
    font-weight: 500;
    margin: 0 0 10px;
}

.det-txt-sml ul li i {
    color: #15a2a2;
    font-size: 19px;
}
.det-head h2 {
    /* font-weight: 400; */
    font-size: 40px;
    /* margin-bottom: 30px; */
    line-height: 63px;
    font-family: 'NegaraSerif-HairlineItalic';
    color: #000;
    width: 80%;
}

.det-head span {
    font-family: 'AlbraMedium';
    font-size: 61px;
    line-height: 62px;
    color: #06b6ea;
    font-weight: 500;
    margin: 0 0 10px;
}
/*
.det-txt-main p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
}
*/

/* Blog Details */

.blog-post {
    display: grid;
    grid-template-columns: auto auto;
    gap: 25px;
    align-items: center;
    margin-bottom: 33px;
}

.det-txt-sml p {
    font-size: 20px;
    /* font-family: 'AlbraMedium'; */
    line-height: 25px;
    font-weight: 500;
}
.det-txt-sml ul {
    margin-bottom: 0;
    width: 100%;
    display: inline-flex;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    /* padding: 5px 0; */
    height: 40px;
    padding: 0 10px;
}

.det-txt-sml ul li {
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

li.date {
    border-right: 1px solid #cccccc;
    padding-right: 15px;
}

li.comments {
    padding-left: 15px;
}

.det-head ul {
    margin-bottom: 30px;
    display: flex;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000000;
    /* padding: 5px 0; */
    /* height: 40px; */
    padding: 15px 10px;
}

.det-head ul li {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.det-head ul li i {
    color: #15a2a2;
    font-size: 22px;
}
.det-head ul li.date {
    padding-right: 25px;
}

.det-head ul li.comments {
    padding-left: 25px;
}

/*.det-txt-main p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 35px;
}
*/
footer.footerSec.detFooter {
    background-color: #ffffff;
}

section.blg-det-sec {
    padding: 80px 0;
    position: relative;
}


/* Blog Details */


/* Blog Detail Page End */



/* Contact Page Start */

section.contact-page {
    /* position: relative; */
    padding: 100px 0;
}

.contact-page-head h2,
.contact-page-head span {
    font-size: 70px;
    line-height: 80px;
}

.contact-page-head p {
    font-size: 17px;
}

.contact-page-head p {
    font-size: 19px;
    font-family: 'Roboto-Regular';
}

.cont-pg-input input {
    width: 100%;
    height: 60px;
    color: #000;
    border: 1px solid #000;
    border-top-right-radius: 25px;
    padding: 20px;
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-top: 40px;
    border-bottom-left-radius: 25px;
}

.cont-pg-input textarea {
    width: 100%;
    height: 160px;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 20px;
    margin-top: 40px;
}

button.btn1.cont-btn {
    border: 0;
    width: 100%;
}

ul.cont-icon-list {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    gap: 22px;
    margin-top: 43px;
}

ul.cont-icon-list i {
    font-size: 40px;
    color: #ffffff;
    width: 85px;
    height: 85px;
    /* border: 2px dashed #158785; */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #65ebeb;
}
ul.cont-icon-list h4 {
    font-size: 32px;
    line-height: 40px;
    margin: 0;
    color: #000;
}

ul.cont-icon-list p {
    font-size: 20px;
    color: #000;
    font-family: 'Roboto-Regular';
    font-weight: 300;
}
.cont-map iframe {
    width: 100%;
}


/* Contact Page End */


/*responsive
*/

@media only screen and (min-width: 1366px) and (max-width: 1465px){

   .wpb_wrapper a.theme-btn-11 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: 'Montserrat';
}
.topSec:before {

    clip-path: polygon(50% 0%, 83% 0, 100% 0, 100% 70%, 100% 100%, 70% 100%, 34% 100%, 31% 20%, 0 19%, 0 0);
}


.top-bar-center ul li a {  
    font-size: 16px;

}
.abt-txt h3 {
   
    font-size: 40px;
}
.menuSec ul li a {
     padding: 8px 6px;
    font-size: 15px;
   
}

.abt-img::before {
 
    height: 510px;
    width: 510px;
 left: 12px;
    top: 0px;
}

.app-txt h6 {
   
    font-size: 33px;
}


.img-bor::after {
 
    left: -15px;
    top: -54px;
}


.main_serv_boxx:after {   
           height: 470px;
        top: 111px;
}

.blog-text-btn a.theme-btn-1 {
 
    width: 59%;
}


.main_serv_boxx h5 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 27px;
    line-height: 21px;
   
}

}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
       .wpb_wrapper a.theme-btn-11 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: 'Montserrat';
}

html {
    overflow-x: hidden;
}

.top-bar-center ul li a {
       font-size: 14px;  
}

.topSec:before {

    clip-path: polygon(50% 0%, 83% 0, 100% 0, 100% 70%, 100% 100%, 70% 100%, 34% 100%, 31% 20%, 0 19%, 0 0);
}

.menuSec ul li a {
     
    font-size: 14px;
  
}
.banner_text h1 {
  
    font-size: 45px;
    line-height: 60px;
}
.abt-img::before {
 
    height: 510px;
    width: 510px;
 left: 12px;
    top: 0px;
}
.abt-txt h3 {

    font-size: 39px;
}
.main_serv_boxx h5 {
    font-size: 22px;
}
.serv-text-btn a.theme-btn-1 {
    /* background: #15a2a2; */
    width: 61%;
}

.app-txt h6 {
     font-size: 31px;
}
.img-bor::after {
 
    left: -15px;
    top: -54px;
}

.about-taisha {   
    width: 100%;
   
}

.offer {
    height: 100%;
    }


.main_serv_boxx:after {
            height: 465px;
        top: 133px;
    }
 
.der-det-text h3 {
  
    font-size: 46px;
  }

.blog-text-btn a.theme-btn-1 {

    width: 60%;
}
.ser-head p {
    width: 85%;   
}


.gall-txt p {
    width: 83%;

}




}
@media only screen and (min-width: 768px) and (max-width: 991px){
    .contact-page-head {
    margin-top: 40px;
}
    .cont-box {
    box-shadow: 0px 0px 6px #00000040;
    text-align: center;
    padding: 45px 0px;
    /* height: 230px; */
    background: #15a2a2;
    border-radius: 25px;
    position: relative;
    z-index: 0;
}
span.d-block a {
    color: #fff;
    font-size: 17px;
    font-family: 'Montserrat';
}
.cont-box a {
    font-size: 15px;
    font-family: 'Montserrat';
    color: #fff;
}
.cont-box p {
    color: #fff;
    font-size: 17px;
    margin: 0 0 8px;
    font-weight: 400;
}
.cont-box h2 {
    color: #fff;
    font-size: 24px;
    /* font-family: 'Raleway', sans-serif; */
    /* padding: 0; */
    /* margin: 0; */
    /* font-family: 'beckman'; */
    /* font-weight: bold; */
}
    .gorilla-content .accordion-button.collapsed {
    /* padding: 22px 30px; */
    background-color: #65ebeb;
    color: #000000;
    font-size: 21px;
    font-family: 'NegaraSerif-HairlineItalic';
    line-height: 30px;
    /* border-radius: 0; */
    /* text-transform: uppercase; */
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}
    
    .faq {
    background-image: url(../images/ser-bk.png);
    /* height: 1137px; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 65px 60px 50px !important;
}
    
    h4 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 44px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}
    .wpb_wrapper a.theme-btn-11 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: 'Montserrat';
}
    .postid-136 .wpb_single_image img {
    height: 500px;
    max-width: 100%;
    vertical-align: top;
    object-fit: cover;
    object-position: right;
}
    ul.com-sym {
    list-style: disc;
    margin: 0;
}
ul.com-sym li {
    font-family: 'Montserrat';
    font-size: 14px;
}
    .abt-abs-vid i {
    font-size: 15px;
    color: #39b0b0;
    /* border: solid; */
    border-radius: 45px;
    padding: 20px;
    width: 50px;
    height: 50px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    /* background: linear-gradient(to right, #1862a2 10%, #073668 100%)!important; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}
    body.page-id-12 .main_serv_boxx {
    z-index: 1;
    padding: 0px 20px 10px;
    /* background: #ffffff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    position: relative;
    margin-top: 66px;
}
   body.page-id-12 .main_serv_boxx:after {
        height: 517px;
    }
    .comp-head h2 {
    font-size: 50px;
    line-height: 70px;
    font-family: 'NegaraSerif-HairlineItalic';
    width: 100%;
}
    .pt-8 {
    padding-top: 40px;
}
.pb-8 {
    padding-bottom: 80px;
}
.menuSec {
    padding: 20px 0 0 0;
}
.abt-img::before {
    position: absolute;
    content: "";
    /* background: aqua; */
    height: 425px;
    width: 366px;
    border-radius: 100%;
    z-index: -1;
    left: 21px;
    top: 2px;
    border: solid 4px #00f2f2;
}

.abt-img img {
    height: 50%;
    width: 70%;
    margin:0 auto;
}


.menuSection .col-lg-7.col-md-12.col-sm-4.d-none.d-md-block {
    order: 3;
}
.app-txt {
    margin-bottom: 40px;
}
.topSec:before {
   
    clip-path: unset;
}


.top-bar-center ul li a {

    font-size: 15px;

}


.menuSec ul li a {
   padding: 8px 10px;
   /* font-size: 12px; */
}


.menu-button a.theme-btn-1 {
    font-size: 17px;
    margin-top: 20px;
}
.menu-button {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-button a.theme-btn-1 {
  width: 60%;
}


    .banner_text h1 {
        font-size: 30px;
        line-height: 53px;
    }
.banner-text-btn a.theme-btn-1 {
    background: #15a2a2;
    width: 55%;
}


.main-banner-img {
    width: 100%;
    object-fit: cover;
    height: 540px;
}
.ser-head p {
   
    width: 100%;
   
}
.main_serv_boxx:after {   
    height: 627px
}
.appr-img img {
    width: 100%;
}


.img-bor::after {
  
    top: 64px;
}


.appt-head p {
    width: 100%;
    
}
.gall-txt p {
    width: 100%;
   
}

section.gallery.pt-8.pb-8 { 
    height: 690px;
   
}
footer.footer-sec .row .col-lg-3:not(:last-child) {
    border-right: 1px solid #000000;
   
}
.offer-txt span.quote {

    width: 100%;
 
}

.about-taisha {
    width: 100%;
    }
.offer {
   height: 100%;
   padding: 95px 40px 100px;
}

.main_serv_boxx h5 {    
    font-size: 27px;
}

.blog-text-btn a.theme-btn-1 {
    background: #15a2a2;
    width: 61%;
}
.blog-text h3 {
    font-size: 26px;
 
}



.contact-page-head {
    margin-top: 42px;
}


.menuSection {
    margin: 10px 0 20px;
}

section.services_secc {
   
    height: 1230px;

}



.test-head p {
    width: 100%;
    
}



}
@media only screen and (min-width: 992px) and (max-width: 1199px){
     
    .gorilla-content .accordion-button.collapsed {
    /* padding: 22px 30px; */
    background-color: #65ebeb;
    color: #000000;
    font-size: 21px;
    font-family: 'NegaraSerif-HairlineItalic';
    line-height: 30px;
    /* border-radius: 0; */
    /* text-transform: uppercase; */
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}
    
    .faq {
    background-image: url(../images/ser-bk.png);
    /* height: 1137px; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 65px 60px 50px !important;
}
    
    h4 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 44px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}
ul.com-sym {
    list-style: disc;
    margin: 0;
}

    .wpb_wrapper a.theme-btn-11 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: 'Montserrat';
}
    .postid-136 .wpb_single_image img {
    height: 500px;
    max-width: 100%;
    vertical-align: top;
    object-fit: cover;
    object-position: right;
}

    .abt-abs-vid i {
    font-size: 15px;
    color: #39b0b0;
    /* border: solid; */
    border-radius: 45px;
    padding: 20px;
    width: 50px;
    height: 50px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    /* background: linear-gradient(to right, #1862a2 10%, #073668 100%)!important; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}
.main_serv_boxx {
    z-index: 1;
    padding: 0px 20px 10px;
    /* background: #ffffff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    position: relative;
    margin-top: 76px;
}
.topSec:before {
     clip-path: polygon(50% 0%, 83% 0, 100% 0, 100% 70%, 100% 100%, 70% 100%, 27% 100%, 22% 20%, 0 19%, 0 0);
}

h2 {
    font-family: 'Zirkel-Regular', Sans-Serif;
    font-size: 30px;
    line-height: 15px;
    color: #15a2a2;
    font-weight: 500;
    margin: 0 0 10px;
}



    .top-bar-center ul li a {
        font-size: 11px;
    }
.menuSec ul li a {
 padding: 8px 3px;
 font-size: 15px;
}

.banner_text h1 {
   
    font-size: 40px;
}
.abt-txt h3 {font-size: 26px;line-height: 31px;margin: 0;}
.ser-head p {
    width: 100%;   
}

.test-head p {
    width: 100%;
  
}



.menu-button a.theme-btn-1 {
    font-size: 14px;
}
.abt-img::before {

    height: 430px;
    width: 430px;

    z-index: -1;
    left: 8px;
    top: 0px;
   
}
.serv-text-btn a.theme-btn-1 {
    /* background: #15a2a2; */
    width: 74%;
    height: 50px;
    font-size: 15px;
}
.main_serv_boxx p {
    font-size: 13px;   
    line-height: 17px;
}

.main_serv_boxx h5 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 18px;
    }    

.main_serv_boxx:after {
    height: 371px;
}
html {
    overflow-x: hidden;
}
.img-bor::before {
       right: 40px;
       top: -13px;
       height: 517px;
       width: 528px;
}
      .img-bor::after {
        left: -3px;
        top: -100px;
        height: 497px;
        width: 498px;
    }

section.gallery.pt-8.pb-8 {
 
    height: 894px;
    }

    footer.footer-sec .row .col-lg-3:not(:last-child) {
   
    padding-left: 18px;
}
ul.footer-link li a {
    font-size: 15px;
   
}
.offer-txt span.quote {
      width: 100%;
  
}.about-taisha {
  
    width: 100%;
  
}
.offer {
 padding: 135px 90px 90px;
 height: 100%;
}.comp-head h2 {
    font-size: 27px;
    line-height: 30px;
    width: 100%;
}

.der-det-text h3 {
   
    font-size: 34px;
   
}
.gall-txt p {
  
    width: 100%;
  
}
.blog-text-btn a.theme-btn-1 {
  
    width: 70%;
}
.blog-text h3 {
    font-size: 22px;
  
 
}
    .comp-head p {
    font-size: 15px;
}
    .about-taisha p {
    color: #fff;
    line-height: 20px;
}

 
    
}


@media only screen and (min-width: 300px) and (max-width: 519px){
    .contact-page-head p {
    font-size: 16px;
    font-family: 'Roboto-Regular';
}
ul.cont-icon-list p {
    font-size: 16px;
    color: #000;
    font-family: 'Roboto-Regular';
    font-weight: 300;
}
.cont-pg-input textarea {
    width: 100%;
    height: 160px;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 20px;
    margin-top: 10px;
}
ul.cont-icon-list h4 {
    font-size: 22px;
    line-height: 40px;
    margin: 0;
    color: #000;
}
    .book-text-btn input {
        width: 80% !important;
        margin: 0 auto;
    }
.cont-pg-input input {
    width: 100%;
    height: 60px;
    color: #000;
    border: 1px solid #000;
    border-top-right-radius: 25px;
    padding: 20px;
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-top: 10px;
    border-bottom-left-radius: 25px;
}
        ul.cont-icon-list {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    gap: 12px;
    margin-top: 23px;
}
ul.cont-icon-list i {
    font-size: 30px;
    color: #ffffff;
    width: 65px;
    height: 65px;
    /* border: 2px dashed #158785; */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #65ebeb;
}
    ul.cont-icon-list {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    gap: 12px;
    margin-top: 23px;
}
ul.cont-icon-list i {
    font-size: 30px;
    color: #ffffff;
    width: 65px;
    height: 65px;
    /* border: 2px dashed #158785; */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #65ebeb;
}
    section.contact-page {
    /* position: relative; */
    padding: 0px 0;
}
    .contact-page-head {
    margin-top: 40px;
}
    .cont-box {
    box-shadow: 0px 0px 6px #00000040;
    text-align: center;
    padding: 35px 10px;
    /* height: 230px; */
    background: #15a2a2;
    border-radius: 25px;
    position: relative;
    z-index: 0;
}
span.d-block a {
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat';
}
span.d-block {
    font-size: 14px;
    color: #fff;
}
.cont-box a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #fff;
}   
.cont-box p {
    color: #fff;
    font-size: 15px;
    margin: 0 0 8px;
    font-weight: 400;
}
.cont-box h2 {
    color: #fff;
    font-size: 19px;
    /* font-family: 'Raleway', sans-serif; */
    /* padding: 0; */
    /* margin: 0; */
    /* font-family: 'beckman'; */
    /* font-weight: bold; */
}
        .page-id-16 .title-new h3 {
        font-size: 29px;
        line-height: 57px;
    }
    .accordion-body.gorrila-page-txt {
    padding: 20px 10px;
}
.gorilla-content .accordion-button {
    /* color: #000000 !important; */
    font-size: 24px;
    padding: 10px 6px;
    line-height: 45px;
    background-color: transparent;
    font-size: 45px;
    font-family: 'Trirong-Regular';
}
    .wpb_wrapper a.theme-btn-11 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: 'Montserrat';
}
    ul.com-sym {
    list-style: disc;
    margin: 0;
}
    .video-head p {
    color: #fff;
    margin: 0 auto;
    width: 100%;
}
    h4 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 33px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    }
    .video {
    background-image: url(../images/ser-bk.png);
    /* height: 1137px; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0px 50px !important;
}
       body.page-id-12  .title-new h3 {
        font-size: 31px;
        line-height: 57px;
    
    }
    body.page-id-12  .main_serv_boxx {
    z-index: 1;
    padding: 0px 20px 10px;
    /* background: #ffffff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    position: relative;
    margin-top: 76px;
}
    body.page-id-12 .main_serv_boxx:after {
        height: 470px;
        top: 102px;
    }
    .comp-head p {
    font-size: 15px;
}
    .about-taisha p {
    color: #fff;
    line-height: 20px;
}
.booking-input input {
    width: 100%;
    height: 54px;
    border: 1px solid #c8c8c8;
    /* border-radius: 60px; */
    margin-bottom: 10px;
    padding: 10px 20px;
    
    text-transform: capitalize;
    background: #fff;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.book-text-btn input {
    width: 60%;
    margin: 0  auto;
}
.booking-input select {
    width: 100%;
    height: 60px;
    border: 1px solid #c8c8c8;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-bottom: 10px;
    padding: 10px 20px;
    text-transform: capitalize;
    background: #fff;
    -webkit-appearance: searchfield;
    font-family: 'Montserrat';
    color: #000;
    font-size: 18px;
}
section.bottom-nav p {
    font-size: 14px;
    color: #ffffff;
    font-family: 'Montserrat';
    text-align: center;
    line-height: 20px;
    margin: 0;
}
.footer-text a {
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
}
.footer-text li {
    color: #fff;
    display: flex;
    align-items: baseline;
    margin: 15px 0;
    gap: 7px;
}
ul.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    gap: 20px;
}
.last-cld {
    padding-top: 30px;
    padding-left:0;
}
footer.footer-sec .row .col-lg-3:not(:last-child) {
     padding-top: 30px;
    border-right: 1px solid #fff;
    padding-left: 10px;
}
footer.footer-sec {
    position: relative;
    padding: 60px 0 0;
    background-color: #000;
    width: 100%;
    clip-path: polygon(0 7%, 100% 0%, 100% 100%, 0% 100%);
}
.testimonial-box {
    text-align: center;
    box-shadow: 0 0 10px #0000002e;
    background: #fff;
    padding: 15px 5px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.testimonial-slide .slick-slide {
    margin: 10px 10px;
}
.booking-input textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #c8c8c8;
    /* border-radius: 20px; */
    padding: 10px 20px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-bottom: 50px;
    background: #fff;
    margin: 0;
}
h3 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 35px;
    line-height: 40px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
}
section.services_secc .slick-list {
    padding: 0 0px 20px;
}
.serv-text-btn a.theme-btn-1 {
    /* background: #15a2a2; */
    width: 52%;
    font-size: 15px;
    height: 40px;
}
.main_serv_boxx {
    z-index: 1;
    padding: 0px 20px 10px;
    /* background: #ffffff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    position: relative;
    margin-top: 16px;
}
.pt-8 {
    padding-top: 30px;
}
.pb-8 {
    padding-bottom: 30px;
}
p {
    color: #000;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    letter-spacing: 0px;
    margin: 0 0 10px;
}
.tp-social {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.theme-btn-1 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 15px 8px;
    font-size: 22px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    /* position: absolute; */
    right: 20px;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    font-family: 'Montserrat';
}

.menu-button a.theme-btn-1 {
    margin: 0 auto;
    font-size: 14px;
}

.topSec:before {

    clip-path: unset;
}

.slicknav_nav a:hover {
    background: #15a2a2;
    color: #fff;
}
.top-bar-center ul {
    display: inline;
   
}
.top-bar-center ul li {
    margin: 10px 0;
}


.top-bar-center ul li:nth-child(2) {
    border-right: none;
 
}
.top-bar-center ul li:first-child {
    border-right: none;
 }



.top-bar-center ul li a {
     font-size: 12px;
}

.header-logo {
    text-align: center;
    margin: 20px;
}
.main-banner-img {
        height: 470px;
        object-position: center;
    }

.banner_text h1 {
        font-size: 27px;
        line-height: 35px;
        filter: drop-shadow(1px 1px 0px #fff);
    }
    .banner-text-btn a.theme-btn-1 {
        width: 48%;
        height: 40px;
        font-size: 15px;
    }
.abt-img::before {
   height: 250px;
   width: 250px;
   }
.abt-txt h3 {
 font-size: 21px;
 line-height: 30px;
}


section.services_secc {
      padding: 35px 0px 50px;
      height: 100%;
}


.ser-head p {
 
    width: 100%;
    font-size: 14px;
    line-height: 19px;
}


.ser-head h4 {
    
    font-size: 37px;
    line-height: 55px;
}

.app-txt h3 {
  font-size: 41px;
}

.app-txt h6 {
   
    font-size: 22px;
    line-height: 28px;
}
.img-bor::before {
    position: inherit;
  
}

.img-bor::after {
    position: inherit;
  
}

.appt-head p {
    width: 100%;
 
}
section.gallery.pt-8.pb-8 {
   
    padding: 135px 0 50px;
     height: 1857px;
}

.gall-txt p {
    
    width: 100%;
    
}
.test-head p {
    width: 100%;
    
}
.footer-text.ftr-border {
    
    padding-left: 0;
}
.test-head h3 {
    font-size: 30px;
    line-height: 39px;
}


section.testimonial-wrap.pt-8.pb-8 {
    padding: 30px 0;
}

.banner-image img {
   
    height: 189px;
    object-fit: cover;
    object-position: left;
}

.offer {padding: 55px 0 50px;}
.offer-txt span.quote {
    font-size: 24px;       
    width: 100%;    
    line-height: 46px;
}


.about-taisha {
    width: 100%;

}
.about-taisha h4 {
    font-size: 40px;
}
.offer-txt h4 { 
    font-size: 44px;
    line-height: 45px;
}
.offer {
    height: 100%;
    padding: 85px 0 50px;
}
.comp-head h2 {
    font-size: 22px;
    line-height: 32px;
    width: 100%;
}
.main_serv_boxx h5 {
   font-size: 25px;
}


.main_serv_boxx:after {
    height: 410px;
    top: 122px;
}
.der-det-text h3 {
    
    font-size: 36px;
    line-height: 48px;
}

.faq {
    padding: 75px 0 50px;
}
.gall-txt h4 {
   
    font-size: 26px;
    line-height: 27px;
}


.gorilla-content .accordion-button.collapsed {
    font-size: 15px;
    line-height: 20px;
}


.gorilla-content .accordion-button:not(.collapsed) {
  
    font-size: 16px;
    line-height: 26px;
}
.title-new h3 {
  
    font-size: 33px;
    line-height: 57px;
}

.cont-box {
 
    margin-bottom: 20px;
}


.blog-text-btn a.theme-btn-1 {
  
    width: 60%;
}

.det-txt-sml ul li {
    
    gap: 5px;
}
.det-head h2 {

    font-size: 32px;
    line-height: 48px;  
    width: 100%;
}


}


@media only screen and (min-width: 520px) and (max-width: 767px){
    section.contact-page {
    /* position: relative; */
    padding: 0px 0;
}
    .contact-page-head {
    margin-top: 40px;
}
    .cont-box p {
    color: #fff;
    font-size: 18px;
    margin: 0 0 18px;
    font-weight: 400;
    line-height: 25px;
}
.cont-box p {
    color: #fff;
    font-size: 18px;
    margin: 0 0 8px;
    font-weight: 400;
    line-height: 20px;
}
       .accordion-body.gorrila-page-txt {
    padding: 20px 10px;
}
.gorilla-content .accordion-button {
    /* color: #000000 !important; */
    font-size: 24px;
    padding: 10px 6px;
    line-height: 45px;
    background-color: transparent;
    font-size: 45px;
    font-family: 'Trirong-Regular';
}
    .wpb_wrapper a.theme-btn-11 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-family: 'Montserrat';
}
  
        .video-head p {
    color: #fff;
    margin: 0 auto;
    width: 100%;
}
    h4 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 33px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    }
    .video {
    background-image: url(../images/ser-bk.png);
    /* height: 1137px; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0px 50px !important;
}
          body.page-id-12  .title-new h3 {
        font-size: 31px;
        line-height: 57px;
    }
    body.page-id-12  .main_serv_boxx {
    z-index: 1;
    padding: 0px 20px 10px;
    /* background: #ffffff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    position: relative;
    margin-top: 76px;
}

    body.page-id-12 .main_serv_boxx:after {
        height: 570px;
        top: 102px;
    }
.book-text-btn input {
    width: 60%;
    margin: 0  auto;
}

.booking-input input {
    display: block;
    width: 80%;
    /* height: 54px; */
    border: 1px solid #c8c8c8;
    /* border-radius: 60px; */
    /* margin-bottom: 10px; */
    /* padding: 10px 20px; */
    text-transform: capitalize;
    background: #fff;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin: 0 auto 20px auto;
}
.booking-input select {
    width: 80%;
    height: 60px;
    border: 1px solid #c8c8c8;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-bottom: 10px;
    padding: 10px 20px;
    text-transform: capitalize;
    background: #fff;
    -webkit-appearance: searchfield;
    font-family: 'Montserrat';
    color: #000;
    font-size: 18px;
    margin: 0 auto 20px auto;
    display: block;
}
section.bottom-nav p {
    font-size: 17px;
    color: #ffffff;
    font-family: 'Montserrat';
    text-align: center;
    line-height: 20px;
    margin: 0;
}
.footer-text a {
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
}
.footer-text li {
    color: #fff;
    display: flex;
    align-items: baseline;
    margin: 15px 0;
    gap: 7px;
}
ul.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    gap: 20px;
}
.last-cld {
    padding-top: 30px;
    /* padding-left:0; */
}
footer.footer-sec .row .col-lg-3:not(:last-child) {
     padding-top: 30px;
     border-right: 1px solid #fff;
     /* padding-left: 10px; */
}
footer.footer-sec {
    position: relative;
    padding: 60px 0 0;
    background-color: #000;
    width: 100%;
    clip-path: polygon(0 7%, 100% 0%, 100% 100%, 0% 100%);
}
.testimonial-box {
    text-align: center;
    box-shadow: 0 0 10px #0000002e;
    background: #fff;
    padding: 15px 5px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.testimonial-slide .slick-slide {
    margin: 10px 10px;
}
.booking-input textarea {
    width: 80%;
    height: 150px;
    border: 1px solid #c8c8c8;
    /* border-radius: 20px; */
    padding: 10px 20px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-bottom: 50px;
    background: #fff;
    margin: 0 auto 20px auto;
    display: block;
}
h3 {
    font-family: 'NegaraSerif-HairlineItalic', Sans-Serif;
    font-size: 35px;
    line-height: 40px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
}
section.services_secc .slick-list {
    padding: 0 0px 20px;
}
.serv-text-btn a.theme-btn-1 {
    /* background: #15a2a2; */
    width: 52%;
    /* font-size: 15px; */
    height: 60px;
}
.main_serv_boxx {
    z-index: 1;
    padding: 0px 20px 10px;
    /* background: #ffffff; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    position: relative;
    margin-top: 16px;
}
.pt-8 {
    padding-top: 30px;
}
.pb-8 {
    padding-bottom: 30px;
}
p {
    color: #000;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Montserrat', serif;
    font-weight: 300;
    letter-spacing: 0px;
    margin: 0 0 10px;
}
.tp-social {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.theme-btn-1 {
    border-top-right-radius: 35px;
    background: #000000;
    padding: 15px 8px;
    font-size: 22px;
    color: #fff !important;
    border-bottom-left-radius: 35px;
    border: 1px solid #fff;
    /* position: absolute; */
    right: 20px;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    font-family: 'Montserrat';
}

.menu-button a.theme-btn-1 {
    margin: 0 auto;
    /* font-size: 14px; */
    width: 100%;
}


.topSec:before {

    clip-path: unset;
}

.slicknav_nav a:hover {
    background: #15a2a2;
    color: #fff;
}
    .top-bar-center ul {
        display: inline;
        text-align: center;
    }
.top-bar-center ul li {
    margin: 20px 0;
}


.top-bar-center ul li:nth-child(2) {
    border-right: none;
 
}
.top-bar-center ul li:first-child {
    border-right: none;
 }



.top-bar-center ul li a {
     font-size: 14px;

}

.header-logo {
    text-align: center;
    margin: 20px;
}
    .main-banner-img {
        height: 519px;
        object-position: left;
    }

    .banner_text h1 {
        font-size: 36px;
        line-height: 48px;
        width: 92%;
    }

.banner-text-btn a.theme-btn-1 {
 width: 45%;
 height: 60px;
}
.abt-img::before {
   height: 422px;
   width: 422px;
   }
.abt-txt h3 {
 font-size: 38px;
 line-height: 47px;
}
.banner_text p {
    width: 79%;
    font-size: 14px;
    line-height: 20px;
}



section.services_secc {
      padding: 75px 0px 70px;
      height: 100%;
}


.ser-head p {
 
    width: 100%;
    font-size: 14px;
    line-height: 19px;
}


.ser-head h4 {
    
    font-size: 37px;
    line-height: 55px;
}

.app-txt h3 {
  /* font-size: 45px; */
}

.app-txt h6 {
   /* font-size: 22px; */
   /* line-height: 28px; */
}
.img-bor::before {
    position: inherit;
  
}

.img-bor::after {
    position: inherit;
  
}

.appt-head p {
    width: 100%;
 
}
section.gallery.pt-8.pb-8 {
   
    padding: 135px 0 50px;
             height: 800px;
}

.gall-txt p {
    
    width: 100%;
    
}
.test-head p {
    width: 100%;
    
}
.footer-text.ftr-border {
    
    padding-left: 0;
}
.test-head h3 {
    font-size: 44px;
    line-height: 49px;
}


section.testimonial-wrap.pt-8.pb-8 {
    padding: 60px 0;
}

.banner-image img {
   
    height: 189px;
    object-fit: cover;
    object-position: left;
}

.offer {padding: 75px 0 100px;}
.offer-txt span.quote {
    font-size: 24px;       
    width: 100%;    
    line-height: 46px;
}


.about-taisha {
    width: 100%;

}
.about-taisha h4 {
    font-size: 50px;
    
}
.offer-txt h4 { 
    font-size: 44px;
    line-height: 45px;
}
.offer {
         height: 100%;
}
.comp-head h2 {
    font-size: 32px;
    line-height: 51px;    
    width: 100%;
}
.main_serv_boxx h5 {
   
    font-size: 27px;
}


    .main_serv_boxx:after {
        height: 483px;
        top: 122px;
    }
.der-det-text h3 {
    
    font-size: 36px;
    line-height: 48px;
}

.faq {
    padding: 65px 0 50px;
}
.gall-txt h4 {
   
    font-size: 26px;
    line-height: 27px;
}
.video-head p {
  
    width: 100%;
}

.gorilla-content .accordion-button.collapsed {
    
  
    font-size: 16px;   
    line-height: 26px;
}


.gorilla-content .accordion-button:not(.collapsed) {
  
    font-size: 16px;
    line-height: 26px;
}
.title-new h3 {
  
    font-size: 33px;
    line-height: 57px;
}

    .cont-box {
        margin-bottom: 20px;
        padding: 44px 8px;
    }
    .cont-box h2 {
   
    font-size: 18px;
  }


    .blog-text-btn a.theme-btn-1 {
        width: 87%;
    }
.det-txt-sml ul li {
    
    gap: 5px;
}
.det-head h2 {

    font-size: 32px;
    line-height: 48px;  
    width: 100%;
}
.tp-social {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.appt-head h3 {
  
    font-size: 38px;
}

.gall-img {
    margin-top: 20px;
}


footer.footer-sec .row .col-lg-3:not(:last-child) {
    border-right: none;
    /* padding-left: 0; */
}



.last-cld {
    /* padding-left: 0; */
}


.video-images img.vid1 {
    width: 100%;
}
.blog-text h6 {
    font-size: 17px;
   
}


.blog-text h3 {
    font-size: 17px;
     line-height: 21px;
}












}
.reslink {
    margin-top: 60px;
    padding: 0px 0px 40px 0px;
}

.reslink a {
    text-decoration: underline;
    color: #000;
    font-size: 25px;
}