@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=Roboto:ital,wght@0,100..900;1,100..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 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-family: 'Montserrat';
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'AGENCYB';
  src: url(../fonts/AGENCYB.woff);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.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: 'AGENCYB';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'AGENCYB';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'AGENCYB';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'AGENCYB';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'AGENCYB';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
   font-family: 'Montserrat';
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

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 */

.menuSec {
  padding: 15px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}
header {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.menuSec .row {
    align-items: center;
}
.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 0px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.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: #e00f20;
}

.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;
}

.container{
  max-width: 1450px;
}

.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;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
.menuSec a.btn-1 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 500;
    border: 1px solid #fff;
    width: fit-content;
    margin: 0 auto;
    padding-left: 20px;
    background-color: #000;
    text-transform: uppercase;
}
 a.btn-1 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 500;
    border: 1px solid #fff;
    width: fit-content;
    padding-left: 20px;
    background-color: #000;
    text-transform: uppercase;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */
img.banner-img {
    width: 100%;
    height: 850px;
    object-fit: cover;
}
.bann-img-ban-txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

section.banner {
    position: relative;
    z-index: 1;
}
.bann-img-ban-txt p {
    font-size: 19px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 400;
    line-height: 25px;
}
.bann-txt h4 {
    font-size: 81px;
    color: #fff;
    line-height: 93px;
    margin-bottom: 0;
}

.bann-txt h1 {
    font-size: 138px;
    line-height: 150px;
    color: #fff;
}
section.banner::before {
    position: absolute;
    top: 43%;
    right: 0;
    bottom: 0;
    width: 50%;
    background-color: #e00f20;
    content: '';
    height: 150px;
}
/*banner css end*/
/*about start*/
section.about {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

section.about .row {
    align-items: center;
}

.abt-img img {
    width: 100%;
    height: 690px;
    object-fit: cover;
    object-position: top;
}

.abt-txt h2 {
    font-size: 90px;
    line-height: 100px;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.abt-txt p {
    font-size: 14px;
    color: #000000;
}
.abt-txt-ul ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.abt-txt-ul ul li h6 {
    font-size: 17px;
    line-height: 30px;
    color: #fff;
}

.abt-txt-ul ul li h6 span {
    display: block;
    font-family: 'Roboto';
    font-size: 15px;
    color: #fff;
}

.abt-txt-ul ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

section.about::before {
    position: absolute;
    top: 53%;
    right: 0;
    bottom: 0;
    width: 57%;
    background-color: #e00f20;
    content: '';
    height: 150px;
    z-index: -1;
    }
.abt-txt-ul {
    margin: 60px 0px 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}
/*about end*/
/*service start*/
.ser-txt h2 {
    font-size: 90px;
    line-height: 100px;
    color: #1e1e1e;
}

.ser-txt h2 span {
    display: block;
}
.ser-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.ser-btn a {
    font-size: 35px;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'AGENCYB';
    border: 1px solid #d9d9d9;
    padding-left: 30px;
    background-color: #fff;
}

.ser-btn a img {
  height: auto;
  width: auto;
}
.ser-img {
    margin-top: 15%;
}
.ser-img-2 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.ser-img-3 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.ser-img-3 {
    margin: 70px 0 0 auto;
    width: 95%;
}
.ser-bot-img {
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
    width: 75%;
    position: relative;
    margin-bottom: -150px;
    z-index: 1;
}

.ser-bot-img img {
    height: 560px;
    object-fit: cover;
    width: 100%;
}
/*service end*/
/*testimonials start*/

section.testimonials {
    padding-top: 12%;
    padding-bottom: 100px;
}

.test-txt-top {
    text-align: center;
    margin-bottom: 5px;
}
section.testimonials .headtext h2 span {
  color: #003a37;
}

section.testimonials .headtext p {
  color: #003a37;
  font-weight: 500;
}

section.testimonials .item {
  /* opacity: 1; */
}

section.testimonials .item .box {
  display: flex;
  box-shadow: 6px 8px 20px 0px #44444417;
  box-sizing: border-box;
  border-radius: 0px;
  padding: 40px 30px 30px 10px;
  position: relative;
  /* border-radius: 0px 0px 49px 0px; */
  background: #fff;
  /* border: 1px solid #ff6158; */
}

section.testimonials .item .box .author {
  width: 43%;
  padding: 0px 10px;
  position: relative;
}

section.testimonials .item .box .author-text {
  position: relative;
  padding-top: 18px;
  padding-bottom: 20px;
  transition: 2s;
  margin-bottom: 10px;
}

section.testimonials .item .box .author-text h4 {
  color: #1e2024;
  font-size: 19px;
  text-transform: capitalize;
  line-height: 18px;
  margin-bottom: 0px;
  transition: 2s;
  font-weight: 500;
  font-family: 'Montserrat';
}

section.testimonials .item .box .author-text span {
  color: #1e202452;
  font-size: 16px;
  line-height: 28px;
  transition: 2s;
}

section.testimonials .item .box p {
  font-style: italic;
  line-height: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  transition: 2s;
  display: inline;
  color: #9c9c9c;
  font-style: unset;
  font-family: 'Roboto';
}

section.testimonials .item .box .des {
  padding-left: 10px;
  padding-bottom: 30px;
}

section.testimonials .item .box p:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 14px;
  left: -23px;
  top: 10px;
  background-image: url(../images/topQuote.png);
  background-size: 100% 100%;
  transition: 2s;
}

section.testimonials .item .box p:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 14px;
  right: -20px;
  bottom: 10px;
  background-image: url(../images/btm-quote.png);
  background-size: 100% 100%;
  transition: 2s;
}

section.testimonials .item .box:hover p::before {
   filter: brightness(0) invert(1); 
}

