/*Main Css */
:root {
    --primary: #00B67A;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Playfair Display" , sans-serif;
    --font-accent: "Montserrat" , sans-serif;
    --font-body: "Montserrat" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #1EB24D;
    color: #fff;
    text-shadow: none;
}

::-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;
}

/* 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;
}
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: end;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: green;
    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;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 0px 0;
}
.header-btn {
    padding: 15px 20px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.00);
    background: #1EB24D;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@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;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@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 #ddd;
}
.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 */

.ext-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
    border-bottom: 1px solid #B5B5B5;
    margin-bottom: 15px;
}

h1.banner-heading span {
    color: #1EB24D;
    font-weight: 700;
}

.banner-content h4 {
    color: #212529;
    font-size: 22px;
    font-weight: 700;
    line-height: 26.4px;
    margin-bottom: 1rem;
}

.banner-img {
    text-align: center;
}

.opt-ext-header a {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 20px 0 100px;
}
h1.banner-heading {
    margin-bottom: 1rem;
    color: #343A40;
    font-size: 64px;
    font-weight: 900;
    line-height: 75px;
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}
p.banner-text {
    margin-bottom: 1.5rem;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 30px 35px 30px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #D1D5DB;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    background: rgba(0, 0, 0, 0.03);
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: #212529;
    font-family: "Playfair Display";
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF ;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
}
.answer p {
    color: #212529;
    font-family: "Segoe UI";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}
/* Accordian */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    color: #000;
    font-size: 50px;
    font-weight: 800;
    line-height: 57.6px;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}
.btn-wrap .theme-btn {
    padding: 15px 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.00);
    background: #1EB24D;
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

.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-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
/* footer */


/* -------------------------contact us-------------------------- */
.input-field1 label {
    padding-left: 10px;
    color: #292929;
    font-weight: 500;
    padding-bottom: 8px;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 50px;
    width: 100%;
    font-size: 16px;
    color: #222222;
    padding: 15px 30px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid #DFDEDE;
    background: #FFF;
}
.input-field1 textarea {
    height: 58px;
}
.send input[type="submit"] {
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    padding: 18px 20px;
    border-radius: 50px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    background-color: #0b5d51;
    border-radius: 30px;
    background: #1EB24D;
}
/* -------------------------contact us-------------------------- */

/* Portfolio */
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
ul.overview-nav.d2 a {
    padding: 15px 0px;
    border-radius: 5px;
    color: #212529;
    font-family: "Playfair Display";
    font-size: 22px;
    font-weight: 700;
}
ul.overview-nav.d2 li.active a {
    border-bottom: 3px solid #1EB24D;
    border-radius: 0;
}
.port-card {
    margin-bottom: 1.5rem;
}
.port-card img {
    width: 100%;
}
/* Portfolio */

/* 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;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    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(../../../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(../../../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-size: 40px;
    font-style: normal;
    font-weight: 600;
    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);
    padding: 15px 20px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.00);
    background: #1EB24D;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    padding: 50px 0 0 0;
    background: #DBD8B7;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #B5B5B5;
}
.copyright p,.copyright a {
    color: #212529;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    color: #fff;
    line-height: 1.5;
    font-size: 16px;
    padding-top: 33px;
}
.f-menu li a {
    color: #212529;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
}
.footer-hdng p {
    padding-bottom: 16px;
    color: #212529;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
}
.f-menu li {
    line-height: 2;
}

/* 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: 40px;
    line-height: 68px;
    font-family: 'Montserrat';
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    margin-top: 20px;
    margin-bottom: 1rem;
    color: #212529;
    font-size: 18px;
    font-weight: 500;
    line-height: 22.5px;
}
/* 404 */

/* terms */
.terms .roman {
    list-style: upper-roman;
}
.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    list-style: inside;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 1rem 0;
    font-weight: 600;
}
.terms p {
    margin-bottom: 1rem;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
}
/* terms */


