/*Main Css */
:root {
    --primary: #00B67A;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Redaction" , sans-serif;
    --font-accent: "Redaction" , sans-serif;
    --font-body: "Lato" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}


::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #0dcaf0ba;
}

.leadforms-submit-button{
    background-color: #73cff8 !important;
    border-color: #73cff8 !important;
    color: #ffffff !important;
}
/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}
body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: var(--font-heading);
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}
/* Padding Classes */

.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}
/*header css*/

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 35px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #73CFF8;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
    top: 0;
}
.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 100px;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 0px 0 0px 50px;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}
.header-btn {
    font-weight: 400 !important;
    color: white !important;
    font-size: 18px;
    transition: .5s ease;
    border-radius: 18px;
    background: linear-gradient(95deg, #66D0FE -59.66%, #73CFF8 99.7%), #73CFF8;
    padding: 18px 34px;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: #ffffff;
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 6px;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-position: bottom;
}
.banner-content {
    padding: 80px 0 120px;
    position: relative;
    z-index: 1;
}
h1.banner-heading {
    color: #1A1915;
    font-size: 68px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}
span.sub-heading {
    color: #686868;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    border-radius: 14px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    box-shadow: 0 2px 10.5px 0 rgba(0, 0, 0, 0.05);
    padding: 7px 12px;
}
p.banner-text {
    margin-bottom: 0.5rem;
    color: #686868;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 30px 35px 30px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border-radius: 18px;
    border: 1.2px solid #E6E6E6;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #1A1915;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #171717;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
    background: #E6E6E6;
    border-radius: 30px;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    background: #73CFF8;
    color: #fff;
}
.answer p {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 12px;
}

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    color: #1A1915;
    font-size: 42px;
    font-weight: 400;
    line-height: normal;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    width: 70%;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.sec-heading .sub-heading {
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 1rem;
    color: #686868;
    font-size: 14px;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}
.btn-wrap .theme-btn {
    color: white;
    font-size: 18px;
    transition: .5s ease;
    border-radius: 18px;
    background: linear-gradient(95deg, #66D0FE -59.66%, #73CFF8 99.7%), #73CFF8;
    padding: 20px 34px;
}
.btn-wrap .theme-btn.bordered {
    color: var(--black);
    border-radius: 16px;
    border: 1px solid #686868;
    background: #FFF;
    color: #686868;
    padding: 18px 34px;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
    margin: 0 10px;
}
.design-card-list-2 {
    direction: rtl;
}
.design-card-list,
.design-card-list-2 {
    padding-bottom: 2rem;
}
.design-card-list li,
.design-card-list-2 li {
    position: relative;
    display: flex !important;
    justify-content: center;
}
.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 50px;
    position: absolute;
    width: auto;
    height: 66px;
    bottom: 20px;
    z-index: 1;
    background: rgb(0 0 0 / 50%);
    border-radius: 25px;
    opacity: 0;
    transition: .5s ease;
}
/* -------------------------contact us-------------------------- */
.input-field1 label {
    padding-bottom: 8px;
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 42px;
    width: 100%;
    font-size: 16px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.input-field1 textarea {
    height: 58px;
}
.send input[type="submit"] {
    width: 100%;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    color: white;
    font-size: 18px;
    transition: .5s ease;
    border-radius: 18px;
    background: linear-gradient(95deg, #66D0FE -59.66%, #73CFF8 99.7%), #73CFF8;
    padding: 18px 34px;
    border: none;
}
.details h5 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #202529;
}
.details a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.details {
    margin-bottom: 40px;
}
.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    height: 40px;
    width: 40px;
    background: #008576;
    border-radius: 50px;
    text-align: center;
}
.social-icons li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}