section.testimonials .item .box:before {
  position: absolute;
  content: "";
  width: 12%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ea1728;
  border-radius: 0px;
  transition: 1s;
  /* border-radius: 0px 0px 49px 0px; */
}

section.testimonials .item .box:hover p {
  color: #fff;
}

section.testimonials .item .box .author img {
  transition: 2s;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 7px solid #fff;
  object-fit: cover;
}

section.testimonials .item .box:hover .author-text {
  color: #fff;
}

section.testimonials .item .box:hover .author-text span {
  color: #fff;
}

section.testimonials .item .box:hover .author-text h4 {
  color: #fff;
}

section.testimonials .item .box:hover:before {
  width: 100%;
}

section.testimonials .slick-list {
    margin-right: 69px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 40px;
}
section.testimonials {
  padding-bottom: 100px;
  position: relative;
  /* overflow: hidden !important; */
  /* padding-right: 20px; */
  padding-top: 17%;
  background-image: url(../images/test-bg.jpg);
  width: 100%;
  height: 100%;
  background-attachment: fixed;
}
.clientsslid .slick-active {
    opacity: 1.5;
}
section.testimonials .heading-services h2 {
    color: #fff;
}
section.testimonials .heading-services p {
    color: #ffffff7a;
}
section.testimonials .item .box:hover p:after {
    filter: brightness(0) invert(1);
}
.heading-services {
    text-align: center;
    margin-bottom: 40px;
}


.testimonials_sldier .slick-slide {
    margin: 0px 10px;
}

.testimonials_sldier .slick-active {
    opacity: 1;
}
.test-txt-top h3 {
    font-size: 90px;
    line-height: 80px;
    color: #fff;
}

.test-txt-top p {
    font-size: 15px;
    width: 50%;
    margin: 0 auto;
    color: #fff;
    font-family: 'Roboto';
    line-height: 26px;
}
/*testimonials end*/
/*consulting start*/
section.why-turner {
    padding: 100px 0px;

}
.consulting-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.consulting-img::before{
    position: absolute;
    right: -42px;
    height: 90%;
    width: 79%;
    content: '';
    background-color: #ea1728;
    top: -44px;
    z-index: -1;
}
.consulting-img{
  position: relative;
  z-index: 1;
}

.why-turner-txt-bx h3 {
    font-size: 90px;
    color: #1e1e1e;
    line-height: 80px;
    margin-bottom: 20px;
}
.why-turner-txt-bx {
    padding: 20px;
    background-color: #fff;
    position: relative;
    z-index: 999;
    right: -105px;
    width: 103%;
    padding-top: 50px;
}

.why-turner-txt-bx p {
    font-size: 14px;
    color: #000000;
    width: 87%;
}
/*section.why-turner end*/
/* Footer Start */

section.footer {
    background: #0c0b0b;
    padding-top: 50px;
    padding-bottom: 60px;
}


section.footer p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #8c8c8c;
    line-height: 25px;
    font-family: "Roboto", sans-serif;
}


.foot2.chg-link {
    margin-left: 30px;
}
ul.adrs-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.7s ease-in-out;
    font-size: 14px;
    color: #b9babb;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px solid #4c4b4b;
    padding-bottom: 23px;
    font-family: "Roboto", sans-serif;
}

li.boader a {
    border: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

ul.adrs-links {
    margin-bottom: 0 !important;
}

ul.adrs-links li {
    line-height: 1.5;
    margin-bottom: 25px;
}

ul.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

ul.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #033059;
    height: 38px;
    width: 38px;
    border-radius: 0;
    font-size: 20px;
    border-radius: 0px;
}

ul.social-links li a:hover {
    background: #ffe1a8;
    color: #033059;
    animation: float 1s ease-in-out infinite;
}

ul.social-links li a:hover i {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

ul.adrs-links li a:hover {
    color: #f44a31;
}

section.footer h2 {
    font-size: 32px;
    color: #fff;
}

ul.linkList li a {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    color: #b9babb;
    font-family: 'Montserrat';
    transition: 0.5s;
}

ul.linkList li a i {
    color: #ffffff94;
}

section.footer h4::before {
    position: absolute;
    content: "";
    background: #94c83d;
    height: 4px;
    width: 55px;
    bottom: -12px;
    display: none;
}

form.footerForm input {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0;
    width: 100%;
    height: 55px;
    padding: 0 20px;
}
form.footerForm input::placeholder {
    text-transform: uppercase;
       color: #b9babb;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
   
}

ul.linkList li a:hover {
    color: #f44a31;
    /* margin-left: 20px; */
}

.foot1 {
    padding: 0 0% 0 0;
    margin-top: 24px;
    position: relative;
}

.foot4 {
    padding: 30px 0% 0px 21px;
}

section.copyrite-txt {
    background: #0c0b0b;
    border-top: 1px solid #4c4b4b;
    padding: 20px 0;
}

section.copyrite-txt p {
    margin-bottom: 0;
    font-size: 16px;
    text-align: center;
    color: #777a7c;
    font-family: 'Montserrat';
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    25% {
        transform: translatey(-10px);
    }
    100% {
        transform: translatey(0px);
    }
}

ul.adrs-links li a:hover i {
    animation: float 1s ease-in-out infinite;
    font-size: 20px;
}

.foot2 {
    padding-right: 0px;
    margin-top: 32px;
}
ul.adrs-links li a i {
    font-size: 18px;
    margin-right: 5px;
    color: #fff;
}

form.footerForm button {
    border-radius: 0;
}

form.footerForm button:hover {
    color: #000;
}

form.footerForm button::before,
form.footerForm button::after {
    border-radius: 0;
}

ul.adrs-links li:first-child,
ul.adrs-links li:last-child {
    display: flex;
    align-items: baseline;
    gap: 12px;
    transition: 0.7s ease-in-out;
    font-size: 13px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 400;
    /* margin-left: 10px; */
}

form.footerForm button {
    background: #ea1728;
    text-transform: uppercase;
    padding: 15px 35px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

ul.footer-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    border-radius: 50%;
    transition: 0.5s;
    animation: tada 1.5s ease infinite;
}


ul.footer-social li a:hover {
    background: #e00f20;
    transition: 0.5s;
}

.social-icon ul {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    margin-top: 10px;
    padding: 0 0 0 0%;
}
.social-icon h5 {
    color: #fff;
    margin-bottom: 0px;
    font-size: 14px;
    font-family: 'Graphik';
}

.quick-links-ft ul {
    line-height: 40px;
    column-count: 2;
}
ul.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}
.img-fluid {
width: 100%;
    height: auto;
}