@media (max-width: 1440px) {}

@media (max-width: 1200px) {

    .ext-header {
    margin-bottom: -1px;
}

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

h1.banner-heading {
    font-size: 65px;
    line-height: 65px;
}

.banner-content h4 {
    font-size: 20px;
}

p.banner-text {
    font-size: 15px;
    line-height: 20px;
}

.form h5 {
    font-size: 18px;
}

.input-field1 input, .input-field1 textarea {
    height: 42px;
    font-size: 14px;
}

.send input[type="submit"] {
    font-size: 16px;
    padding: 14px 20px;
}

.form {
    padding: 15px 15px;
}

.sec-heading h2 {
    font-size: 28px;
    line-height: 1;
}

.sec-heading p {
    font-size: 14px;
    line-height: 20px;
}

section.sec-1 .sec-heading h4 {
    font-size: 18px;
}

section.sec-1 .sec-heading ul li {
    font-size: 14px;
    line-height: 18px;
}

section.sec-3 {
    background-repeat: no-repeat;
    background-size: cover;
}

.opt-sec-3-text h3 {
    font-size: 20px;
    line-height: 18px;
}

.opt-sec-3-text p {
    font-size: 14px;
    line-height: 20px;
}

.opt-sec-3-main {
    gap: 30px;
    margin-bottom: 20px;
}

.opt-sec-3-number h4 {
    font-size: 24px;
}

.opt-sec-3-number p {
    font-size: 12px;
}

.opt-sec-4-img h4 {
    font-size: 20px;
    line-height: 23px;
}

.opt-sec-4-main p {
    font-size: 14px;
    line-height: 20px;
}

ul.overview-nav.d2 a {
    font-size: 18px;
}

.footer-hdng p {
    padding-bottom: 14px;
    font-size: 14px;
}

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

.copyright p, .copyright a {
    font-size: 14px;
}
    
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .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;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: none;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    ul.menu > li  {
        display: flex;
        justify-content: end;
    }
    
    .container {
        position: relative;
    }

    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){

    .banner-img {
    display: none;
}

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

.sec-heading.white {
    text-align: center;
}

.sec-heading.white .btn-wrap {
    justify-content: center;
}

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

.opt-sec-4-img {
    justify-content: start;
}

.opt-sec-portfolio {
    text-align: center;
}

}

/* 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 */
}

/* Iphone X */
@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) {
    
    .ext-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }
    header{
        padding: 1rem 0;
    }
    .banner-content {
        padding: 0px 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;
    }


}







.form h5 {
    color: #000;
    font-family: "Segoe UI";
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: center;
    padding-bottom: 15px;
}

.form h5 strong {
    font-weight: 700;
}

.form h5 strong span {
    color: #1EB24D;
}

.form {
    border-radius: 10px;
    background: rgba(30, 178, 77, 0.18);
    padding: 20px 20px;
}

section.sec-1 .sec-heading h4 {
    color: #212529;
    font-size: 20px;
    font-family: "Segoe UI";
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
}

section.sec-1 .sec-heading ul li {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    list-style: inside;
    padding-bottom: 8px;
}

section.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sec-1-img {
    text-align: center;
}

.sec-heading.white p {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 26.4px;
}

.opt-sec-3-number h4 {
    padding-top: 10px;
    color: #1EB24D;
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 700;
    line-height: 28.602px;
    margin: 0;
}

