@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* @import url(../fonts/import.css); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
}

select {
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* theme start */
:root {
  --primary-color: #097381;
  --secondary-color: #f0f0f0;
  --text-color: #333;
  --background-color: #fff;
  --border-color: #ccc;
}

.btn-theme {
  padding: 11px 44px;
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 38px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-theme:hover {
  background-color: darken(var(--primary-color), 10%);
  color: var(--primary-color);
}

/* theme end */

/* header start */
.main-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}

.top-bar {
  background: var(--primary-color);
  padding: 10px 0;
}

.top-bar ul {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.top-bar ul li a {
  color: white;
  font-size: 15px;
}

.main-header .navbar {
  padding: 5px 20px;
  background: rgb(9, 115, 129, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(24, 24, 24, 0.3);
  transition: 0.8s;
}

.navbar-brand img {
  /* filter: brightness(0) saturate(100%) invert(0%) sepia(92%) saturate(7391%) hue-rotate(266deg) brightness(98%) contrast(100%); */
  width: 100%;
  max-width: 138px;
}

.main-header .nav-link {
  color: #000;
  font-weight: 500;
  font-family: "Inter", sans-serif;

}

.navbar li a {
  margin: 0 12px !important;
}

/* header end */

/* footer start */
/* footer end */

/* banner css */
.main-banner {
  padding: 100px 0 100px;
  text-align: center;
  background: rgb(241, 250, 252);
  margin: 125px 0 0;
}

.main-banner .banner-content {
  text-align: left;
}

.main-banner .banner-content h1 {
  font-size: 46px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  color: #000;
  font-weight: 700;
  position: relative;
}

.main-banner .banner-content h1 span {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.main-banner .banner-content h1 span::before {
  content: "";
  background-image: url("../images/underline.svg");
  animation: 1000ms ease 200ms 1 normal none running underlineText;
  height: 8px;
  display: block;
  position: absolute;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  left: 0px;
  right: 0px;
  bottom: -8px;
  width: 100%;
}

.main-banner .banner-content p {
  font-size: 18px;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}

.new-book-cover{
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-banner .book {
    --witdh: 350px;
    --height: 400px;
    --thick: 40px;
    --inner: 6px;
    --pages-bg: white;
    --cover-bg: rgba(33, 32, 30, 255);
    --cover-radius: 6px;
    width: 350px;
    height: 400px;
    transform: rotateY(-30deg) rotateX(30deg);
    transition: transform .5s
}

.main-banner .book__cover,
.main-banner .book__cover-img {
    width: 100%;
    height: 100%
}

.main-banner .book:hover {
    transform: rotateY(-20deg) rotateX(20deg)
}

.main-banner .book,
.main-banner .book__cover,
.main-banner .book__pages {
    transform-style: preserve-3d
}

.main-banner .book__cover,
.main-banner .book__cover-img,
.main-banner .book__cover::before {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    user-select: none
}

.main-banner .book__cover::after,
.main-banner .book__cover::before,
.main-banner .book__pages::after,
.main-banner .book__pages::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%
}

.main-banner .book__cover,
.main-banner .book__cover::after,
.main-banner .book__cover::before {
    background-color: rgba(33, 32, 30, 255)
}

.main-banner .book__cover::before {
    width: 100%;
    transform: translateZ(calc(40px * -1));
    box-shadow: 0 0 16px 1px #000
}

.main-banner .book__cover::after {
    width: 40px;
    transform-origin: left center;
    transform: rotateY(90deg)
}

.main-banner .book__pages,
.main-banner .book__pages::after,
.main-banner .book__pages::before {
    background: var(--pages-bg)
}

.main-banner .book__pages {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 40px;
    height: calc(100% - 6px * 2);
    transform-origin: right center;
    transform: rotateY(-90deg)
}

.main-banner .book__pages::after,
.main-banner .book__pages::before {
    width: 40px;
    height: calc(350px - 6px)
}

.main-banner .book__pages::before {
    transform-origin: center top;
    transform: rotateX(90deg)
}

.main-banner .book__pages::after {
    top: unset;
    bottom: 0;
    transform-origin: center bottom;
    transform: rotateX(-90deg)
}

/* banner end */

/* logo-sec */
.logo-sec {
  padding-top: 50px;
}

.logo-sec .title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  color: #000;
  font-weight: 800;
  position: relative;
  text-align: center;
}

.logo-sec .title h2 span {
  color: var(--primary-color);
}

.logo-sec .title p {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  text-align: center;
}

/* about sec  */

.about-sec {
  padding: 100px 0;
  text-align: center;
}

.about-sec .banner-content {
  text-align: left;
}

.about-sec .banner-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  color: #000;
  font-weight: 800;
  position: relative;
}

.about-sec .banner-content h2 span {
  color: var(--primary-color);
}

.about-sec .banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
}
.about-sec .banner-content ul{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
    margin:0 0 15px;
}
.about-sec .banner-content li {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  margin-bottom:5px;
  width:50%;
}

.about-sec .banner-content .content li{
    width:100%;
}
section.logo-sec.our_comm {
    padding: 50px 0;
}

.our_comm .btn-theme:hover {
    border-color:var(--primary-color);
}

.banner-image {
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 30px 0px; */
  border-radius: 8px;
}

.banner-image img {
  border-radius: 8px;
  width: 100%;
}

.pt_tabs div#myTabContent {
  padding: 100px 0 0;
}