.payment-card {
    float: inline-end;
}
section.copyrite-txt .row {
    align-items: center;
}

.social-icon ul li a:hover {
    background: #fff;
}
.theme-btn-1:hover {
    box-shadow: inset 250px 0px 0px 0 #f44a31;
    transition: 0.5s;
    color: #fff;
    border: 1px solid #000;
}
/*Footer End*/
/*Up Coming Start*/


.up-coming-sec {
    padding: 100px 0 40px;
}
.up-coming-heading h2 {
    margin-bottom: 35px;
    font-size: 90px;
    color: #000000;
    line-height: 80px;
}
.up-coming-heading p {
    width: 60%;
    margin: 0 auto;
}
.up-coming-img img {
    width: 100%;
    height: 307px;
    object-fit: cover;
}
.up-coming-text {
    margin-left: 25px;
}
.up-coming-box {
    position: relative;
    padding: 35px 0;
    background-color: #fdfdfd;
}
.up-coming-text ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.up-coming-text ul li span i {
    font-size: 25px;
    color: #fff;
    animation: tada 1.5s ease infinite;
}
.up-coming-text ul li span {
    background: #ea1728;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.up-coming-text ul li h3 {
    font-size: 36px;
    margin-bottom: 0;
}
.up-coming-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.up-coming-box:before {
    content: "";
    position: absolute;
    border: 2px solid #d3d3d3;
    width: 85%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}
.up-coming-text h2 {
    color: #1f1f1f;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 2px solid #cececf;
    padding-bottom: 10px;
    position: relative;
}
.up-coming-text h2:before {
    content: "";
    position: absolute;
    background-image: url(../images/up-coming-box-points.png);
    width: 21px;
    height: 21px;
    right: -9px;
    bottom: -10px;
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    animation: tada 1.5s ease infinite;
}
.up-coming-box:after {
    content: "";
    position: absolute;
    background-image: url(../images/up-coming-number-1.png);
    width: 89px;
    height: 43px;
    background-size: cover;
    top: -40px;
    right: 50px;
}
.up-coming-box.chg {
    margin-top: 70px;
}
.up-coming-text ul li p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    width: 40%;
    line-height: 15px;
    margin-bottom: 0;
    color: #000;
}
.up-coming-text ul li a {
    font-size: 16px;
    color: #1f1f1f;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
.up-coming-box-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.up-coming-box.chg:before {
    right: inherit;
    left: 0;
}
.up-coming-box.chg .up-coming-text {
    margin-left: 0;
   
}
.up-coming-box.chg .up-coming-text h2 {
    padding-left: 25px;
}
.up-coming-box.chg .up-coming-text p {
    padding-left: 35px;
}
.up-coming-text ul {
    
    gap: 10px;
    
}
.up-coming-box.chg .up-coming-box-row {
    padding-left: 35px;
}
.up-coming-box.chg .up-coming-text h2:before {
   
    left: -9px;
}
.up-coming-box.chg .up-coming-text ul li p {
   
    padding-left: 0 !important;
}

.up-coming-box.chg:after {
    background-image: url(../images/up-coming-number-2.png);
    left: 50px;
    width: 97px;
    height: 42px;
}

/*Up Coming End*/
/*inn-banner start*/
img.inn-bann {
    width: 100%;
    height: 600px;
}
.inn-bann-txt-img{
position: absolute;
top: 0;
left: 0;
width: 100%;
display: flex;
align-items: center;
height: 100%;

}
section.inner-banner{
  position: relative;
  z-index: 1;
}
.in-ban-txt h2 {
    font-size: 115px;
    color: #fff;
    line-height: 110px;
}
.in-ban-txt h2 span{
  display: block;
}

.in-ban-txt p {
    font-size: 15px;
    color: #fff;
    font-family: 'Roboto';
    width: 75%;
    line-height: 26px;
}
section.inner-banner::before{
    position: absolute;
    top: 43%;
    right: 0;
    bottom: 0;
    width: 38%;
    background-color: #e00f20;
    content: '';
    height: 100px;
  }
/*inn-banner end*/
/*about-page start*/
section.about.inn .abt-img img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    object-position: top;
}
section.about.inn::before {
    display: none;
}
/*mission start*/
.miss-txt h3 {
    font-size: 80px;
    line-height: 70px;
    color: #000000;
}

.miss-txt p {
    font-size: 16px;
    color: #646464;
    font-family: 'Roboto';
}
.viss-txt h3 {
    font-size: 80px;
    line-height: 70px;
    color: #000000;
}
.viss-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.viss-txt p {
    font-size: 16px;
    color: #646464;
    font-family: 'Roboto';
}
.miss-img {
   text-align: center;
   position: relative;
   width: 80%;
   margin: 0 auto;
   z-index: 1;
}
.viss-img {
    text-align: center;
    position: relative;
    width: 80%;
    margin: 0 auto;
}
.miss-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.miss-img::before {
    position: absolute;
    right: -25px;
    width: 90%;
    height: 110%;
    z-index: -1;
    content: '';
    background-color: #ea1728;
    top: -20px;
}
.viss-img::before {
    position: absolute;
    left: -25px;
    width: 90%;
    height: 110%;
    z-index: -1;
    content: '';
    background-color: #ea1728;
    top: -20px;
}
section.mission {
    padding-bottom: 100px;
}
section.testimonials.inn {
    padding-top: 100px;
    background-image: unset;
}