.opt-sec-3-number p {
    color: #505050;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}

.opt-sec-3-number {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.opt-sec-3-text h3 {
    color: #212121;
    font-family: "Times New Roman";
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid #1EB24D;
    display: inline-block;
    padding-bottom: 4px;
}

.opt-sec-3-text p {
    color: #212529;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.opt-sec-3-main {
    margin-bottom: 40px;
    display: flex;
    align-items: start;
    gap: 50px;
}

.opt-sec-portfolio {
    margin-bottom: 20px;
}

section.faqs {
    background-color: #fff;
}

.footer-hdng h4 {
    color: #212529;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 14px;
}

ul.f-menu {
    margin-bottom: 40px;
}

.opt-sec-4-main {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 30px;
    padding: 50px 40px;
}

.opt-sec-4-main p {
    color: #212529;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.opt-sec-4-img h4 {
    color: #212529;
    font-family: "Segoe UI";
    font-size: 26px;
    font-weight: 600;
    line-height: 33.6px;
}

.opt-sec-4-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}


















/* pricing-sec */
.pricing-sec {
  background-image: url("../images/pricing-sec-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.package {
  border-radius: 36px;
  border: 2px solid #00b67a;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: 0.4s ease-in;
  overflow: hidden;
}
.package * {
  transition: 0.4s ease-in;
}
.package.p1 {
  background: #ffdede;
}
.package.p2 {
  background: #fff1ac;
}
.package.p3 {
  background: #c9ffda;
}
.package-title {
  align-self: center;
  border-radius: 0px;
  background: #1EB24D;
  padding: 15px 25px 15px;
  color: #fff;
  font-family: Montserrat;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.6px;
  width: 100%;
}
.pricing-container {
  border-radius: 38px;
  border: 3px solid #000;
  margin: 30px 0;
  box-shadow: 3.5px 5.3px 0px 0px #000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
}
.pricing-container.inner-package {
  border-radius: 0;
  border: none;
  margin: 20px 15px 10px 15px;
  box-shadow: none;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  overflow: visible;
}
.pricing-container > div {
  margin: 30px 0 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.package.p1 .pricing-container {
  background: #dbc7c7;
}
.package.p2 .pricing-container {
  background: #e4e7ca;
}
.package.p3 .pricing-container {
  background: #b5c9e7;
}
.pricing-container .price {
}
.pricing-container.inner-package .price {
  color: var(--primary);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  font-family: Montserrat;
  line-height: 1;
}
.pricing-container .list-price {
}
.pricing-container.inner-package .list-price {
  border-radius: 20px;
  /* border: 2px solid #000; */
  background: #fff;
  padding: 5px 15px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  font-family: Montserrat;
  line-height: 1;
}
.package-list-heading {
  margin-bottom: 12px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-left: 15px;
}
.package-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 238px;
  overflow-y: auto;
}
.package-list li {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  margin: 5px 0px 0px 15px;
  position: relative;
  padding-left: 30px;
}
.package-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/package-check.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -1px;
  left: 0;
  filter: hue-rotate(
120deg);
}
.package .theme-btn {
  text-transform: unset;
  padding: 15px 30px;
  color: white;
  text-align: center;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, 0.00);
  background: #1EB24D;
  font-size: 20px;
  width: 90%;
  margin: 10px auto;
}
.package-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
.package-footer a {
  color: #212529;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.package:hover {
  border: 2px solid #00b67a;
  background: #ececec;
}
.package:hover .package-title {
  background: var(--primary);
  color: #fff;
}
.package:hover .pricing-container.inner-package .price {
  color: var(--primary);
}
.package:hover .pricing-container .price {
  color: var(--primary);
}
.pricing-sec .hand-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.pricing-sec .hand-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.fldset {
    display: flex;
    align-items: baseline;
    margin-top: 0px;
 
}
.fldset label {
    font-size: 12px;
    color: #000;
    padding-left: 5px;
    text-align: left;
}
input[type="checkbox"] {
    width: 1em !important;
    height: 1rem !important;
    position: relative;
    top: 6px;
}

.cta-phn-mobile{background:#000;text-align:center;color:#fff!important;padding:5px;position:fixed;bottom:0!important;z-index:999;width:100%;display:none}.cta-phn-mobile a{color:#fff!important;text-decoration:none}@media (max-width:767px) and (min-width:320px){.cta-phn-mobile{display:block!important}body{overflow-x:hidden}footer {padding-bottom: 50px !important;}}