.pt_tabs .nav.nav-tabs {
  display: flex;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 40px;
  padding: 16px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.pt_tabs .nav.nav-tabs li .nav-link {
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  padding: 9.21px 40px;
  border-radius: 999px;
  font-size: var(--sl-font-size-sm, 16px);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  color: rgb(34, 34, 33);
  min-width: 180px;
  -webkit-box-pack: center;
  justify-content: center;
  border: none;
  font-weight: 700;
}

.pt_tabs .nav.nav-tabs li .nav-link.active {
  background-color: rgba(10, 142, 160, 0.09);
  cursor: pointer;
  color: #097381;
}

.headq-sec p {
  margin: 0 0 5px !important;
  color: rgb(51, 51, 51);
}

.headq-sec p a {
  line-height: 1.6;
  color: #097381;
  font-weight: 500 !important;
  text-underline-offset: 3px;
  text-decoration: underline !important;
}

.needh_sec {
  background-color: rgb(18, 129, 145);
  overflow: hidden;
  padding: 70px 0;
}

.needh_sec h2,
.needh_sec p {
  color: #FFF !important;
}

.needh_sec form {
  margin-top: 70px;
}

.needh_sec input,
.needh_sec textarea {
  font-size: 16px;
  padding: 11px;
  display: block;
  width: 100%;
  color: rgb(93, 100, 109);
  box-shadow: none;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid rgb(235, 235, 235);
  transition: border-color 0.2s;
  border-color: rgba(255, 255, 255, 0.4) !important;
  border: 1px solid rgb(204, 204, 204);
  background-color: rgb(240, 240, 240);
  padding: 16px;
  height: auto;
  color: rgb(51, 51, 51);
  font-family: Inter, sans-serif;
  border-radius: 12px !important;
  margin-bottom: 20px;
}

.needh_sec input:focus,
.needh_sec textarea:focus {
  outline: 2px solid #71c0cc;
  border-color: rgb(255, 255, 255) !important;
  background-color: rgb(255, 255, 255) !important;
}

.needh_sec .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 40px;
}

.needh_sec .form-check label {
  color: #FFF;
  font-weight: 600;
  font-size: 17px;
}

.needh_sec .form-check label a {
  text-decoration: underline;
  color: #FFF;
}

.needh_sec .form-check input {
  width: auto;
  padding: 10px;
  border-radius: 3px !important;
  background-color: transparent;
  margin: 0;
}

.needh_sec .form-check input:focus,
.needh_sec .form-check input:focus-visible {
  background-color: transparent !important;
  box-shadow: none !important;
  border-color: none !important;
}

.needh_sec .form-check-input:checked {
  background-color: transparent;
}

.needh_sec form .btn-theme {
  background-color: #FFF;
  border-color: #FFF;
  color: #097381;
  width: 200px;
}

.needh_sec form .btn-theme:hover {
  background-color: transparent;
  color: #FFF;
}

.testi_sec {
  padding: 70px 0;
  background-color: rgb(241, 250, 252);
}

.testi_sec h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  color: #000;
  font-weight: 800;
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.ts_card {
  border: none;
  -webkit-box-align: center;
  margin-bottom: 15px;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  padding: 40px;
  display: block;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 29px;
  background-color: rgb(255, 255, 255);
  transition: 0.3s;
}