section.testimonials.inn .test-txt-top h3 {
    color: #000;
}

section.testimonials.inn .test-txt-top p {
    color: #000;
}
/*mission end*/
/* book now */

.ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #b6302c;
    padding: 10px;
    /* border-radius: 10px; */
    box-shadow: 0 0 20px 0 #00000045;
}

section.book-now-sec {
    /* background: #f8f6f6; */
    padding: 100px 0;
    margin-bottom: 80px;
}

a.ui-datepicker-next {
    order: 3;
}

.ui-datepicker-title {
    font-size: 23px;
    background: #fff;
    padding: 10px 20px;
    /* border-radius: 6px; */
}

.ui-datepicker-header a {
    font-size: 30px;
}

table.ui-datepicker-calendar {
    width: 90%;
    text-align: center;
    margin: auto;
}

table.ui-datepicker-calendar th,
table.ui-datepicker-calendar td {
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 600;
}
table.ui-datepicker-calendar th, table.ui-datepicker-calendar td a {
    color: #000;
}

table.ui-datepicker-calendar thead {
    border-bottom: 2px solid #000;
}

div#datepicker {
    background: #ede0d9;
    border-radius: 10px;
    border: 1px solid #af2e28;
}

td.ui-datepicker-current-day {
    background: #d6221d;
    /* border-radius: 10px; */
    color: #fff !important;
}

table.ui-datepicker-calendar th {
    padding-top: 30px;
}

p.bgText {
    font-size: 36px;
    font-family: 'AGENCYB';
    color: #000;
    line-height: 40px;
    text-transform: capitalize;
}

.select-time {
    margin-top: 50px;
}

.select-time>span {font-size: 36px;font-family: 'AGENCYB';color: #000;line-height: 40px;text-transform: capitalize;}

.time-box-wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-flow: wrap;
}

.time-btn {
    width: 30%;
    position: relative;
    margin: 15px 0;
}

.time-btn input {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.time-btn span {
    color: #000;
    font-size: 20px;
    height: 65px;
    width: 100%;
    background: #ede0d9;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 10px; */
    border: 1px solid #af2e28;
}

.time-btn input:checked+span {
    background: #d6221d;
    color: #fff;
}

a.btn-lg-mo {
    height: 70px;
    display: inline-flex;
    background: #ede0d9;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0 20px;
    font-size: 18px;
    /* border-radius: 10px; */
    color: #000;
    border: 1px solid #cd1e13;
}

a.btn-lg-mo i {
    margin-left: 30px;
}

.book-form {
    margin-top: 70px;
}

.book-form input,
.book-form textarea {
    height: 50px;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    border: none;
    /* box-shadow: 0 0 20px 0 #0003; */
    /* border-radius: 6px; */
    border: 1px solid #bfbfbf;
}

.book-form textarea {
    height: 150px;
}

.book-form button.btn-1 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 500;
    border: 1px solid #fff;
    width: fit-content;
    padding-left: 20px;
    background-color: #000;
    text-transform: uppercase;
    padding-right: 0;
    margin: 0 auto;
}

.book_appoinment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    border-top: 1px solid #237a69;
    padding-top: 30px;
}

.book_appoinment ul {
    display: flex;
    align-items: center;
}

.book_appoinment ul li img {
    margin-right: 24px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(49%) saturate(542%) hue-rotate(118deg) brightness(95%) contrast(90%);
}

.book_appoinment ul li h2 {
    margin: 0;
    font-weight: 700;
    font-size: 40px;
}

.book_appoinment p {
    font-size: 20px;
    margin: 10px 0px;
}

.book_appoinment ul li .theme_btn {
    margin-left: 10px;
}
.contact_box p a {
    color: #000;
}
.contact_box a {
    color: #000;
}
section.book-now-sec i {
    color: #fff;
}
/* book now */
/*service start*/

section.inner-service {
    padding: 80px 0;
}

.inner-service-img img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border: 1px solid #d60416;
    padding: 15px;
    /* border-radius: 45px; */
    position: relative;
}

.service-img-pos img {
    object-position: right;
}

.inner-service-img {
    position: relative;
}

section.inner-service .row {
    position: relative;
    padding-bottom: 50px;
}

section.inner-service .row:before {
    content: '';
    position: absolute;
    top: 40%;
    left: -30%;
    width: 35%;
    height: 20%;
    z-index: -1;
    /* background-image: -webkit-linear-gradient(-92deg, rgb(2, 122, 208) 0%, rgb(1, 59, 143) 100%); */
    background-color: #e00f20;
}

