 * {
    margin: 0px;
    padding: 0px;
 }

 :root {
    /* === Brand Colors === */
    --color-primary: #000080;
    /* Navy Blue */
    --color-accent: #005eff;
    /* Accent Blue */
    --color-muted: #0b1d4d;
    /* Subtle Muted Blue */
    --color-warm: #f5c518;
    /* Warm Gold */
    --color-white: #ffffff;
    /* Brand White */
    --color-black: #000000;
    /* True Black */

    /* === Extended Brand Tones === */
    --color-secondary: #008080;
    /* Teal Secondary */
    --color-light: #f5f7fa;
    /* Light Gray Background */
    --color-dark: #11131a;
    /* Deep Contrast */

    /* === Layout Backgrounds === */
    --bg-main: #e9edf6;
    --bg-section: var(--color-primary);
    --bg-contrast: var(--color-dark);
    --bg-muted: var(--color-muted);
    --bg-overflow: #0000005e;

    /* === Text Colors === */
    --text-main: #1a1a1d;
    --text-muted: #1a1a1db3;
    --text-inverse: var(--color-white);
    --text-accent: var(--color-accent);

    /* === Navigation === */
    --nav-bg: var(--color-primary);
    --nav-text: var(--text-inverse);
    --nav-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    --nav-hover: var(--color-accent);
    --nav-active: var(--color-warm);

    /* === Dropdown Menu === */
    --dropdown-bg: var(--color-white);
    --dropdown-text: var(--text-main);
    --dropdown-hover-bg: #f8f9fa;
    --dropdown-hover-text: var(--color-primary);
    --dropdown-border: 1px solid var(--color-light);
    --sub-menu-border-top: 3px solid var(--color-primary);

    /* === Buttons === */
    --btn-bg: var(--color-accent);
    --btn-primary-bg: linear-gradient(70deg, var(--color-accent) 0%, var(--color-primary) 90%);
    --btn-primary-text: var(--color-white);
    --btn-hover-bg: var(--color-accent);
    --btn-hover-text: var(--color-white);
    --btn-alt-bg: linear-gradient(70deg, var(--color-warm) 0%, var(--color-white) 90%);
    --btn--alt-hover-bg: var(--color-white);
    --btn-alt-text: var(--text-main);

    /* === Forms === */
    --input-border: #dcdcdc;
    --input-focus-border: var(--color-accent);
    --input-bg: var(--color-white);
    --input-text: var(--text-main);
    --input-placeholder: #999;

    /* === Shadows and Borders === */
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --border-radius: 0.5rem;
    --border-light: #005eff63;
 }

 html {
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .6px;
 }

 html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
 }

 html::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    box-shadow: inset 2px 2px 2px var(--color-white), inset -2px -2px 2px var(--color-accent);
 }

 html::-webkit-scrollbar-track {
    background-color: var(--color-light);
 }

 body {
    color: var(--color-black);
    box-sizing: border-box;
 }

 h1 {
    font-size: 26px;
    letter-spacing: .5px;
 }

 h2 {
    font-size: 24px;
    letter-spacing: .5px;
    line-height: 1.2;
 }

 h3 {
    font-size: 20px;
 }

 h4 {
    font-size: 18px;
 }

 h5 {
    font-size: 17px;
 }

 h6 {
    font-size: 16px;
 }

 h1,
 h2 {
    font-weight: 600;
 }

 mark {
    background-color: var(--color-warm);
 }

 li strong {
    display: block;
    padding-right: 5px;
 }

 abbr[title] {
    text-decoration: none;
 }

 ::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
 }

 .placeholder {
    color: gray;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
 }

 select option:not(:first-child) {
    color: #000;
    font-family: Blanco, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
 }

 label,
 button,
 a {
    cursor: pointer;
 }

 label,
 button,
 a,
 ul,
 ol,
 li,
 div {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
 }

 /* header */
 .header {
    background: var(--color-primary);
    margin-left: 0.6%;
    display: -webkit-flex;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    align-items: center;
    justify-content: center;
    z-index: 500;
 }

 .hero-sli-cont {
    position: relative;
 }

 .header-disp {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 8vh;
    padding: 0px 10%;
 }

 .header-disp div:first-child {
    padding-right: 50px;
 }

 .header-disp input {
    display: none;
 }

 .mobnav {
    display: none;
 }

 nav.nav {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
 }

 .nav>ul {
    display: -webkit-flex;
    display: flex;
    align-items: center;
 }

 .nav ul li ul {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;

 }

 .nav ul li {
    text-decoration: none;
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
 }

 .nav ul li a {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
 }

 .nav ul.nav-list>li,
 #stitslnk {
    margin-left: 15px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: .1px;
    text-transform: uppercase;
 }

 .nav ul.nav-list>li span {
    line-height: 8vh;
 }

 .nav-list li ul li {
    height: 30px;
 }

 .nav-list li ul li a {
    text-transform: capitalize;
    font-weight: 300;
 }

 ul.sub-menu li+li {
    padding-top: 5px;
 }

 ul.sub-menu {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: var(--color-primary);
    border-top: 1px solid #ffffff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 1);
    padding: 20px 20px 30px;
    transition: .0s;
    visibility: hidden;
 }

 ul.nav-list li:hover>.sub-menu {
    visibility: visible;
 }

 nav.nav li a:hover {
    color: #efd700;
 }

 nav.nav li:hover {
    color: #efd700;
 }

 nav.nav li ul li a:hover {
    color: #efd700;
 }

 ul.sub-menu::before {
    content: "";
    border: 5px solid transparent;
    border-top: 5px solid #ffffff;
    position: absolute;
    top: 0;
    left: 20%;
 }

 .menu_social {
    display: none;
 }

 .moblogoclosbn {
    display: none;
 }

 .nav #mobmnu {
    display: none;
 }

 .pgefouris {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #99A3AD;
    padding-bottom: 10px;
    margin-bottom: 20px;
 }

 .bkshders {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: end;
 }

 .infhd {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
 }

 .infinf {
    font-size: 15px;
    color: #ffffff;
 }

 .pgefouris div img {
    width: 140px;
 }

 /* end header */
 /* bnn hero */
 .hero-sli-cont {
    overflow: hidden;
    margin-left: 0.6%;
 }

 .hero-backh-sli-disp {
    position: relative;
    width: 700%;
    height: 75vh;
    margin: 0;
    left: 0;
    animation: 40s heroskyf infinite;
 }

 .hero-backh-sli-disp span.hero-backg {
    width: 14.285714285714%;
    height: 100%;
    float: left;
 }

 @keyframes heroskyf {
    0% {
       left: 0;
    }

    10% {
       left: 0;
    }

    15% {
       left: -100%;
    }

    25% {
       left: -100%;
    }

    30% {
       left: -200%;
    }

    40% {
       left: -200%;
    }

    45% {
       left: -300%;
    }

    55% {
       left: -300%;
    }

    60% {
       left: -400%;
    }

    70% {
       left: -400%;
    }

    75% {
       left: -500%;
    }

    85% {
       left: -500%;
    }

    90% {
       left: -600%;
    }

    100% {
       left: -600%;
    }
 }

 span.hero-backg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
 }

 /* hero nav */
 .logo img {
    width: 130px;
 }

 .hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 }

 .hnvul-subm {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10px;
    color: var(--color-white);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease-in-out, z-index 0.4s ease-in-out;
 }

 .hnvli {
    padding: 8px 10px;
    background: var(--btn-alt-bg);
    width: 100px;
    color: var(--btn-alt-text);
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    letter-spacing: .6px;
    position: relative;
    border-radius: 0px 2px 2px 0px;
    z-index: 200;
 }

 .hnvul .hnvli:nth-child(1) {
    position: absolute;
    top: 25vh;
 }

 .hnvul .hnvli:nth-child(3) {
    position: absolute;
    top: calc(25vh + 50px);
 }

 .hnvul .hnvli:nth-last-of-type(4) {
    position: absolute;
    top: calc(25vh + 100px);
 }

 .hnvul .hnvli:nth-child(7) {
    position: absolute;
    top: calc(25vh + 150px);
 }


 .hnvli:hover::before,
 #active::before {
    content: "";
    position: absolute;
    left: 100%;
    border: 10px solid transparent;
    border-left: 10px solid var(--color-white);
    transition: width 0.3s ease-in-out;
    z-index: 200;
 }


 .hnvsli.infr {
    width: 600px;
 }

 .hnvsli.infr strong {
    color: var(--color-warm);
 }

 .hnvsli h3 {
    display: block;
    font-weight: bold;
    padding-bottom: 10px;
 }

 .hnvsli.infr p:nth-child(5) {
    display: block;
    margin-top: 10px;
 }

 .hnvsli+.hnvsli {
    margin-left: 100px;
 }

 .hnvsli img {
    width: 200px;
 }

 .hnvli:hover {
    background: var(--btn--alt-hover-bg);
 }

 .hnvli:hover+div.hnvul-subm {
    opacity: 1;
    z-index: 0;
 }

 .hnvul-subm:hover {
    opacity: 1;
    z-index: 0;
 }

 .hnvslibtn a {
    padding: 8px 10px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .6px;
    font-weight: 400;
 }

 .hnvslibtn a:hover {
    background: var(--btn-bg);
 }

 .hnvslibtn {
    margin-top: 30px;
 }

 /* #active::before {
    width: 100%;
 } */

 /* hero text */
 /* hero arrow down */
 .scrolldarr {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
 }

 .scrolldarr i {
    font-size: 2rem;
    color: #fff;
    animation: arrdwn 1s infinite;
 }

 @keyframes arrdwn {
    0% {
       transform: translateY(0);
    }

    50% {
       transform: translateY(-20px);
    }

    100% {
       transform: translateY(0);
    }
 }

 /* end hero arrow down */
 .hsltxcont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
 }

 .hsltxshrt {
    width: 55%;
    height: 200px;
    overflow: hidden;
    border-left: 2px solid #ffff;
 }

 .hsltxsltxhe {
    flex-direction: column;
    height: 700%;
    position: relative;
    padding-left: 20px;
 }

 .hsltxsltx {
    height: 100%;
    animation: 40s txthr infinite linear;
    position: relative;
    text-align: center;
    padding-right: 20px;
    color: #ffffff;
    text-align: left;
 }

 .hsltxscnt {
    width: 100%;
    height: 200px;
    padding-top: 30px;
 }

 .hsltxscnt h2 {
    font-size: 70px;
    font-weight: bolder;
    display: block;
    margin-bottom: 10px;
    transform-origin: 1s ease-in-out;
 }

 .hsltxscnt>span {
    font-size: 20px;
    transition-delay: 2s;
    text-shadow: 1px 1px 5px #000;
 }

 @keyframes txthr {
    0% {
       top: 0;
    }

    10% {
       top: 0;
    }

    15% {
       top: -100%;
    }

    25% {
       top: -100%;
    }

    30% {
       top: -200%;
    }

    40% {
       top: -200%;
    }

    45% {
       top: -300%;
    }

    55% {
       top: -300%;
    }

    60% {
       top: -400%;
    }

    70% {
       top: -400%;
    }

    75% {
       top: -500%;
    }

    85% {
       top: -500%;
    }

    90% {
       top: -600%;
    }

    100% {
       top: -600%;
    }
 }

 @keyframes bounce {

    0%,
    100% {
       transform: translateY(0);
    }

    50% {
       transform: translateY(-15px);
    }
 }

 /* end bnne  hero */
 /* home-expr start */
 .welc-adve {
    background-color: #ffffff;
    position: relative;
    padding-bottom: 20px;
    z-index: 0;
 }

 .welc-adve::before {
    content: "";
    position: absolute;
    top: 19%;
    width: 74%;
    height: 45%;
    margin: 0px 13%;
    border-radius: 5px;
    background-color: var(--color-white);
    box-shadow: 0px 0px 2px var(--color-accent);
    z-index: -1;

 }

 .lgdvchdescr {
    padding: 30px 15% 50px;
    z-index: 1;
 }

 .lgdvchdescr h1 {
    text-align: center;
    margin: 30px 0px 5%;
    color: var(--color-black);
 }

 .welc-adve.mnth .mobhdescr {
    display: none;
 }

 .welcico {
    display: -webkit-flex;
    display: flex;
    align-items: center;
 }

 .card {
    overflow: hidden;
    position: relative;
    background: var(--color-white);
    height: 440px;
    box-shadow: 0px 0px 2px var(--color-accent);
    border-radius: 5px;
    overflow: hidden;
 }

 .cardimgh {
    width: 100%;
    height: 50%;
    position: relative;
    overflow: hidden;
 }

 .cardimgh img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: transform 0.2s ease-out;
 }

 .cardh {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 1;
 }

 .cardh h3 {
    color: #ffffff;
    text-shadow: 1px 1px #000;
 }

 .card-det-disp {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-around;
 }

 .card-det {
    display: -webkit-flex;
    display: flex;
    align-items: center;
 }

 .card-det>div i {
    padding-right: 10px;
 }

 .card-det-disp:nth-child(1) {
    background: var(--color-light);
    padding: 10px 0px;
    border-radius: 2px;
    color: var(--color-muted);
 }

 .card-deta>span {
    width: 100%;
    display: block;
    padding: 10px 2px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
 }

 .mopckbtn {
    text-align: center;
    padding: 15px 10% 30px;
    background-color: var(--color-white);
 }

 .mopckbtn a {
    text-decoration: none;
    color: var(--btn-alt-text);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: .5px;
    box-shadow: 0px 0px 2px var(--color-accent);
    background: var(--btn-alt-bg);
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 12px 20px;
    border-radius: 5px;
 }

 .mopckbtn a:hover {
    background: var(--color-warm);
 }

 .prcplbtn-dsp {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    line-height: 19px;
 }

 .prcplbtn-dsp div:first-child {
    font-size: 16px;
    letter-spacing: -0.5px;
 }

 .prcplc span {
    font-size: 15px;
 }

 .mdetlsbtnon {
    display: table-cell;
    padding: 8px 10px;
    background: var(--btn-primary-bg);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: var(--btn-primary-text);
    cursor: pointer;
    transition: 0s;
    letter-spacing: .6px;
 }

 .cllbbtnbot {
    display: table-cell;
    padding: 2px 10px;
    background: red;
    border: 3px solid red;
    border-radius: 3px 0px 0px 3px;
    text-decoration: none;
    font-size: 1px;
    color: #fff;
    cursor: pointer;
    transition: 0s;
 }

 .mdetlsbtnon:hover {
    background: var(--btn-bg);
 }

 .cllbbtnbot:hover {
    background: transparent;
    color: red;
 }

 .h-h {
    background-color: var(--color-white);
    text-align: center;
    color: var(--color-black);
    padding: 30px 10%;

 }

 .mntbtd {
    box-shadow: 0px 0px 2px var(--color-accent);
    overflow: hidden;
 }

 .kili-card {
    position: relative;
    overflow: hidden;
 }

 .cards-dip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 10%;
    background-color: #ffffff;
 }

 .card-wh-reso {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 5px 0px;
    background: var(--color-light);
    overflow-x: auto;
    width: 300%;
    height: 44px;
    position: relative;
    animation: reasowhy 15s infinite;
 }

 .card-wh-reso::-webkit-scrollbar {
    display: none;
 }

 .card-wh-reso blockquote:not(:last-child) {
    margin-right: 10px;
 }

 .card-wh-reso-cont {
    overflow: hidden;
 }

 .card-wh-reso>blockquote {
    width: 100%;
    text-align: center;
    font-size: 13px;
 }

 @keyframes reasowhy {
    0% {
       left: 0;
    }

    25% {
       left: 0;
    }

    35% {
       left: -100%;
    }

    60% {
       left: -100%;
    }

    75% {
       left: -200%;
    }

    100% {
       left: -200%;
    }
 }

 /* home-expr end */
 /* why cards start */
 .custmtabl {
    background-color: #ffffff;
 }

 .thaclmx-disp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 10%;
    gap: 20px;
 }

 .thaclmxcrd {
    padding: 30px;
    box-shadow: 0px 0px 2px var(--color-accent);
    overflow: hidden;
    border-radius: 5px;
 }

 .thaclmxcrd h3 {
    padding-bottom: 10px;
 }

 .cstmtrhrtinf {
    margin-left: 15px;
 }

 .cstmtrhrt {
    display: flex;
    align-items: center;
 }

 .cstmtrhrtic {
    width: 120px;
    height: auto;
 }

 .thaclmx .fa {
    color: var(--color-accent);
    font-size: 30px;
 }

 .wybtnxpr {
    display: none;
 }

 .whycrdcont {
    width: calc(100%-00.6%);
    background-color: #ffffff;
 }

 /* why cards end */
 /* footer css start */
 .footer {
    background-color: var(--bg-section);
    padding: 30px 0px 20px;
    z-index: 100;
 }

 .footerits {
    display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
    color: #ffffff;
 }

 .footerits .foqcl h2 {
    text-align: right;
 }

 .fosclnt {
    text-align: center;
 }

 .foqcl-dsp {
    display: -webkit-flex;
    display: flex;
 }

 .foqcl-dsp ul:first-child {
    padding-right: 20px;
    border-right: 1px solid #ffffff;
 }

 .foqcl-dsp ul+ul {
    margin-left: 20px;
 }

 .foqcl ul li {
    list-style-type: none;
 }

 .foqcl ul li a {
    text-decoration: none;
    font-weight: 400;
    color: #ffffff;
 }

 .fosclntso {
    margin-top: 15px;
 }

 .fosclntso a {
    width: 30px;
    height: 30px;
    color: #efd700;
    border: 1px solid #efd700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0s;
 }

 .fosclntso a+a {
    margin-left: 5px;
 }

 .fosclntso a:hover {
    color: #000080;
    background: #ffffff;
    border: 1px solid #ffffff;
 }

 .footerits .condtls {
    text-align: left;
 }

 .foimbr img {
    width: 180px;
    padding-bottom: 20px;
 }

 .condtls a {
    text-decoration: none;
    color: #efd700;
 }

 .copyright {
    height: 6vh;
    margin-left: 0.6%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    clear: both;
    position: relative;
    z-index: 400;
 }

 .copyright div {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 300;
 }

 /* step contact form */
 .gtitcntf {
    background-color: var(--color-white);
    padding: 80px 0px 70px;
 }

 .contusin {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }

 #homestt {
    margin: 0px 10%;
 }

 #contlayo {
    padding: 0px 20px;
 }

 .gtitcntf.cntfhbo {
    border: 1px solid #d1d1d1;
 }

 .gtitcntfo {
    text-align: center;
 }

 .gtitcntfo h3 {
    padding: 10px 0px 10px;
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: .6px;
    font-size: 30px;
    line-height: 30px;
 }

 .gtitcntfo p {
    text-align: left;
 }

 .gtitcntfo p:not(:first-child) {
    padding-top: 5px;
    display: block;
 }

 .contusin>div:first-child {
    width: 50%;
    padding-right: 40px;
 }

 .contusin>div:nth-child(2) {
    width: 50%;
    padding-left: 40px;
 }

 input.invalid {
    background-color: #ffdddd;
 }

 button:hover {
    opacity: 0.8;
 }

 #multi-step-form-container {
    width: 50%;
 }

 .cnfip {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 2px var(--color-accent);
    overflow: hidden;
    border-radius: 5px;
 }

 .cnfip:not(:first-child) {
    margin-top: 15px;
 }

 .cnfi {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    width: 10%;
 }

 .cnfi i {
    font-weight: 600;
 }

 .cnfl {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 10px 0px;
    border: 1px solid #99A3AD;
 }

 .cnfl:not(:first-child) {
    margin-top: 10px;
 }

 .cnfar:not(:first-child) {
    margin-top: 15px;
 }


 #contact-form input,
 #contact-form select {
    width: 90%;
    border: none;
    outline: none;
    height: 30px;
    background-color: #ffffff;
 }

 #contact-form textarea {
    width: 90%;
    border: none;
    outline: none;
    padding: 10px 0px;
 }

 .step1 button,
 #contact-submit {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .6px;
    cursor: pointer;
    margin-top: 20px;
 }

 #contact-previous {
    background: var(--btn-alt-bg);
    color: var(--btn-alt-text);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .6px;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 40px;
 }

 .cnfbtn {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 /* end footer */
 /* price flash */
 #flsh::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000ff;
    animation: shwifchcd 1s;
    opacity: 0;
 }

 @keyframes shwifchcd {
    from {
       opacity: 1;
       left: -100%;
    }

    to {
       opacity: 0;
    }
 }

 /* end price flash */
 .inpgbnner {
    width: 99.4%;
    height: 60vh;
    margin-left: 0.6%;
    display: -webkit-flex;
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: right;
    text-align: right;
 }

 .inpgbnnr-bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%);
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center;
 }

 .inpgstrt {
    background: linear-gradient(80deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 50%));
    padding: 50px 30px;
 }

 .inpgstrt h1 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: -1px;
 }

 .hero_discr p {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: -1px;
    margin: 10px 0px;
 }

 .hero_discr p span {
    color: #efd700;
    font-family: monospace;
    font-weight: bolder;
 }

 .inpgstrt {
    width: 60%;
 }

 .mdtlsabtp-dsp {
    position: absolute;
    top: 40px;
    right: 30px;
 }

 .mdtlsabtp-dsp ul {
    color: #ffffff;
    display: -webkit-flex;
    display: flex;
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 1px 1px 5px #000;
 }

 .mdtlsabtp-dsp ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: all ease .1s;
 }

 .mdtlsabtp-dsp ul li {
    list-style: none;
    /* display: -webkit-flex;
    display: flex;
    align-items: center; */
 }

 .mdtlsabtp-dsp ul li:not(:last-child) {
    margin-right: 24px;
 }

 .mdtlsabtp-dsp ul li a:hover {
    text-shadow: 1.5px 1.5px 8px #000;
 }

 #pglytcnts {
    width: calc(100%-00.6%);
    margin-left: 0.6%;
 }

 #pginlytcnts {
    width: 76.4%;
    float: left;
    margin-left: 0.6%;
 }

 /* inpage full */
 /* articles */
 .fllpgflxno {
    padding: 3vh 60px 70px;
    background: #FFFFFF;
    margin-right: 1px;
 }

 .fllpgflxno#frstchl {
    margin-bottom: 17px;
 }

 .topnavaricls {
    padding: 30px 70px 30px;
    background-color: #ffffff;
 }

 .tpmentb .tpmenlnk-dsp {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
 }

 .tpmenttle h1 {
    font-weight: normal;
 }

 .tpmentb .tpmenlnk-dsp ul {
    display: -webkit-flex;
    justify-content: end;
    display: flex;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    -webkit-list-style-type: disclosure-closed;
    list-style-type: disclosure-closed;
 }

 .tpmentb .tpmenlnk-dsp ul li a {
    text-decoration: none;
    transition: all ease .1s;
    color: var(--color-accent);
 }

 .tpmenlnk-dsp ul li {
    list-style: none;
    display: -webkit-flex;
    display: flex;
    align-items: center;
 }

 .tpmenlnk-dsp ul li:not(:last-child) {
    margin-right: 24px;
 }

 .tpmenlnk-dsp ul li a:hover {
    text-shadow: 0px 0px .5px #000;
 }

 .tpmentr {
    text-decoration: none;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: end;
    border-bottom: 1px solid #8080803d;
    padding: 20px 0px 25px;
 }

 .tpmentr a {
    text-decoration: none;
 }

 .tpmentr a:hover .tpmenico i {
    box-shadow: 0px 0px 2px solid var(--color-primary);
    color: var(--color-accent);
    font-weight: 900;
 }

 .tpmentr a:not(:last-child) {
    margin-right: 30px;
 }

 a .tpmentd {
    display: -webkit-flex;
    display: flex;
    align-items: center;
 }

 a .tpmentd .tpmenico i {
    width: 27px;
    height: 23px;
    box-shadow: 0px 0px 2px var(--color-warm);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 500;
    background: var(--btn-alt-bg);
    font-size: 10px;
    margin-right: 5px;
    transition: all .1s ease;
 }

 a .tpmentd .tpmenhea {
    font-weight: 500;
    color: var(--color-accent);
 }

 .maxtd .maxcrd {
    height: 200px;
    position: relative;
    overflow: hidden;
 }

 .maxtd .maxcrd img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
 }

 .maxtr.crdsa {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
 }

 .maxtr.crdsa a {
    text-decoration: none;
 }

 .fllpgflxno.artcls .maxtb {
    margin-top: 70px;
 }

 .fllpgflxno.artcls .maxtd h4::before {
    display: none;
 }

 .artcls .maxtd {
    box-shadow: 0px 0px 20px #00000047;
    background-color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
 }

 .artcls .maxtd:hover {
    box-shadow: 0px 0px 10px #00000047;
    border-radius: 2px;
 }

 .maxcrdinf {
    padding: 15px 20px 30px;
    height: 90px;
 }

 .maxcrdinf span.comm {
    display: block;
    padding-bottom: 10px;
    font-style: italic;
    font-size: 15px;
 }

 .maxcrdinf h2 {
    font-size: 19px;
    font-weight: normal;
    letter-spacing: .1px;
 }

 .mdtlsabtp-dsp ul li::after {
    content: "\f0d9";
    font-family: "Font Awesome 6 Pro";
    margin-left: 8px;
 }

 .tpmenlnk-dsp ul li::after {
    content: "\f0d9";
    font-family: "Font Awesome 6 Pro";
    margin-left: 8px;
    color: var(--color-primary);
    font-weight: 900;
 }

 /* end articles */
 .abtprvttrs {
    flex: 0 0 200px;
 }

 #stsdnvid {
    height: 80vh;
    position: -webkit-sticky;
    position: sticky;
    top: 8vh;
 }

 #stsdnvid ul li a,
 .sidbr-its ul li a {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    color: var(--color-main);
 }

 #stsdnvid ul li a {
    text-decoration: none;
    position: relative;
 }

 #stsdnvid ul li a::before,
 .sidbr-its ul li a::before {
    content: "";
    left: 0px;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 1px;
    background-color: #99A3AD;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

 }

 #stsdnvid ul li a::after {
    content: '';
    position: absolute;
    left: 3px;
    border-right: 1px dashed #99A3AD;
    height: 100%;
 }

 #stsdnvid ul li a:hover,
 .sidbr-its ul li a:hover {
    color: #0000ff;
 }

 #stsdnvid ul li a:hover::before,
 .sidbr-its ul li a:hover::before {
    background-color: #0000ff;
 }


 .pckgwelc {
    display: block;
    padding-bottom: 30px;
 }

 .fxddprtdyfull-dsp {
    font-size: 17px;
 }

 .fxddprt-dsp#fxddpid {
    background-color: #ffffff;
    padding: 0px 10% 30px;
 }

 /* home fx */
 .fxddpcnttbs {
    display: flex;
    box-shadow: 0px 0px 2px var(--color-accent);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 0;
 }

 .fxdtrslyo>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    transition: opacity 0.5s ease-in-out;
    animation: departures_bg 0.5s;
    will-change: opacity;
 }

 @keyframes departures_bg {
    0% {
       opacity: 0;
    }

    100% {
       opacity: 1;
    }
 }

 .fxddpcnttbs::after {
    content: "";
    background-color: var(--bg-overflow);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: -1;
 }

 .fxdlbctgrs {
    display: flex;
    flex-direction: column;
 }

 .fxdlbctgrs label {
    /* box-shadow: 0px 0px .7px var(--color-accent); */
    cursor: pointer;
    padding: 16px 20px;
    width: 150px;
    /* transition: background .2s ease-in-out, opacity .2s ease-in-out; */
    position: relative;
    background-color: var(--color-white);
    font-size: 15px;
    font-weight: 400;
 }

 .fxdlbctgrs label:not(:last-child) {
    margin-bottom: 1px;
 }

 .fxdtrs {
    width: 100%;
    position: relative;
 }

 .fxdtrslyo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
 }

 .fxdtr {
    box-shadow: 0px 0px 2px var(--color-white);
    width: 340px;
    height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
    overflow: hidden;
 }

 .fxdtr:first-child {
    margin-right: 8%;
 }

 .fxdtrtp,
 .fxdtrmdl,
 .fxdtrbtm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
 }

 .fxdtrtp,
 .fxdtrmdl {
    color: var(--color-white);
 }

 .fxdtrtp {
    padding-top: 15px;
 }

 .fxdtrbtm {
    background: var(--color-light);
    padding-top: 8px;
    padding-bottom: 8px;
 }

 .fxdtrbtm h3 {
    width: 50%;
    font-weight: 400;
    font-size: 15px;
 }

 .fxdtrbtm a {
    text-decoration: none;
    padding: 8px 10px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .6px;
    border-radius: 5px;
 }

 .fxdtrbtm a:hover {
    background: var(--color-accent);
 }

 .fxdtrtppr span:first-child,
 .fxdtrtppr span:last-child,
 .fxdtrtpdl span:last-child {
    font-size: 13px;
    font-weight: 500;
 }

 .fxdtrtppr span:nth-last-of-type(2) {
    color: var(--color-warm);
    font-size: 20px;
    font-weight: 600;
 }

 .fxdtrtpdl {
    text-align: right;
 }

 .fxdtrtpdl span:first-child {
    color: var(--color-warm);
    font-size: 24px;
    font-weight: 600;
 }

 .fxdtrmdllft {
    font-size: 14px;
    font-weight: 400;
 }

 .fxdtrmdllft span,
 #fxdtricod i {
    font-weight: 600;
    color: var(--color-warm);
 }

 .fxdtrs,
 .fxdtrsirawk {
    display: none;
 }

 /* end home fx */

 .fxdprtprce {
    padding: 20px 10px;
    margin-bottom: 70px;
    font-size: 30px;
    background: linear-gradient(70deg, var(--color-warm) 0%, var(--color-white) 70%);
    border-radius: 5px;
 }

 .fxdprtprce span {
    font-size: 40px;
    font-weight: 900;
    font-family: monospace;
 }

 .pckgovwdsc p.interest {
    display: block;
    padding-bottom: 30px;
 }

 .pckgscardsfull-dsp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
 }

 .pckgs.pfull {
    margin: 40px 0px;
    box-shadow: 0px 0px 10px #99A3AD;
 }

 #pginfullcnts .gtitcntf.cntfpbo {
    margin-right: 1px;
 }

 /* end inpage full */