.tstar {
  color: rgb(242, 158, 2);
}

.ts_card p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: rgb(51, 51, 51);
  font-weight: 400;
  line-height: 1.5em;
}

.testi_sec p {
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.testi_sec p a {
  color: #097381;
  text-underline-offset: 3px;
  text-decoration: underline !important;
}

.ts_profile img {
  border-radius: 100%;
}

.startp_sec {
  background-color: rgb(2, 132, 137);
  padding: 60px 0;
}

.startp_sec h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  color: #FFF;
  font-weight: 800;
  position: relative;
  text-align: center;
}

.startp_sec p{
    font-size: 18px;
    font-family: "Inter", sans-serif;
    text-align: center;
    color: #FFF;
    margin-bottom: 35px;
}

.startp_sec .btn-theme:first-child {
  background-color: #FFF;
  color: #097381;
  border-color: #FFF;
}

.startp_sec .btn-theme:first-child:hover {
  background-color: transparent;
  color: #FFF;
  border-color: #FFF;
}

.startp_sec .btn-theme:last-child {
  background-color: transparent;
  color: #FFF;
  border-color: #FFF;
}

.startp_sec .btn-theme:last-child:hover {
  background-color: #19aabb;
  color: rgb(255, 255, 255);
  border-color: #19aabb !important;
}

.subs_sec {
  padding: 60px 0;
  background-color: rgb(241, 250, 252);
}



.subs_sec h3 {
  box-sizing: border-box;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -0.025em;
  margin-bottom: 13px;
  font-size: 28px;
  color: rgb(2, 132, 137);
  font-family: "Inter", sans-serif;
}

.subs_sec p {
  box-sizing: border-box;
  margin-top: 0px;
  font-weight: 400;
  font-size: 18px;
  color: rgb(11, 11, 10) !important;
  margin-bottom: 0;
  line-height: 1.667;
  font-family: "Inter", sans-serif;
}

.subs_sec form {
  display: flex;
  align-items: start;
  gap: 20px;
}

.subs_sec .ss_form input {
  background: transparent;
  font-size: 17px;
  font-weight: 300;
  padding: 10px 15px;
  border-radius: 0px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-color: rgb(11, 11, 10);
  color: rgb(11, 11, 10);
  padding-left: 0px;
  width: 100%;
  font-weight: 500;
}

.subs_sec .ss_form input::placeholder {
  color: rgb(51, 51, 51) !important;
  font-size: 17px;
  font-weight: 500;
}

.subs_sec .form-check {
  margin-top: 20px;
}

.footer {
  padding: 60px 0;
}