.inner-service-text h5 {
    color: #ff7e25;
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.inner-service-text h4 {
    font-size: 60px;
    color: #000;
    line-height: 65px;
    margin-bottom: 10px;
}

.inner-service-text p {
    color: #000;
    font-weight: 500;
    margin: 0;
}

.inner-service-text ul {
    margin-bottom: 20px;
    margin-top: 20px;
}

.inner-service-text ul li i {
    color: #ff7e25;
    font-size: 25px;
}

.new-services ul {
    columns: 2;
}

.inner-service-text ul li {
    line-height: 40px;
    color: #565558;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    gap: 0px;
    align-items: center;
}

.inner-service-text ul li img {
    margin-right: 15px;
}

.row.d-flex.right-img:before {
    right: -30%;
    left: inherit;
}

section.inner-service .row {
    align-items: center;
}

/*service end*/
/* InnerPage Contact Us start */
.contact-pag-form form {
  position: relative;
}
.contact-pag-form .form-group {
  position: relative;
}
.contact-pag-form .form-group::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  left: 40px;
  top: 5px;
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}
.contact-pag-form .form-group1::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  right: 40px;
  top: 5px;
  left: unset;
  transform: rotate(180deg);
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}
.contact-pag-form form input.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 55px;
  border: 1px solid #bdbdbd;
  line-height: 0;
  box-shadow: none;
  color: black;
  font-weight: 400;
  background-color: transparent;
  margin-top: 26px;
  display: flex;
  border-radius: 5px;
}
.contact-pag-form form select.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 25px;
  border: 1px solid #bdbdbd;
  box-shadow: none;
  color: black;
  font-weight: 400;
  background-color: transparent;
  margin-top: 20px;
  display: flex;
  border-radius: 5px;
}
.contact-pag-form .form-group:before {
  content: "";
  position: absolute;
  background-image: url(../images/contact-line.png);
  width: 8px;
  height: 47px;
  background-repeat: no-repeat;
  left: 40px;
  top: 5px;
}
.contact-pag-form .form-group:before {
  content: "";
  position: absolute;
  background-image: url(../images/contact-line.png);
  width: 50px;
  height: 50px;
}
.contact-pag-form form input.form-control::placeholder {
  color: #909091;
}
.contact-main-sec .them-btn-1:hover {
  background-color: #00006d;
  transition: 0.3s all;
}
.contact-pag-form form textarea.form-control {
  font-size: 15px;
  padding-left: 55px;
  padding-top: 20px;
  border: 1px solid #c6c6c6;
  letter-spacing: 0;
  box-shadow: none;
  resize: unset;
  background-color: transparent;
  margin-top: 20px;
  color: #000000;
  border-radius: inherit;
  border-radius: 6px;
  height: 150px;
  scroll-behavior: unset;
  position: relative;
}
.contact-pag-form .detailss {
  position: relative;
}
.contact-pag-form .detailss i {
  position: absolute;
  top: 20px;
  color: #7e7e7e;
  left: 13px;
  font-size: 20px;
}
.contact-pag-form .email {
  padding: 0;
}
.contact-pag-form h4 {
  font-size: 62px;
  line-height: 70px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}
.contact-pag-form form textarea.form-control::placeholder {
  color: #909091;
}
.contact-pag-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #909091;
}
.contact-pag-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(18, 28, 42, 0.55);
}
.contact-pag-form :-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(18, 28, 42, 0.55);
}
.contact-pag-form :-moz-placeholder {
  /* Firefox 18- */
  color: rgba(18, 28, 42, 0.55);
}
.cicle-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: transparent;
  height: 70px;
  width: 70px;
  border-radius: 50px;
  color: #e00f20;
  background: #fff;
  border: 1px solid #bd5748;
}
.cicle-icon img {
  margin: 0 auto;
}
.contact-info {
  background: white;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #c6c6c6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  /* border-radius: 10px; */
}
.contact-main-sec h4 {
  font-size: 70px;
  color: #000000;
  font-weight: 400;
  line-height: 60px;
  font-family: 'AGENCYB';
  margin-bottom: 0px;
}
.contact-main-sec p span {
  display: block;
}
.contact-main-sec p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  font-family: "Oswald";
  text-transform: capitalize;
}
.contact-main-sec h2 {
  margin: 0;
  font-size: 23px;
  color: black;
  /* font-family: 'Brunson'; */
  text-transform: uppercase;
  font-weight: 400;
  line-height: 40px;
}
.contact_text p {
  font-size: 22px;
  line-height: 25px;
  color: #8b8b8b;
  padding-top: 0px;
  font-weight: 400;
  letter-spacing: 1px;
}
.contact_text p a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  transition: 0.5s ease-in-out;
  display: block;
  font-family: 'Montserrat';
}
.mailt {
  padding-left: 30px;
}
.contact_text a:hover {
  color: #8b8b8b;
}
.contact_text p a.email-text:hover {
  color: #8b8b8b;
}
.contact-us {
  padding: 6% 0;
}
.contact-head {
  text-align: center;
}
.contact-head h2 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
}
.lg-btn {
  width: 100%;
}
.cp {
  font-size: 17px;
  line-height: 27px;
}
.contact_heading {
  margin-bottom: 30px;
}
.contact_heading h2 {
  font-size: 45px;
  color: #000000;
  font-weight: bolder;
}
.contact-side-bar {
  padding-top: 0;
  margin-left: 20px;
}
.contact-main-sec {
  padding: 100px 0;
}
.contact-pag-form .form-group i {
  position: absolute;
  top: 20px;
  color: #7e7e7e;
  left: 13px;
  font-size: 20px;
}
.contact-pag-form .form-group1 i {
  right: 13px;
  left: unset;
  color: #7f7f7f;
  pointer-events: none;
}
.contact-pag-form {
  margin-top: 0;
}
.contact-pag-form button {
  margin-top: 30px;
}
section.contact-main-sec button {display: flex;align-items: center;gap: 20px;justify-content: center;font-size: 12px;color: #fff;font-family: 'Montserrat';font-weight: 500;border: 1px solid #fff;width: fit-content;/* margin: 0 auto; */padding-left: 20px;background-color: #000;text-transform: uppercase;padding-right: unset;}
section.contact-main-sec button span {
  /* width: 50px; */
  /* height: 58px; */
  /* border-radius: 0 5px 5px 0; */
}
.contact-pag-form .detailss::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  left: 40px;
  top: 5px;
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}
.cicle-icon {
  margin: 0 17px 0 0;
}
.contact-side-bar h4 {
  padding: 0 0 30px 0;
}
/* InnerPage Contact Us end */
a.btn-1:hover {
    box-shadow: inset 200px 0 0px #e00f20;
    transition: 2s;
    border: 1px solid #fff;
}
.btn-shine {
    background: linear-gradient(to right, #fff, #d60416, #d60416 33%, #fff 4%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 10s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    /* text-decoration: none; */
}
@keyframes shine {

  0%,
  100% {
    background-position: 0;
  }

  10% {
    background-position: 50px;
  }

  20% {
    background-position: 100px;
  }

  30% {
    background-position: 150px;
  }

  40% {
    background-position: 200px;
  }

  50% {
    background-position: 250px;
  }

  60% {
    background-position: 300px;
  }

  70% {
    background-position: 350px;
  }

  80% {
    background-position: 400px;
  }

  90% {
    background-position: -450px;
  }
}


section.about.inn .abt-txt p {
    width: 80%;
  
    background-color: #fff;
}



section.footer form.footerForm input::placeholder {
    color: #000;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.abt-img.on {
    position: relative;
}
.abt-img.on::before{
      position: absolute;
    left: -60px;
    background-color: #ea1728;
    content: '';
    height: 500px;
    width: 212px;
    bottom: -60px;
    clip-path: polygon(0% 0%, 45% 0%, 45% 12%, 28% 12%, 28% 88%, 100% 88%, 100% 100%, 0% 100%);
    border-bottom-left-radius: 50px;
    z-index: 0;
}
section.about::before {
    display: none;
}
section.pricing {
    padding-bottom: 100px;
}
.course-txt-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #e00f20;
}