/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    max-height: 90vh;
  }
  .mmpopup {
    background: url("../images/popup-bg.webp");
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 60px;
  }
  .mmpopup .form-text {
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
  }
  .mmpopup .form-text a {
    color: #659640;
    font-weight: 700;
  }
  .mmpopup .form-text a:hover {
    color: var(--secondary);
  }
  .mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
  }
  .closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #659640;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
    color: white;
    font-size: 18px;
    transition: .5s ease;
    border-radius: 18px;
    background: linear-gradient(95deg, #66D0FE -59.66%, #73CFF8 99.7%), #73CFF8;
    padding: 18px 34px;
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */
.terms ul {
    padding-left: 40px;
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    margin: 2rem 0 1rem;
    color: #1A1915;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}
.terms p {
    margin-bottom: 1rem;
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}
/* terms */

.banner-content .btn-wrap {
}
.sec-color {
    border-radius: 30px;
    border: 1px solid #E6E6E6;
    background: #F4FBFF;
    box-shadow: 0 4px 65.2px 0 rgba(0, 0, 0, 0.08);
    padding: 25px 25px;
    overflow: hidden;
}
.header-wrap {
    border-radius: 21px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 3px 21.2px 0 rgba(0, 0, 0, 0.06);
    padding: 20px 33px 20px 20px;
}
h1.banner-heading span {color: #73CFF8;}
.mainBanner:before {
    /* position: absolute; */
    /* z-index: 1; */
    /* bottom: 0; */
    /* left: 0px; */
    /* height: 100%; */
    /* width: 50%; */
    /* background: linear-gradient(90deg, #f3f3f3, #f3f3f3ed, transparent, transparent); */
    /* content: ''; */
}
.mainBanner:after {
    /* position: absolute; */
    /* z-index: 0; */
    /* bottom: 0; */
    /* right: 0px; */
    /* height: 100%; */
    /* width: 50%; */
    /* background: linear-gradient(270deg, #f3f3f3, #f3f3f3ed, transparent, transparent); */
    /* content: ''; */
}
.sec-heading h2 span {
    color: #73CFF8;
}
section.sec-1 .sec-heading p {
    width: 100%;
}
.sec-2-opt-main h4 {
    color: #1A1915;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    margin: 15px 0px;
}
.sec-2-opt-main p {
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 15px;
}
.sec-2-opt-main ul li {
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
}
.sec-2-opt-main ul li:before {
    position: absolute;
    z-index: 0;
    top: 3px;
    left: 0;
    background: url(../images/tick.webp);
    content: '';
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
}
.sec-2-opt-main ul {
    margin-bottom: 12px;
    height: 200px;
    overflow: auto;
}
.sec-2-opt-main {
    border: 1px solid #E6E6E6;
    padding: 20px 20px;
}
.sec-3-img img {
    max-width: 45vw;
    margin: 0vw 0vw 0vw -11vw;
    height: 24vw;
}
.sec-color.ext {
    padding: 20px 20px 0px 20px;
}
.sec-3-img {margin-top: 1.5vw;}

a.logo.footer-img img {
    filter: brightness(30);
    width: 190px;
}

ul.overview-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    flex-direction: column;
}
ul.overview-nav a {
    padding: 12px 15px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #5B5B5B;
    width: 100%;
}
ul.overview-nav li.active a {
    color: white;
    border-radius: 14px;
    background: linear-gradient(95deg, #66D0FE -59.66%, #73CFF8 99.7%), #C1A166;
}
.categories-wrapper {
    padding: 20px 15px;
    border-radius: 20px;
    border: 1px solid #E6E6E6;
    background: #FFF;
}
.categories-wrapper h3 {
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 10px;
    padding: 0 0 10px;
    color: #1A1915;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}
ul.overview-nav li {
    width: 100%;
}

.book-card {
    border-radius: 10px;
    border: 0.701px solid #D9D9D9;
    background: #FFF;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.book-card-image {
    flex-shrink: 0;
    width: 40%;
}
.book-card-detail h3 {
    color: #1A1915;
    font-size: 21px;
    font-weight: 400;
    line-height: normal;
}
.book-card-detail p {
    padding: 8px 0;
    border-bottom: 1px solid #dddddd;
    color: #686868;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.156px;
    font-family: Inter;
}

.sec-contact-sub-text h6 {
    color: #1A1915;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.review-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-div span {
    color: #1A1915;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.232px;
}
.review-div p {
    border-bottom: 0;
    padding: 0;
}
.book-review {
    padding: 15.16px 0 0;
}
.book-card-detail a {
    background: #73CFF8;
    display: flex;
    width: 100%;
    padding: 12.77px 27.137px;
    align-items: center;
    gap: 7.982px;
    color: #fff;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    border-radius: 14px;
    border: 1px solid #73CFF8;
}
a.cat-detail {
    background: #fff !important;
    display: flex;
    width: 100% !important;
    padding: 12.77px 27.137px !important;
    align-items: center;
    gap: 7.982px;
    color: #73cff8 !important;
    justify-content: center;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin-top: 10px;
    border-radius: 14px !important;
    border: 1px solid #73cff8 !important;
}
.book-card-detail h4 {
    border-radius: 14px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    color: #73cff8;
    padding: 6px 10px;
    margin-bottom: 10px;
    font-size: 14px;
    display: inline-block;
}
.sec6-list ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #686868;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0px;
}

.testi-card {
    border-radius: 11px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
    padding: 15px;
    display: flex !important;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.client-image {
    flex-shrink: 0;
}
.client-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.client-name span.name {
    display: block;
    color: #1A1915;
    font-size: 22px;
    font-family: Cormorant;
    font-weight: 700;
    line-height: 24px;
}
.client-name span.des {
    color: #141414;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; 
    opacity: 0.7;
}
.client-detail p {
    padding-top: 10px;
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.client-name div {
    border-bottom: 2px solid #E6E6E6;
    padding-bottom: 10px;
}
section.sec-8  {
    width: 100%;
}
.form p {
    margin: 0;
    margin-top: 10px;
}
section.contact-sec .sec-heading p{
    width: 100%;
}
.sec-contact-sub-text a {
    color: #686868;
    font-size: 16px;
    font-weight: 500;
}
.sec-contact-sub-text p {
    color: #686868;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.sub-contact-sec {
    display: flex;
    gap: 14px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E6E6E6;
}
.form {
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 14px 5px 36.3px 0 rgba(0, 0, 0, 0.08);
    padding: 20px 28px;
}
.form h6 {
    color: #1A1915;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
}
.form p {
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}
.input-field1 input {
    border-radius: 6.004px;
    border: 1px solid #E6E6E6;
    background: #FDFDFD;
}

.input-field1 textarea {
    height: 130px !important;
    border-radius: 6.004px;
    border: 1px solid #E6E6E6;
    background: #FDFDFD;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 14px;
    opacity: 0.7;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.footer-sec p {
    color: #fff;
    line-height: 21px;
    font-size: 16px;
    opacity: 0.7;
}
.footer-hdng h4 {
    margin-bottom: 20px;
    color: #FFF;
    font-family: 'Cormorant Garamond';
    font-size: 22px;
    font-weight: 400;
    line-height: 18px; 
    padding: 15px 0;
    border-bottom: 1px solid #ffffff26;
}
.f-menu li a {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; 
    opacity: 0.5;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hours p {
    color: #fff;
    font-size: 16px;
}
.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    background: #121212;
}
.f-link li {
    width: 22px;
    height: 22px;
    background: #73CFF8;
    border-radius: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-sec {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-around;
}
.f-link li a {
    font-size: 10px;
    color: #000;
}
ul.detail-menu {
    display: inline-block;
    vertical-align: middle;
}
ul.detail-menu li {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 26px;
    border-left: 1px solid #ffffff42;
}
.ul.detail-menu li a {
    color: #FFF;
    font-family: Leelawadee;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    letter-spacing: 0.1px;
}
ul.detail-menu li a {
    color: #FFF;
    font-size: 14px;
    line-height: 20px; 
    letter-spacing: 0.1px;
    opacity: 0.7;
}
.our-reviews h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px; 
}
.copyright ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-truspilot {
    text-align: end;
    padding: 21px 0;
}
.borderbottom {
    border-bottom: 1px solid #ffffff3b;
    padding: 60px 0 40px;
}
.footer-hdng {
    display: flex;
}
footer {
    background: #121212;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: -55px;
    right: -4px;
    height: 230px;
    width: 2px;
    background: #ffffff1a;
}
ul.f-menu.first:after {
    content: "";
    display: block;
    position: absolute;
    top: -52px;
    right: -10px;
    height: 230px;
    width: 2px;
    background: #ffffff1a;
}
ul.f-menu.last:before {
    display: none;
}
ul.f-menu.first:before {
    display: none;
}
ul.f-menu {
    position: relative;
}

.main-header {
    padding-top: 33px;
}

.has-child {
  position: relative;
  z-index: 1;
}
.dropdown {
  position: absolute;
  top: 100%;
  width: 100vw;
  max-width: 660px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
  border-radius: 7px;
  background: linear-gradient(95deg, #66D0FE -59.66%, #73CFF8 99.7%), #73CFF8;
}
.dropdown-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 20px;
  row-gap: 20px;
  column-gap: 10px;
}

@keyframes slide {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.dropdown .dropdown {
  left: 100%;
  top: 0;
  padding: 10px;
}
.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dropdown ul li a {
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  padding: 0;
}
.dropdown ul li a b {
  font-size: 18px;
  font-weight: 700;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
  color: #73CFF8;
  font-size: 16px;
}
.sec-release .sec-heading p {
    width: 100%;
}
.sec-img-release {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border-radius: 30px;
}
section.sec-8 .sec-heading p {
    width: 100%;
}

.banner-content ul li {
    margin-bottom: 10px;
    color: #686868;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    list-style: inside;
}

.banner-content ul li {
    margin-bottom: 10px;
    color: #686868;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    list-style: inside;
}

.banner-content ul {
    margin-bottom: 2rem;
}

section.sec-1 .sec-heading ul li {
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    list-style: inside;
    margin-top: 1rem;
    margin-right: 4rem;
}

section.sec-1 .sec-heading ul li strong {
    font-weight: 700;
    color: #1A1915;
}

.banner-content ul {
    margin-bottom: 2rem;
}
.sec-content-opt {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 20px;
    margin-bottom: 30px;
}
.sec-content-opt h4 {
    color: #1A1915;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #D9D9D9;
    display: inline-block;
}
.sec-content-opt p {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.sec-content-opt-img {
    margin-bottom: 12px;
}
.sec-color.step {
    padding-bottom: 0;
}
.sec-color.step {
    padding-bottom: 0;
}
.sub-step-opt {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 15px;
}
.step-opt-number {
    display: flex;
    align-items: center;
    gap: 20px;
}
.step-opt-number h3 {color: #73CFF8;font-family: "DM Sans";font-size: 36px;font-weight: 800;line-height: normal;}
.step-opt-number span img {
    display: none;
}
.step-opt-text p {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
.step-opt-text h4 {
    color: #1A1915;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    margin: 5px 0px;
}
span.line-dot {
    position: absolute;
    top: 1%;
    left: 8.5%;
    height: 95%;
    width: 3px;
    background-image: repeating-linear-gradient(
        to bottom, #73CFF8 0, #73CFF8 10px, transparent 10px, transparent 20px);
}
.step-main-text-div {
    position: relative;
    z-index: 0;
}
section.sec-choose p {
    width: 100%;
}
section.sec-choose ul li {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
}
section.sec-choose ul li:before {
    position: absolute;
    z-index: 0;
    top: 3px;
    left: 0;
    background: url(../images/tick.webp);
    content: '';
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
}
section.sec-choose ul {
    margin-bottom: 0px;
    padding-bottom: 5px;
    border-bottom: 1px solid #D9D9D9;
}
.sec-3-img.ghost img {
    max-width: 33vw;
    margin: 0vw 0vw 0vw -3vw;
    height: 21vw;
    transform: rotateY(180deg);
}
.opt-sec-script {
    border-radius: 30px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    text-align: center;
    padding: 25px;
    margin-bottom: 25px;
}
.sec-script-2 p{
    width: 100%;
}
.opt-sec-script h3 {
    color: #1A1915;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    margin-top: 15px;
}
.colore-2 {
    border-radius: 30px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 20px;
    margin-bottom: 25px;
}
.sec-script-opt-text p {
    color: #686868;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}
.sec-script-opt-text h3 {
    color: #1A1915;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.sec-color.extra{
    padding: 0;
}
.opt-sec-script p {
    font-weight: 400;
    line-height: 26px;
    color: #686868;
    font-size: 16px;
    margin-top: 4px;
}
.sec-opt-book-main {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.sec-opt-book-main {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.sec-opt-book-main h5 {
    color: #6BCFFB;
    font-size: 65.59px;
    font-weight: 700;
    font-family: Cabin;
    border-bottom: 3px solid #6BCFFB;
    margin-bottom: 10px;
    padding-bottom: 2px;
}
.sec-opt-book-main h4 {
    color: #1A1915;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.sec-opt-book-main p {
    color: rgb(20 20 20 / 70%);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}
section.sec-book-publish .sec-heading {
    margin-bottom: 0;
}
section.sec-book-publish .sec-heading p {
    margin: auto;
}
.sec-main-marketing {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 0px 11px;
    overflow: hidden;
    padding-bottom: 20px;
}
.sec-color-market h4 {
    color: #1A1915;
    font-size: 25px;
    font-weight: 400;
    line-height: normal;
    padding: 15px 30px;
}
.sec-marketing-opt p {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0px 30px;
}
.sec-marketing-opt ul li {
    color: #686868;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    border-top: 1px solid #d5d5d5;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.sec-color-market {
    border-radius: 20px 0 0 0;
    background: #F4FBFF;
}
.sec-color-market.b {
    background: #e1b5b01f;
    border-radius: 0;
}
.sec-color-market.c {
    background: rgb(222 202 10 / 10%);
    border-radius: 0px 0px 0px;
}
.sec-color-market.b {
    background: #e1b5b01f;
    border-radius: 0;
}
.sec-color-market.c {
    background: rgb(222 202 10 / 10%);
    border-radius: 0px 0px 0px;
}
.sec-marketing-opt ul {
    padding: 0px 30px;
}
.sec-marketing-opt ul li:before {
    position: absolute;
    z-index: 0;
    top: 15px;
    left: 0;
    background: url(../images/tick.webp);
    content: '';
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
}
.sec-publishing {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 16px 15px;
}
.sec-publishing h4 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    border-bottom: 2px solid #cdcdcd;
    display: inline-block;
    padding-bottom: 10px;
}
.sec-publishing p {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 24px;
    margin-top: 10px;
}
.sec-publishing {
    margin-top: 15px;
}
.main-opt-publish p {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 15px;
}
.main-opt-publish ul li {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
}
.main-opt-publish ul li:before {
    position: absolute;
    z-index: 0;
    top: 3px;
    left: 0;
    background: url(../images/tick.webp);
    content: '';
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
}
.main-opt-publish ul {
    margin-bottom: 12px;
}
.main-opt-publish {
    text-align: start;
}

.sec-slider-banner span img {
    position: absolute;
    z-index: 1;
    bottom: 0vw;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.sec-slider-banner span:before {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(
0deg, #f3f3f3, transparent);
    content: '';
}

header {
    position: relative;
    z-index: 2;
}




/* Book category */
#bookCategory {
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #73CFF8;
    font-size: 18px;
    line-height: normal;
    text-transform: capitalize;
}
/* Book title */
#bookName {
    margin-bottom: 15px;
    color: #1A1915;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
/* Small paragraph */
#bookSmallParagraph {
    line-height: 24px; /* 171.429% */
    color: #686868;
    font-size: 16px;
    font-weight: 500;
}
/* Book info list */
.book-info {
    list-style: none;
    padding: 0 0 20px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #D9D9D9;
}
.book-info li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 15px;
    color: #333;
}
.book-info li strong {
     color: #1A1915;
     font-size: 18px;
     font-weight: 700;
     margin-left: 10px;
}
/* Book description */
#bookDesc {
    color: #141414;
    font-family: Inter;
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    opacity: 0.7;
}
/* Book image */
#bookImage {
    width: 60%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}
p#bookDesc {
    display: block;
}
p#bookDesc ul {
    margin: 2rem 0 0 1rem;
    list-style: disc;
}
.book-info li span {
    color: #141414;
    font-family: Inter;
    font-size: 16px;
    line-height: 18.232px; /* 113.949% */
    opacity: 0.7;
}
.book-detail.text-end {
    border-radius: 20px;
    width: 700px;
    /* height: 636.301px; */
    background: rgba(217, 217, 217, 1);
    text-align: center !important;
    margin: 0 auto;
    padding: 32px;
}
.book-review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 20px;
    padding: 15px 0px;
}
/* Responsive */
@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .book-detail {
        padding: 20px;
    }
}


.book-card-detail span {
    margin-bottom: 10px;
    padding: 5px 13px;
    color: #73CFF8;
    border-radius: 14px;
    border: 1px solid #E4E4E4;
}






@media (max-width: 1440px) {
    .sec-slider-banner span img {
    bottom: -1vw;
    left: 28%;
    height: 50%;
}

.sec-3-img img {
    max-width: 50vw;
    margin: 0vw 0vw 0vw -11vw;
    height: 32vw;
}

}

@media (max-width: 1200px) {
    
    .sec-books img {
    display: none;
}

    .step-opt-number span img {
    width: 130px;
}

span.line-dot {
    left: 14.5%;
}

.step-opt-number {
    gap: 10px;
}

li.first.last {
    border: none;
}

    h1.banner-heading {
    font-size: 56px;
}

.banner-content {
    padding: 50px 0 50px;
}

.sec-heading h2 {
    font-size: 35px;
}

.sec-heading p {
    font-size: 16px;
}

.btn-wrap .theme-btn {
    font-size: 14px;
    padding: 18px 15px;
}

    .main-header {
    padding-top: 10px;
}

.sec-slider-banner span img {
    height: 41%;
    left: 29%;
}

.sec-color.ext {
    text-align: center;
}

.sec-color.ext .btn-wrap {
    justify-content: center;
}

    ul.f-menu.first:after {
    right: -20px;
}

.footer-hdng h4 {
    font-size: 18px;
}

.f-menu li a {
    font-size: 12px;
}

.copyright p, .copyright a {
    font-size: 12px;
}

.btn-wrap .theme-btn {
    padding: 15px 26px;
    text-align: center;
}

.book-card {
    display: inline;
    border: none;
}

.book-card-image {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.sec6-list ul li {
    padding: 22px 8px;
}

    .sec-3-img img {
    display: none;
}

    .book-card-detail p {
    font-size: 13px;
}

    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        margin: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: center;
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li > a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
}


@media (max-width : 1025px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        width: 100%;
        position: relative;
    }
}


@media (max-width : 992px){

    .sec-opt-book-img {
    display: none;
}

    .sec-script-opt-img img {
    display: none;
}

    .sec-choose img {
    display: none;
}

    .step-opt-number span img {
    width: 50px;
}

span.line-dot {
    left: 9%;
}

    .step-img img {
    display: none;
}

    ul.f-menu.first:after {
    display: none;
}

ul.f-menu:before {
    display: none;
}

section {
    padding: 2rem 0;
}

.sec-heading p {
    width: 100%;
}

.sec-2-opt-main p {
    font-size: 16px;
}

h1.banner-heading {
    font-size: 44px;
}

p.banner-text {
    margin-bottom: 1rem;
    font-size: 16px;
}

.sec-slider-banner span img {
    height: 42%;
    left: 20%;
}

.sec-2-opt-main ul li {
    font-size: 16px;
}
      .sec-1-img {
    display: none;
}

.form {
    margin-top: 15px;
}

}

@media (max-width : 768px){
        .step-opt-number span img {
    width: 90px;
}

span.line-dot {
    left: 12%;
}

}


@media (max-width : 500px){
    .step-opt-number span img {display: none;}

span.line-dot {
    left: 12%;
}
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
/* Styles */
}
/* iPads (landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {
/* Styles */
}
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
/* Styles */
}

/* iPhone 6-8 Plus */
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 414px)
and (max-width : 736px)
and (orientation : landscape) {
/* Styles */
}

/* iPhone 6-8  */
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 375px)
and (max-width : 667px)
and (orientation : landscape) {
/* Styles */
}

/* Android (Pixel 2) */
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : portrait) {
/* Styles */
}
@media only screen
and (min-width : 412px)
and (max-width : 684px)
and (orientation : landscape) {
/* Styles */
}

@media only screen
and (min-width : 375px)
and (max-width : 734px)
and (orientation : portrait) {

}
@media only screen
and (min-width : 375px)
and (max-width : 736px) {

    .sec-slider-banner span img {
    display: none;
}

.sec-slider-banner span:before {
    display: none;
}

.accordion-list li h3 {
    font-size: 18px;
}

    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 40px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

}









.terms ul li ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #686868;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.terms h5 {
    margin: 0rem 0 1rem;
    color: #1A1915;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.terms ul li ul li a {
    color: #000;
}

.banner-content.ext {
    padding: 60px 0 100px;
}

section.terms-text {
    padding-top: 0;
}