.footer h4 {
  font-weight: 600;
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 20px;
  color: rgb(11, 11, 10);
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.footer li {
  line-height: 30px;
  font-size: 18px;
}

.footer li a {
  color: rgba(52, 61, 72, 0.8);
  font-size: 16px;
  line-height: 30px;
  transition: 0.2s;
  padding-top: 6px;
  text-decoration: none;
  padding-bottom: 6px;
  display: block;
  font-family: "Inter", sans-serif;
}

.footer_bottom {
  padding: 60px 0;
  background-color: rgb(241, 250, 252);
}

.footer_bottom i {
  font-size: 25px;
  color: #097381;
}

.footer_bottom h4 {
  font-weight: 600 !important;
  font-family: "Inter", sans-serif;
  font-size: 18px;
}

.footer_bottom p {
  font-weight: 400 !important;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.75em !important;
}

section.cta-blocks {
  background: #097381;
  background-size: cover;
  padding: 50px 0;
  /* margin-top: 40px; */
  /*overflow: hidden;*/
  position:relative;
}

section.cta-blocks .cta-banner::before{
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/mary-book7676.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 458px;
    max-width: 518px;
    background-size: contain;
    top: -269px;
    right: 20px;
    animation: zoom-in 1s ease;
    transform: rotate(-15deg);
}

.cta-blocks img {
  border-radius: 8px;
}

.cta-blocks h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.cta-blocks .heading {
  font-size: 29px;
  padding-top: 15px;
  color: #fff;
}

.cta-btn {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.cta-inn .btn-theme {
  background-color: #FFF;
  color: #097381;
  border-color: #FFF;
}

.cta-inn .btn-theme:hover {
  background-color: transparent;
  color: #FFF;
  border-color: #FFF;
}

.btn-size {
  padding: 12px 26px;
  color: #fff;
  font-size: 20px;
  font-family: "Cabin", sans-serif;
  transition: 0.5s;
  border: #0a1429;
}

.btn-yellow {
  background: -webkit-linear-gradient(#0a1429, #0b2552);
  color: #fff;
}

/*inner-banner*/

.inner-banner{
    margin: 190px 0 50px;
}

.inner-banner .banner-content{
    background-color: rgb(241, 250, 252);
    border-radius: 24px;
    padding: 68px 0px 88px;
}

.inner-banner .banner-content h1{
        letter-spacing: 1.6px;
        text-transform: uppercase;
        color: var(--primary-color);
        font-family: "Inter", sans-serif;
        font-size: 16px;
        text-align: center;
}

.inner-banner .banner-content h2{
    text-transform: capitalize;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 52px;
    text-align: center;
    font-weight: 800;
    padding-top: 23px;
}
.service-banner {
    padding: 60px 0 50px;
}
section.service2 {
    padding: 50px 0;
    text-align: center;
    font-family: "Inter", sans-serif;
    background: rgb(241, 250, 252);
}
section.service2 .row .col-lg-4{
    margin-bottom: 20px;
}
.buttons-div a.btn-02 {
    background: var(--primary-color);
    padding: 13px 38px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
}
.buttons-div {
    margin-top: 40px;
}
.services-head {
    margin-bottom: 30px
}

.services-head h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 700
}

.services-head p {
    font-size: 16px;
    text-align: center;
    color: #555;
    width: 86%;
    margin: 0 auto;
    line-height: 25px
}

.serve-box {
    padding: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    transition: 0.5s all;
    color: #000;
    height: 100%;
}

.serve-box:hover {
    background-color: var(--primary-color);
    color: white !important;
    transition: 0.5s all
}

.serve-box img {
    margin-bottom: 15px;
    width: 60px;
    filter: brightness(0) saturate(100%) invert(14%) sepia(15%) saturate(2931%) hue-rotate(119deg) brightness(101%) contrast(104%);
}

.serve-box:hover img {
    filter: brightness(0) invert(1)
}
.serve-box:hover .buttons-div a.btn-02 {
    background:#FFF;
    color:#000;
}
.serve-box h4 {
    font-size: 25px;
    margin-bottom: 17px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 29px
}

.serve-box p {
    font-size: 15px;
    text-align: center;
    line-height: 22px
}

.logo-sec.needh_sec.contact-sec{
 background:transparent;   
}
.logo-sec.needh_sec.contact-sec .title h2,
.logo-sec.needh_sec.contact-sec .title p{
    color:#000 !important;
}

.logo-sec.needh_sec.contact-sec label,
.logo-sec.needh_sec.contact-sec label a{
    color:rgba(49, 69, 88, 0.73) !important;
}

.logo-sec.needh_sec.contact-sec form .btn-theme{
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.logo-sec.needh_sec.contact-sec .form-check input{
    border: 2px solid rgba(165, 165, 165, 0.73) !important;
}

.logo-sec.needh_sec.contact-sec .form-check input:checked{
    background-color: var(--primary-color) !important;
}

.logo-sec.needh_sec.contact-sec form .btn-theme:hover {
    background-color: darken(var(--primary-color), 10%);
    color: var(--primary-color);
}

.privacy {
    padding: 50px 0
}

.main-privacy h3 {
    color: #000;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.main-privacy li,.main-privacy p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 22px;
    font-family: "Inter", sans-serif;
}

/*modal css*/

.comodal {
    border-radius: 0 !important;
    border: var(--primary-color) 3px solid;
    padding: 15px;
    background: #fff;
}

.pop-upform h2 {
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    line-height: unset;
    color: var(--primary-color);
    margin: 0 0 15px;
    padding: 0;
}

.pop-upform p {
    text-align: center;
    color: #000;
}

.m-header {
    border-bottom: 0px;
    justify-content: right;
    padding-bottom: 0px;
}

.close-btn {
    position: relative;
    border-radius: 0;
    width: 30px;
    height: 30px;
    background: #f77223;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #fff 3px solid;
    box-shadow: #00000082 0 0 6px;
}

.btn-close1 {
    padding: 0px !important;
    margin: 0px !important;
    --bs-btn-close-bg: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0px;
}

.btn-close1 i {
    color: #fff;
}

.form21 .form-group {
    position: relative;
}

.form21 ::placeholder {
    font-size: 16px;
    color: #000 !important;
    font-weight: 300 !important;
}

.form21 input {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    border: #dcdcdc 1px solid !important;
    padding: 10px 10px 10px 40px !important;
    background: #fafafa !important;
    color: #757575 !important;
    font-weight: 300 !important;
    border-radius: 0px !important;
    height: 40px;
}

.form21 input:focus {
    box-shadow: none !important;
    border-color: #d73038 !important;
}

.form21 .message {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    border: #dcdcdc 1px solid !important;
    padding: 7px 10px 10px 40px !important;
    background: #fafafa !important;
    color: #757575 !important;
    font-weight: 300 !important;
    border-radius: 0px !important;
    margin-bottom: 15px;
    resize:none;
}

.form21 .message:focus {
    box-shadow: none !important;
    border-color: #d73038 !important;
}

.activatenow {
    display: block;
    margin: auto;
    background: var(--primary-color);
    padding: 6px 40px;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    border: 0px;
    border: 2px solid var(--primary-color);
    font-family: "Poppins", sans-serif;
}

.activatenow:hover{
    background:transparent;
    color:#b02320;
}

.form-btns {
    justify-content: center;
    display: flex;
}

.chatting-btn {
    background: #f77223;
    border-radius: 0px;
    padding: 6px 15px;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

.icons01 {
    position: absolute;
    left: 13px;
    top: 12px;
    /*color: #757575;*/
    color: var(--primary-color);
    font-size: 14px;
}

.icons02 {
    position: absolute;
    left: 21px;
    top: 18px;
    color: #757575;
    font-size: 14px;
}

.modal-content .fldset.margin-field label {
    font-size: 11px;
    line-height: 18px;
    text-align: left;
    position: unset;
}
.modal-content .fldset.margin-field input[type="checkbox"] {
    width: 1em !important;
    height: 1rem !important;
    position: relative;
    top: 2px;
}

.modal-content .fldset label {
    font-size: 12px;
    color: #000 !important;
    padding-left: 5px;
}

.modal-content .fldset {
    display: flex;
    align-items: flex-start;
    margin: 0 0 11px;
    gap: 5px;
}

/* font-family: "Inter", sans-serif; */

@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .pt_tabs .nav.nav-tabs {
        gap: 10px 15px;
        flex-wrap: wrap;
        width: 100%;
    }
    .navbar-brand img {
        max-width: 95px;
    }
    .about-sec.headq-sec .banner-image iframe{
        width: 100%;
    }
    section.cta-blocks .cta-banner::before{
        display:none;
    }
    .pt_tabs div#myTabContent {
        padding: 30px 0 0;
    }
    .footer_bottom {
        padding: 25px 0 20px;
    }
    .footer h4 {
        margin-bottom: 0px;
        font-size: 18px;
    }
    .btn-theme {
        padding: 9px 15px;
    }
    .inner-banner .banner-content h2 {
        font-size: 44px;
        padding-top: 9px;
    }
    .inner-banner .banner-content {
        padding: 60px 10px 70px;
    }
    .inner-banner {
        margin: 142px 0 0px;
    }
}

@media only screen and (max-width: 767px) {
    .main-banner .book {
        width: 270px;
        height: 320px;
    }
    .main-banner {
        margin: 55px 0 0;
        padding: 100px 0 60px;
    }
    .about-sec {
        padding: 60px 0 0;
    }
    .about-sec .banner-content h2 {
        font-size: 32px;
    }
    .about-sec .banner-content li {
        width: 100%;
        list-style: inside;
    }
    .pt_tabs .nav.nav-tabs {
        gap: 10px 15px;
        flex-wrap: wrap;
        width: 100%;
        border-radius: 32px;
    }
    .about-sec.headq-sec .banner-image iframe{
        width: 100%;
    }
    .top-bar ul{
        gap: 10px;
        justify-content: space-between;
    }
    .top-bar ul li a {
        font-size: 13px;
    }
    .logo-sec.about-sec.pt_tabs,
    .about-sec.headq-sec{
        padding-bottom:30px;
    }
    .main-banner.service-banner .banner-form {
        margin-top: 40px;
    }
    
}

@media only screen and (max-width: 575px) {}