.course-txt-top h4 {
    margin: unset;
    color: #fff;
}

.course-txt-top h5 {
    margin: unset;
    color: #fff;
}

.course-txt-bot {
    padding: 20px 0px;
    overflow-y: scroll;
    height: 320px;
    margin-bottom: 30px;
}

.course-txt-bot p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 28px;
}

.course-txt-bot ul li p {margin: unset;font-size: 15px;}

.course-txt-bot ul li {
    padding-bottom: 10px;
    list-style: disc;
}
.course-txt-bot ul {
    padding-left: 22px;
}
.pricing-top-txt h3 {
    text-align: center;
    font-size: 90px;
    color: #1e1e1e;
    line-height: 80px;
    margin-bottom: 40px;
}
.course-txt-bot p a {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
}
.course-txt-bot::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.course-txt-bot::-webkit-scrollbar
{
  width: 12px;
  background-color: #F5F5F5;
}

.course-txt-bot::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #D62929;
}
.course-txt-bot.no-scroll-box {
    overflow-y: unset;
    height: 100%;
}
.ban-img.wow.fadeInDown img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.ban-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    margin-top: 22px;
}
a.play-vid-btn i {
    border: 1px solid #e2002f;
    padding: 20px 22px;
    font-size: 20px;
    border-radius: 30px;
    background: #e2002f;
    color: #fff;
}

a.play-vid-btn span {
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #000;
}

a.play-vid-btn {
    display: flex;
    align-items: center;
    gap: 11px;
}

html {
    overflow-x: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1365px){}

@media only screen and (min-width: 992px) and (max-width: 1199px){
  .menuSec ul li a {
    font-size: 11px;
}

.menuSec a.btn-1 {
    padding-left: 12px;
    font-size: 12px;
    gap: 10px;
}
 .bann-img-ban-txt p {
    font-size: 12px;
    line-height: 20px;
}

.bann-txt h4 {
    font-size: 56px;
    line-height: 1;
}

.bann-txt h1 {
    font-size: 80px;
    line-height: 1;
}

.ban-img.wow.fadeInDown img {
    height: 300px;
    object-fit: cover;
}
.abt-txt h2 {
    font-size: 50px;
    line-height: 1;
}

.abt-txt p {
    font-size: 12px;
    line-height: 20px;
}
.abt-img img {
    height: 600px;
    object-fit: cover;
}
a.btn-1{
   padding-left: 12px;
   font-size: 10px;
   gap: 10px;
} 
.ser-txt h2 {
    font-size: 50px;
    line-height: 1;
}
.ser-btn a {
    font-size: 28px;
    line-height: 1;
}
.test-txt-top h3 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

.test-txt-top {
    margin-top: 30px;
}

.test-txt-top p {
    font-size: 12px;
    line-height: 20px;
}
section.testimonials {
    padding-bottom: unset;
}
.up-coming-heading h2 {
    font-size: 50px;
    line-height: 1;
}
.up-coming-heading p {
    font-size: 12px;
    line-height: 20px;
    width: 80%;
}

.up-coming-text p {
    font-size: 12px;
    line-height: 20px;
}
.up-coming-text ul li a {
    font-size: 10px;
}

.up-coming-text ul li span {
    width: 50px;
    height: 50px;
}
section.why-turner {
    padding-top: 50px;
}
.why-turner-txt-bx h3 {
    font-size: 50px;
    line-height: 1;
}

.why-turner-txt-bx p {
    font-size: 12px;
    line-height: 20px;
}

.why-turner-txt-bx {
    right: -60px;
}
.pricing-top-txt h3 {
    font-size: 50px;
    line-height: 1;
}

.course-txt-top {
    display: block;
}

.course-txt-bot p {
    font-size: 12px;
    line-height: 22px;
}

.course-txt-bot ul li p {
    font-size: 12px;
    line-height: 20px;
}

.course-txt-bot h6 {
    font-size: 16px;
}
.course-txt-bot.no-scroll-box {
    margin: unset;
}
section.pricing {
    padding-bottom: 50px;
}
.in-ban-txt h2 {
    font-size: 70px;
    line-height: 1;
}

.in-ban-txt p {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
}
img.inn-bann {
    height: 520px;
}
section.about.inn .abt-txt p {
    width: 100%;
}
.viss-txt h3 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

.viss-txt p {
    font-size: 12px;
    line-height: 20px;
}
section.testimonials.inn {
    padding-top: unset;
}
.slick-dots {
    display: none !important;
}
section.inner-service .row:before {
    top: 26%;
}
.inner-service-text h4 {
    font-size: 50px;
    line-height: 1;
}

.inner-service-text p {
    font-size: 12px;
    line-height: 20px;
}
.row.d-flex.right-img:before {
    top: 50%;
}
.inner-service-text {
    margin: 20px 0px;
}

.inner-service-img {
    margin: 20px 0px;
}
.inner-service-img img {
    height: 400px;
}
.contact-side-bar h4 {
    margin-top: 20px;
}
.contact-info {
    padding: 20px;
    width: 70%;
    margin-bottom: 10px;
}
table.ui-datepicker-calendar th, table.ui-datepicker-calendar td {
    font-size: 12px;
    padding: 10px;
}

a.btn-lg-mo {
    font-size: 13px;
}

.time-btn span {
    font-size: 14px;
}
.contact-main-sec {
    padding: 100px 0px;
}
section.book-now-sec {
    padding: 80px 0px;
    margin: unset;
}
.cicle-icon i {
    height: 40px;
    width: 40px;
    font-size: 15px;
}

.contact-info {
    width: 100%;
    padding: 20px;
}

.contact_text p a {
    font-size: 12px;
    line-height: 20px;
}
section.testimonials .item .box .author img {
    height: 50px;
    width: 80px;
    object-fit: cover;
    border: 3px solid #fff;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px){
.menuSec ul li a {
    font-size: 11px;
}

.menuSec a.btn-1 {
    padding-left: 12px;
    font-size: 12px;
    gap: 10px;
}
 .bann-img-ban-txt p {
    font-size: 12px;
    line-height: 20px;
}

.bann-txt h4 {
    font-size: 56px;
    line-height: 1;
}

.bann-txt h1 {
    font-size: 80px;
    line-height: 1;
}

.ban-img.wow.fadeInDown img {
    height: 300px;
    object-fit: cover;
}
.abt-txt h2 {
    font-size: 50px;
    line-height: 1;
}

.abt-txt p {
    font-size: 12px;
    line-height: 20px;
}
.abt-img img {
    height: 600px;
    object-fit: cover;
}
a.btn-1{
   padding-left: 12px;
   font-size: 8px;
   gap: 10px;
} 
.ser-txt h2 {
    font-size: 50px;
    line-height: 1;
}
.ser-btn a {
    font-size: 28px;
    line-height: 1;
}
.test-txt-top h3 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

.test-txt-top {
    margin-top: 30px;
}

.test-txt-top p {
    font-size: 12px;
    line-height: 20px;
}
section.testimonials {
    padding-bottom: unset;
}
.up-coming-heading h2 {
    font-size: 50px;
    line-height: 1;
}
.up-coming-heading p {
    font-size: 12px;
    line-height: 20px;
    width: 80%;
}

.up-coming-text p {
    font-size: 12px;
    line-height: 20px;
}
.up-coming-text ul li a {
    font-size: 10px;
}

.up-coming-text ul li span {
    width: 50px;
    height: 50px;
}
section.why-turner {
    padding-top: 50px;
}
.why-turner-txt-bx h3 {
    font-size: 50px;
    line-height: 1;
}

.why-turner-txt-bx p {
    font-size: 12px;
    line-height: 20px;
}

.why-turner-txt-bx {
    right: -60px;
}
.pricing-top-txt h3 {
    font-size: 50px;
    line-height: 1;
}

.course-txt-top {
    display: block;
}

.course-txt-bot p {
    font-size: 12px;
    line-height: 22px;
}

.course-txt-bot ul li p {
    font-size: 12px;
    line-height: 20px;
}

.course-txt-bot h6 {
    font-size: 16px;
}
.course-txt-bot.no-scroll-box {
    margin: unset;
}
section.pricing {
    padding-bottom: 50px;
}
.in-ban-txt h2 {
    font-size: 70px;
    line-height: 1;
}

.in-ban-txt p {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
}
img.inn-bann {
    height: 520px;
}
section.about.inn .abt-txt p {
    width: 100%;
}
.viss-txt h3 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

.viss-txt p {
    font-size: 12px;
    line-height: 20px;
}
section.testimonials.inn {
    padding-top: unset;
}
.slick-dots {
    display: none !important;
}
section.inner-service .row:before {
    top: 26%;
}
.inner-service-text h4 {
    font-size: 50px;
    line-height: 1;
}

.inner-service-text p {
    font-size: 12px;
    line-height: 20px;
}
.row.d-flex.right-img:before {
    top: 50%;
}
.inner-service-text {
    margin: 20px 0px;
}

.inner-service-img {
    margin: 20px 0px;
}
.inner-service-img img {
    height: 400px;
}
.contact-side-bar h4 {
    margin-top: 20px;
}
.contact-info {
    padding: 20px;
    width: 70%;
    margin-bottom: 10px;
}
table.ui-datepicker-calendar th, table.ui-datepicker-calendar td {
    font-size: 12px;
    padding: 10px;
}

a.btn-lg-mo {
    font-size: 13px;
}

.time-btn span {
    font-size: 14px;
}
.contact-main-sec {
    padding: 100px 0px;
}
section.book-now-sec {
    padding: 80px 0px;
    margin: unset;
}

}

@media only screen and (min-width: 520px) and (max-width: 767px){}

@media only screen and (min-width: 300px) and (max-width: 519px){
.bann-txt h4 {
    font-size: 35px;
    line-height: 1;
}

.bann-txt h1 {
    font-size: 66px;
    line-height: 1;
}
section.inner-banner::before {
    width: 28%;
    height: 150px;
}

.bann-txt {
    margin-top: 150px;
}
a.play-vid-btn i {
    font-size: 15px;
}
.menuSec img {
    width: 85%;
}
.menuSec a.btn-1 img {
    width: 34px;
}
 .menuSec a.btn-1 {
    font-size: 9px;
    padding-left: 8px;
    gap: 10px;
}
.bann-img-ban-txt p {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: unset;
}
.ban-img img {
    width: 100%;
    height: 250px;
}
.ban-img {
    height: 250px !important;
    object-fit: cover;
     width: 100%;
}
.ban-img.tw {
    display: none;
}
.bann-img-ban-txt {
    position: absolute;
    top: 0px;
  }
  img.banner-img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}
section.about {
    padding: 80px 0px 50px;
}

.abt-img img {
    height: 400px;
    object-fit: cover;
}

.abt-txt h2 {
    font-size: 50px;
    line-height: 1;
}

.abt-txt {
    margin-top: 30px;
}
.abt-txt p {
    font-size: 12px;
    line-height: 20px;
}

.abt-txt-ul {
        display: flex;
        margin: 30px 0px;
        gap: 10px;
    }

.abt-txt-ul a {
    margin: 9px 0px;
font-size: 10px;    
}
.ser-txt h2 {
    font-size: 50px;
    line-height: 1;
}

.ser-img img {
    height: 300px;
}
.ser-btn a img {
    width: 30px;
    height: 40px;
}
.ser-btn a {
    font-size: 20px;
    line-height: 1;
}
.ser-img-3 {
    margin: 30px 0 0;
    width: 100%;
}
.ser-img {
    margin-top: 10%;
}
.test-txt-top h3 {
    font-size: 50px;
    line-height: 1;
   margin-bottom: 10px; 
}

.test-txt-top p {
    font-size: 12px;
    line-height: 20px;
    width: 80%;
}
.ser-bot-img {
    width: 100%;
  margin-bottom: -40px;
}

header {
    position: relative;
    background-color: #000;
}
.ser-bot-img img {
    height: 250px;
}
section.testimonials .slick-list {
    margin: unset;
    padding: unset;
    padding-top: 30px;
}
section.testimonials .item .box .author {
    width: 100%;
  
}
section.testimonials .item .box .author img {
     width: 73px;
     height: 60px;
     border: unset; 
}
section.testimonials .item .box {
    padding: 30px 20px;
}
.up-coming-sec {
    padding: 80px 0px 40px;
}
.up-coming-heading h2 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

.up-coming-heading p {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
}

.up-coming-heading {
    margin-bottom: 30px;
}
.up-coming-text h2 {
    font-size: 20px;
    line-height: 1;
}

.up-coming-text {
    margin-top: 20px;
   margin-left: 14px;
}

.up-coming-text p {
    font-size: 12px;
    line-height: 21px;
   padding-left: 0px !important;    
    
}

.up-coming-box-row {
    display: block;
}
.up-coming-text ul li a {
    font-size: 13px;
}
.up-coming-img img {
    margin-top: 20px !important;
}
section.testimonials {
    padding-bottom: 80px;
}
section.why-turner {
    padding: 0px 0px;
}
.why-turner-txt-bx {
    right: unset;
    padding: unset;
    margin-bottom: 30px;
}

.why-turner-txt-bx h3 {
    font-size: 50px;
    line-height: 1;
}

.why-turner-txt-bx p {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
}
.consulting-img::before {
    top: -14px;
   
}
.pricing-top-txt h3 {
    font-size: 50px;
    line-height: 1;
}

.pricing-top-txt {
    margin-top: 20px;
}
.course-txt-top{
    display: block;
}
.course-txt-bot p {
    font-size: 12px;
    line-height: 21px;
    width: 95%;
}
.course-txt-bot ul li p {
    font-size: 12px;
    line-height: 20px;
}
.course-txt-bot h3 {
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 10px;
}
section.pricing {
    padding-bottom: 60px;
}
section.footer p {
    font-size: 12px;
    line-height: 20px;
}
ul.adrs-links li a {
    font-size: 12px;
}

ul.linkList li a {
    font-size: 13px;
}
section.testimonials .item .box p {
    font-size: 13px;
    line-height: 28px;
}
.in-ban-txt h2 {
    font-size: 73px;
    line-height: 1;
    margin-bottom: 10px;
}

.in-ban-txt p {
    font-size: 12px;
    line-height: 20px;
}

.inn-bann-txt-img {
    top: 26px;
}

section.about.inn .abt-img img {
    height: 400px;
    object-fit: cover;
}

img.inn-bann {
    height: 650px;
}

section.about.inn .abt-txt p {
    width: 100%;
}

.abt-img.on::before {
    height: 400px;
    bottom: 0;
}

.viss-txt h3 {
    font-size: 50px;
    line-height: 1;
}

section.about.inn {
    padding-bottom: unset;
}

.viss-txt p {
    font-size: 12px;
    line-height: 20px;
}

.viss-txt {
    margin-bottom: 30px;
}
section.inner-service .row:before{
      top: 27%;
}

.row.d-flex.right-img:before {
    top: 55%;
}

.inner-service-img img {
    margin-top: 20px;
}
section.testimonials.inn {
    padding-top: 0px;
}
.inner-service-text h4 {
    font-size: 50px;
    line-height: 1;
}

.inner-service-text p {
    font-size: 12px;
    line-height: 20px;
}

.inner-service-text {
    margin-top: 30px;
}
.contact-main-sec {
    padding: 80px 0px;
}

.contact-main-sec h4 {
    font-size: 50px;
    line-height: 1;
    margin-top: 20px;
}

.contact-info {
    padding: 20px;
}

.contact_text p a {
    font-size: 12px;
}
.in-ban-txt.inn h2 {
    font-size: 50px;
    line-height: 1;
}
table.ui-datepicker-calendar th, table.ui-datepicker-calendar td {
    font-size: 12px;
    padding: 10px;
}

.time-btn span {
    font-size: 12px;
    padding: 10px;
    height: 40px;
}
}