
:root {
    color-scheme: only light;
    --primary: #f38320;
    --primary-d-1: #319457;
    --primary-d-2: #2a6d42;
    --primary-d-3: #20492d;
    --primary-d-4: #15271a;
    --primary-l-1: #6bcb89;
    --primary-l-2: #93d9a6;
    --primary-l-3: #b8e6c3;
    --primary-l-4: #dcf3e1;
    --secondary: #036193;
    --secondary-d-1: #0f3e38;
    --secondary-d-2: #10332d;
    --secondary-d-3: #102724;
    --secondary-d-4: #0e1d1a;
    --secondary-d-5: #081210;
    --secondary-l-1: #39665e;
    --secondary-l-2: #5f837c;
    --secondary-l-3: #85a09b;
    --secondary-l-4: #adbfbb;
    --secondary-l-5: #d5dfdd;
    --blue: #38ADBD;
    --purple: #C897EE;
    --red: #F1838A;
    --yellow: #b3f2fa;
    --grey: #EFF4EF;
    --grey-d-1: #babeba;
    --grey-d-2: #888b88;
    --grey-d-3: #595b59;
    --grey-d-4: #2e2f2e;
    --greenlight: #DCE7E3;
    --bg-body: rgba(239,242,244,0.8);
    --text-body: #182945;
    --text-headline: #041C19;
    --border-primary: #80808040;
    --shadow-primary: #00000026;
    --white: #FFFFFF;
    --white-5: #ffffff0d;
    --white-10: #ffffff1a;
    --white-20: #ffffff33;
    --white-30: #ffffff4d;
    --white-40: #ffffff66;
    --white-50: #ffffff80;
    --white-60: #ffffff99;
    --white-70: #ffffffb3;
    --white-80: #ffffffcc;
    --white-90: #ffffffe6;
    --black: #000000;
    --black-5: #0000000d;
    --black-10: #0000001a;
    --black-20: #00000033;
    --black-30: #0000004d;
    --black-40: #00000066;
    --black-50: #00000080;
    --black-60: #00000099;
    --black-70: #000000b3;
    --black-80: #000000cc;
    --black-90: #000000e6;
    --space-4xs: clamp(0.33rem,calc(-0.03vw + 0.33rem),0.31rem);
    --space-3xs: clamp(0.41rem,calc(0.04vw + 0.4rem),0.44rem);
    --space-2xs: clamp(0.51rem,calc(0.16vw + 0.48rem),0.62rem);
    --space-xs: clamp(0.64rem,calc(0.35vw + 0.57rem),0.88rem);
    --space-s: clamp(0.8rem,calc(0.65vw + 0.67rem),1.24rem);
    --space-m: clamp(1rem,calc(1.11vw + 0.78rem),1.75rem);
    --space-l: clamp(1.25rem,calc(1.81vw + 0.89rem),2.47rem);
    --space-xl: clamp(1.56rem,calc(2.87vw + 0.99rem),3.5rem);
    --space-2xl: clamp(2rem,calc(4.44vw + 1.11rem),5rem);
    --space-3xl: clamp(2.25rem,calc(6.85vw + 0.88rem),6.88rem);
    --space-4xl: clamp(2.5rem,calc(8.15vw + 0.87rem),8rem);
    --header-space: var(--space-s);
    --btn-space: var(--space-xs) var(--space-s);
    --card-space: var(--space-s);
    --footer-space: var(--space-s) var(--space-m);
    --text-xs: clamp(0.75rem,calc(0.19vw + 0.71rem),0.88rem);
    --text-s: clamp(0.94rem,calc(0.09vw + 0.92rem),1rem);
    --text-m: clamp(1.13rem,calc(0vw + 1.13rem),1.13rem);
    --text-l: clamp(1.25rem,calc(0.37vw + 1.18rem),1.5rem);
    --text-xl: clamp(1.38rem,calc(0.56vw + 1.26rem),1.75rem);
    --text-2xl: clamp(1.5rem,calc(0.74vw + 1.35rem),2rem);
    --text-3xl: clamp(1.63rem,calc(1.11vw + 1.4rem),2.38rem);
    --text-4xl: clamp(1.75rem,calc(1.48vw + 1.45rem),2.75rem);
    --font1: "Poppins", serif;
    --font2: "Poppins", serif;
    --radius-xs: clamp(0.25rem,calc(0vw + 0.25rem),0.25rem);
    --radius-s: clamp(0.38rem,calc(-0.19vw + 0.54rem),0.5rem);
    --radius-m: clamp(0.63rem,calc(-0.19vw + 0.79rem),0.75rem);
    --radius-l: clamp(1rem,calc(-0.37vw + 1.32rem),1.25rem);
    --radius-xl: clamp(1.63rem,calc(-0.56vw + 2.11rem),2rem);
    --radius-full: 999rem;
    --shadow-xs: 0 1px 2px var(--shadow-primary);
    --shadow-s: 0 1.5px 3px var(--shadow-primary);
    --shadow-m: 0 2px 6px var(--shadow-primary);
    --shadow-l: 0 3px 12px var(--shadow-primary);
    --shadow-xl: 0 6px 48px var(--shadow-primary)
}

/*.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xs);
    padding: var(--space-xs) var(--space-s);
    background: var(--primary);
    color: #fff;
    font-size: var(--text-m);
    font-weight: 600;
    border-radius: var(--radius-m);
    border: 1px solid var(--primary-d-1);
    box-shadow: var(--shadow-m);
    transition: all 0.25s ease-in-out;
    outline: 0;
    cursor: pointer
}

.btn:hover {
    background: var(--primary-d-1);
    transform: translateY(-0.1rem)
}

.btn.small {
    font-size: var(--text-s);
    padding: var(--space-xs) var(--space-s)
}

.btn.large {
    font-size: var(--text-l);
    padding: var(--space-s) var(--space-m)
}

.btn.tertiary {
    background: var(--tertiary);
    border-color: var(--tertiary-d-1)
}

.btn.ghost {
    color: var(--dark-80);
    background: transparent;
    border-color: transparent;
    box-shadow: none
}

.btn.slight {
    color: var(--dark-80);
    background: var(--bg-surface);
    border-color: var(--border-primary);
    box-shadow: var(--shadow-s)
}

.btn.secondary {
    background: var(--secondary);
    border-color: var(--secondary-d-1)
}

.btn.ghost:hover {
    background: var(--dark-10)
}

.btn.slight:hover {
    background: var(--dark-5)
}

.btn.tertiary:hover {
    background: var(--tertiary-d-1)
}

.btn.secondary:hover {
    background: var(--secondary-d-1)
}

.btn:focus {
    outline: 4px solid var(--primary-l-3);
    outline-offset: 2px
}

.btn.no-bg {
    color: var(--dark-80);
    background: transparent;
    box-shadow: none;
    border-color: transparent
}

.btn.no-bg:hover {
    color: var(--dark)
}*/
html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, icon-degree
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

a {
    color: var(--secondary);
    text-decoration: none;
}

    a:hover {
        color: var(--primary);
        text-decoration: none;
        cursor: pointer;
    }

    a:focus {
        outline: 0px auto -webkit-focus-ring-color;
        outline-offset: 0px;
        text-decoration: none
    }

body {
    font-family: "Poppins", serif,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
    font-size: 16px;
    background: var(--bg-body);
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--text-body);
    line-height: 1.5;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

h1.hptitle {
    font-size: 3.3rem;
    font-weight: 800;
    color: #182945;
    line-height: 1.2;
    margin: 0px 0px 30px 0px;
    padding: 0;
}

h4.hpsubtitle {
    font-size: 1.2rem;
    color: #182945;
    line-height: 1.6;
    font-weight: 400;
    margin: 0px 0px 20px 0px;
    padding: 0;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    position: relative;
    font-weight: 600;
    background-position: left center;
    background-size: cover;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='903' height='40' viewBox='0 0 903 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M902.178 22.8675C902.615 24.825 896.457 21.5713 897.811 25.3276C898.422 26.9941 893.706 26.3063 891.173 25.6715C888.64 25.0366 886.806 23.7404 885.147 25.3805C883.793 26.6238 885.846 27.7083 886.981 28.7135C890.78 25.116 893.488 27.338 896.588 29.3748C893.488 30.8033 890.78 28.7135 888.073 29.3748C888.073 31.5969 895.016 32.0201 891.828 34.7976C890.575 35.8673 888.888 36.7236 886.93 37.2842C884.972 37.8448 882.809 38.0907 880.649 37.9984C874.928 37.9984 869.207 38.5539 863.487 38.8713C859.12 39.1094 856.281 36.2261 851.39 37.4429C850.037 37.8132 848.115 37.9455 846.412 38.4746C844.709 39.0036 842.569 40.1411 840.953 37.4165C839.862 35.5648 835.102 35.2209 832.219 37.4165C832.569 37.7339 833.268 38.0778 832.219 38.4216C832.219 38.4216 831.564 38.0513 831.259 37.8661C828.202 35.5648 824.01 36.0145 820.079 36.0674C805.057 36.2261 790.035 36.57 775.012 36.5435C773.353 36.5435 770.121 37.2313 769.117 35.4325C768.418 34.1628 772.523 34.9564 771.868 33.3427C756.453 38.3158 740.295 36.1203 722.347 35.988C725.154 34.8189 728.324 34.0074 731.665 33.6027C735.005 33.198 738.446 33.2086 741.78 33.6337C743.202 33.8863 744.667 34.0372 746.147 34.0834C748.461 33.9247 751.649 33.9512 751.431 32.2582C751.125 30.142 747.937 31.3059 746.016 31.4911C739.378 32.2053 732.915 33.1576 726.539 30.3801C724.356 29.4013 722.172 30.142 720.164 30.671C718.963 31.0939 717.6 31.3166 716.211 31.3166C714.823 31.3166 713.459 31.0939 712.259 30.671C710.913 30.1573 709.39 29.8377 707.808 29.7368C706.225 29.6359 704.626 29.7564 703.132 30.0891C698.493 30.5959 693.785 30.8351 689.071 30.8033C671.603 30.5388 653.917 31.7027 636.274 31.4117C633.854 31.6395 631.519 32.123 629.375 32.8401H629.069C622.038 32.6814 614.92 30.7239 607.933 33.1576C607.448 33.217 606.947 33.2021 606.474 33.1144C606.001 33.0266 605.572 32.8687 605.225 32.655C604.046 31.8614 605.225 31.253 606.142 30.7504C608.632 29.4807 601.426 24.6927 610.509 25.8302C611.511 25.8962 612.521 25.8962 613.523 25.8302L614.309 26.518C613.916 27.7877 612.081 28.2374 610.902 29.1632C620.16 31.4911 627.584 27.8935 635.576 26.1212C636.987 25.72 638.447 25.384 639.943 25.116C645.532 24.4018 646.668 25.116 645.27 29.1103C647.497 28.1316 653.568 29.5071 648.939 25.7244L651.733 24.3753C647.258 23.3654 642.422 23.0916 637.716 23.5817C610.815 24.0314 583.915 22.312 557.014 22.8146C549.847 22.5512 542.696 23.4651 536.315 25.4599C534.917 25.9625 531.948 27.2851 530.987 25.6979C529.284 23.3437 534.088 24.534 535.354 22.894C522.908 23.2643 510.812 21.201 498.934 24.005C497.944 24.3429 496.842 24.5421 495.708 24.5879C494.575 24.6336 493.438 24.5248 492.383 24.2695C489.851 23.3436 492.689 22.9469 493.344 22.3385L498.366 21.6242C495.702 20.1958 494.654 21.6242 493.257 22.2591C489.283 22.8675 485.309 23.5024 481.335 24.0843C477.361 24.6663 478.89 23.3966 479.632 22.3385C477.012 23.1884 474.281 23.9051 471.466 24.4811C468.846 24.8779 464.26 27.7877 464.26 22.8675C463.198 22.5935 462.017 22.5378 460.898 22.7088C455.614 24.6398 449.325 23.8992 443.91 25.3541C443.91 25.8037 443.91 26.2799 443.91 26.7296C443.474 26.7296 442.819 26.7296 442.688 26.7296C442.414 26.4578 442.307 26.1362 442.387 25.8215C442.467 25.5069 442.728 25.2195 443.124 25.0102C440.286 24.6398 439.936 26.9941 437.491 27.0735C435.351 24.0579 435.351 24.0579 432.12 26.0683C430.111 27.3115 427.753 26.9677 427.753 25.1424C427.753 23.3172 425.831 23.6082 424.434 23.6346C416.704 23.9256 408.975 24.1637 401.289 24.7721C396.922 25.1424 393.297 27.0735 387.751 24.7721C383.384 23.0262 376.179 23.8727 370.283 25.116C366.222 26.0154 361.2 23.2114 357.925 26.5444C354.65 29.8775 350.938 28.7929 346.833 28.1316C349.191 25.4863 353.471 26.4915 356.877 25.8302C348.973 21.4655 343.165 21.0687 333.383 24.1637C331.811 24.6663 330.501 24.0314 329.016 23.6346L328.142 23.1056C326.832 20.6984 324.78 22.1797 322.902 22.6559L321.199 23.4759C321.006 23.3459 320.802 23.2223 320.588 23.1056L321.985 22.0739C305.013 20.6342 287.714 21.911 271.809 25.7773C271.809 22.6823 275.521 23.423 277.005 22.3914C268.969 23.5932 260.688 24.0832 252.42 23.8462C242.157 23.2114 233.292 26.4915 223.903 25.407C220.235 25.0366 216.043 26.0947 212.418 24.1372C209.885 22.7617 208.794 24.1372 207.527 25.8831C204.339 30.3271 199.885 31.1736 193.728 28.7664C195.213 27.2057 197.745 28.0522 199.754 27.7877C201.763 27.5232 201.632 26.6238 201.676 25.6186C201.676 25.0366 202.549 24.3224 201.326 23.9521C200.972 23.8583 200.59 23.8093 200.203 23.8081C199.817 23.8069 199.434 23.8536 199.078 23.9452C198.723 24.0369 198.401 24.1715 198.135 24.341C197.868 24.5105 197.661 24.7112 197.527 24.9308C196.13 26.7031 194.252 27.5761 191.064 27.1528C190.846 26.756 190.584 26.3593 190.365 25.936L188.88 26.8619L191.064 27.1793C185.562 31.1736 181.369 31.4382 171.762 28.3697L170.976 27.8406C169.702 27.208 168.177 26.7894 166.552 26.6269C164.927 26.4644 163.26 26.5637 161.718 26.9148C157.873 27.6164 153.772 27.6164 149.927 26.9148C145.211 26.2534 144.294 26.756 143.901 29.6923C143.901 30.8297 142.241 31.1736 141.324 30.9356C135.473 29.4013 128.223 31.9937 123.07 28.2903C122.637 27.9998 122.077 27.7889 121.455 27.6819C116.127 32.1524 108.703 28.8458 102.415 29.56C97.062 30.0051 91.8593 30.9604 86.9994 32.3904C84.5976 33.1576 82.6326 33.9776 81.4972 31.3853C81.1041 30.4594 79.0953 30.2742 77.5232 30.5917C65.9508 33.0253 53.767 30.5917 42.2819 32.1524C36.6922 32.9724 31.1025 33.9512 25.4691 34.7976C18.7877 35.7764 13.1543 32.9195 6.90959 33.8983C7.17161 32.9989 7.47735 32.0995 7.78303 31.1207C6.56029 30.5388 5.59951 31.3059 4.59511 31.5704C3.59071 31.8349 1.75657 32.5492 0.883177 31.3323C0.271804 30.5388 1.36362 29.8774 2.32435 29.3484C6.14775 26.7914 10.5602 24.5819 15.4252 22.7881C14.3335 22.5501 12.8924 22.4972 13.1544 21.4391C13.246 21.2451 13.4126 21.0671 13.6405 20.9199C13.8683 20.7727 14.1508 20.6605 14.4645 20.5926C16.1239 20.4339 16.2113 21.3597 16.5606 22.0475C24.4212 22.6294 25.2944 17.1802 30.3601 15.4872C29.8144 15.0128 29.3185 14.518 28.8753 14.0059C28.3076 13.3181 27.1722 13.0007 26.6919 13.6884C23.8097 18.2118 20.3162 15.3814 16.9537 14.1117C16.1676 13.7943 14.6392 13.4504 14.6392 13.1858C14.9449 11.2548 9.35514 13.3181 10.7962 10.858C11.0345 10.501 11.4458 10.1962 11.9759 9.98365C12.5061 9.77114 13.1301 9.66096 13.7657 9.66764C16.9973 9.66764 17.172 11.1225 17.7397 12.4716C17.7397 12.7891 17.7396 13.1065 18.089 13.3975C19.8794 11.5987 27.478 11.5722 21.3206 7.234C25.6876 7.52498 28.9191 8.60954 32.1943 7.71015L32.9803 8.18629C32.9803 9.11213 34.9891 10.0115 33.679 10.8316C28.4387 14.3233 39.2687 12.4187 36.9105 14.8259C39.8364 15.0375 39.5308 13.6091 40.1421 12.4452C40.7535 11.2813 41.6705 9.7999 44.2034 10.6728C45.2514 11.0696 43.6794 12.0484 43.1553 12.7361C56.5619 10.4083 69.8374 8.42437 83.9426 10.6464C92.8949 12.0748 102.065 10.6464 111.149 10.2231C114.249 10.038 112.808 5.7262 118.747 7.57788C121.848 8.47727 126.913 6.30816 126.346 10.9638C126.346 11.8368 130.407 11.7839 132.459 11.1754C140.844 8.53018 149.927 9.11214 158.661 9.1915C173.634 9.63924 188.644 9.17843 203.466 7.81596C207.833 7.33981 213.03 8.42437 216.873 7.36626C225.869 4.90617 233.86 6.70495 242.114 8.42437C246.239 9.19346 250.652 9.19346 254.778 8.42437C256.212 8.0207 257.774 7.81059 259.355 7.80857C260.937 7.80655 262.5 8.01267 263.937 8.41267C265.374 8.81267 266.65 9.39699 267.678 10.1252C268.705 10.8535 269.459 11.7082 269.887 12.6303C269.598 11.2413 268.75 9.91651 267.418 8.77258C266.085 7.62865 264.309 6.70061 262.245 6.07009C266.175 4.82681 268.228 3.76871 272.551 6.28171C274.754 7.48556 277.486 8.27632 280.416 8.55805C283.346 8.83978 286.348 8.60037 289.058 7.86886C294.561 5.83201 299.845 6.17589 305.347 5.7791C307.661 5.62039 311.242 4.85326 311.854 6.75785C312.465 8.66244 307.487 7.65724 306.613 9.1915L311.286 9.93217C309.627 11.8103 306.002 10.3025 304.867 11.9426C312.072 11.4135 312.072 11.44 315.129 6.38752C315.251 6.09883 315.536 5.84525 315.935 5.67116C316.334 5.49707 316.822 5.41355 317.312 5.43522C324.562 5.01198 331.418 3.10739 339.147 3.55708C353.165 4.43002 367.27 2.57834 381.507 4.77391C387.548 5.43331 393.725 5.50475 399.804 4.98553C407.839 4.50938 415.481 4.6681 423.124 2.34026C424.188 2.12903 425.314 2.05793 426.427 2.13171C427.54 2.2055 428.614 2.42247 429.577 2.7681C430.541 3.11373 431.371 3.58004 432.013 4.13582C432.655 4.6916 433.093 5.32401 433.299 5.99073L435.831 4.40357C435.22 3.58354 435.569 3.37192 436.879 3.7158C444.676 2.803 452.653 2.59795 460.548 3.10739C465.352 3.10739 469.282 1.7054 473.649 2.02283C474.654 2.02283 476.444 1.78476 476.357 2.92222C476.357 3.31901 474.959 3.7158 474.173 4.11259H482.951C486.226 1.6525 489.851 0.0388858 494.96 2.12864C496.047 2.50773 497.268 2.72463 498.52 2.76143C499.773 2.79823 501.023 2.65386 502.165 2.34026C504.251 1.80918 506.497 1.54789 508.759 1.57314C522.341 2.86931 535.922 1.17635 549.503 1.75831C553.346 1.91702 555.311 2.36672 553.87 5.03843C552.342 4.76094 550.728 4.70495 549.158 4.87496C547.587 5.04498 546.105 5.43624 544.83 6.01718L549.197 8.90052L549.721 8.15984L550.682 8.90052H553.739V5.03843C554.7 5.03843 556.447 5.03843 556.49 5.03843C558.019 9.1915 563.434 7.41917 567.277 7.92177C567.277 8.76826 564.351 9.58829 566.316 10.0909C568.281 10.5935 568.106 8.76826 568.849 7.92177C571.469 7.39272 574.919 8.21275 576.447 5.99073C579.81 5.38231 582.692 7.36627 586.797 6.83721C583.74 4.6681 579.591 5.38232 576.578 4.19195C576.578 4.721 576.578 5.2765 576.272 5.80556C572.211 4.2184 568.587 3.29256 563.696 5.40877C560.901 6.62559 558.412 4.56229 557.102 2.208C572.255 -0.43726 587.365 1.1499 602.256 0.858919C602.955 2.68415 599.854 2.02283 599.854 3.10739C600.16 3.2661 600.465 3.55708 600.815 3.60999C603.566 3.92742 607.846 2.44607 607.758 6.04363C609.811 5.11779 611.776 8.2921 613.479 6.25525C613.728 5.97145 613.871 5.65799 613.898 5.33702C613.925 5.01605 613.836 4.69539 613.636 4.39769C613.436 4.09999 613.13 3.8325 612.741 3.61412C612.352 3.39574 611.888 3.23178 611.383 3.13384C610.378 2.86931 608.763 3.13384 608.282 1.7054C616.317 2.52543 623.741 0.0653384 631.602 0.806012C633.043 0.938275 634.964 0.80601 634.615 2.2609C634.266 3.7158 632.344 3.08094 631.252 3.55708C633.48 3.16029 637.453 5.83201 637.803 1.46733C637.803 0.647296 646.013 0.462126 650.336 2.02283C656.873 2.80216 663.615 2.69375 670.075 1.7054C672.989 1.6225 675.91 1.68442 678.809 1.89057C687.804 2.07574 696.669 3.39837 705.796 2.84287C706.801 2.84287 708.722 3.39837 708.897 3.90097C710.731 9.1915 716.364 6.54623 720.775 6.30816C720.543 6.32267 720.308 6.32267 720.076 6.30816C718.111 5.64684 714.836 7.26045 713.919 4.82681C717.674 4.50938 716.714 0.276958 721.43 0.964726C724.181 1.36152 728.504 1.09699 729.116 3.00158C729.727 4.90617 726.365 5.93782 723.351 6.36107C726.627 6.70495 729.334 7.65724 732.391 4.95907C733.919 3.60999 740.47 3.53063 743.352 6.54623C745.361 3.34546 747.239 5.01198 749.073 6.54623L747.981 7.07528H744.356C741.081 9.00632 738.985 5.01198 735.622 6.30816C739.291 10.038 743.439 9.16504 747.806 6.96947L748.898 6.44042L752.872 6.7314C752.872 3.39837 757.021 4.74745 759.553 4.53583C763.309 4.24485 767.632 5.46168 769.903 2.18155C770.602 1.22926 773.091 1.49378 774.838 1.57314C780.783 2.06868 786.834 1.81655 792.611 0.832465C794.664 0.409223 797.24 0.7002 797.677 2.07574C798.419 4.35066 794.838 3.2661 793.31 3.55708C787.476 4.3637 781.438 4.47154 775.536 3.87452C787.065 5.6733 798.812 3.87452 810.472 4.77391C822.13 5.58714 833.929 5.24764 845.408 3.7687C848.727 3.37191 852.395 3.98033 854.141 1.28216C854.141 0.938276 856.063 0.67375 856.893 0.832465C866.675 2.60479 877.243 1.01763 887.461 3.47773C883.662 7.15464 876.107 4.95907 871.871 8.08049C875.452 9.40312 879.251 8.95342 882.658 9.56183C884.448 9.90571 887.025 10.1173 886.763 11.7309C886.501 13.3446 884.011 12.8155 882.396 12.8949C876.195 13.2123 869.644 12.0484 863.88 15.0904C865.489 14.9738 867.118 15.1665 868.536 15.6412C869.954 16.1158 871.091 16.8485 871.784 17.7357C872.614 18.8203 874.448 18.9261 876.151 18.7938C885.326 18.4097 894.459 19.8392 902.178 22.8675ZM57.9592 13.08H57.3479L57.8719 13.2387L57.9592 13.08ZM179.535 26.7825C179.365 26.4057 178.986 26.076 178.46 25.8494C177.935 25.6228 177.296 25.5132 176.653 25.5392C175.387 25.5392 174.95 26.0683 175.299 26.8089C175.414 27.1053 175.704 27.3659 176.114 27.5414C176.525 27.7169 177.027 27.7951 177.526 27.7612C178.618 27.7348 179.666 27.629 179.622 26.7825H179.535ZM234.035 21.3068H241.284C240.194 20.8994 238.939 20.6837 237.659 20.6837C236.379 20.6837 235.124 20.8994 234.035 21.3068ZM225.301 10.7257C227.441 11.2548 229.013 10.9903 230.366 9.2973C228.008 9.05923 226.349 9.08568 225.301 10.6993V10.7257ZM233.467 21.3068C226.293 20.2531 218.807 20.2531 211.632 21.3068C218.835 22.2809 226.302 22.2899 233.511 21.3333L233.467 21.3068ZM249.974 19.9577L249.625 19.7725L249.319 19.9577H249.974ZM256.262 15.1698L257.485 14.6936L256.568 14.9053C256.568 14.9053 256.393 15.0904 256.306 15.1962L256.262 15.1698ZM260.629 14.1646C260.208 14.0364 259.723 14.0088 259.27 14.0872C258.817 14.1656 258.43 14.3443 258.184 14.5878C259.014 14.7201 259.843 15.1433 260.629 14.5878C260.542 14.5085 260.542 14.2175 260.455 14.191L260.629 14.1646ZM321.767 9.53538C321.199 9.11214 320.806 8.53018 320.369 8.53018C319.059 8.53018 318.972 9.19149 318.884 9.77345C318.797 10.3554 318.273 11.2019 319.889 10.9109C320.282 10.8316 320.762 10.0909 321.374 9.56183L321.767 9.53538ZM335.392 5.91137L338.055 5.59394V5.30296L335.392 5.91137ZM329.933 6.54623V6.89011L330.632 6.65204L329.933 6.54623ZM340.894 12.0484C338.972 8.45082 329.715 8.2392 324.256 12.0484C329.409 13.7413 335.261 10.4612 340.588 12.0748L340.894 12.0484ZM349.322 5.91137C349.584 6.12299 349.802 6.46687 350.152 6.49333C350.935 6.54775 351.727 6.54775 352.51 6.49333C351.942 6.14944 351.637 5.80556 351.244 5.75265C350.479 5.78811 349.727 5.8952 349.016 6.07009L349.322 5.91137ZM354.781 9.7999C352.466 10.5935 350.108 8.15984 347.837 10.1173C349.846 9.53538 352.248 12.8684 354.475 9.82636L354.781 9.7999ZM358.012 8.95342L357.707 8.58309L355.087 9.6941L358.012 8.95342ZM374.738 9.72055H375.174C375.31 9.6383 375.415 9.53897 375.48 9.42957L374.738 9.72055ZM373.69 10.1438L374.301 9.85281H373.995C373.761 9.93475 373.554 10.0424 373.384 10.1702L373.69 10.1438ZM373.69 14.0852L374.563 14.4556L375.349 13.9794C375.131 13.9794 374.912 13.7943 374.738 13.8207C374.255 13.8166 373.776 13.8799 373.34 14.0059L373.69 14.0852ZM363.515 21.73H362.816L363.165 21.9417L363.515 21.73ZM376.703 20.7248C374.214 20.4074 372.598 19.6138 370.808 20.3545C370.616 20.5422 370.49 20.7518 370.437 20.9702C370.385 21.1886 370.407 21.4112 370.502 21.6242C371.987 22.2326 373.777 22.2591 376.354 20.7513L376.703 20.7248ZM385.655 16.8099L384.956 16.6776C384.651 16.8892 384.17 17.1008 384.083 17.3389C383.996 17.577 384.301 17.9209 384.869 17.5241C385.035 17.2998 385.181 17.0702 385.306 16.8363L385.655 16.8099ZM391.114 9.747C391.089 9.44806 390.986 9.15342 390.808 8.87406C390.415 8.50373 390.022 8.63599 390.24 9.08568C390.459 9.53538 390.459 9.56183 390.764 9.77345L391.114 9.747ZM391.114 9.747C391.114 10.0115 391.114 10.3025 391.114 10.567C391.114 10.8316 389.76 11.9426 391.551 11.6251C392.38 11.5193 391.245 10.4877 390.808 9.85281L391.114 9.747ZM410.197 16.0163L409.804 15.3814C409.397 15.5381 408.974 15.6795 408.538 15.8047C408.854 15.931 409.191 16.0373 409.542 16.1221C409.542 16.1221 409.673 16.175 409.892 16.1221L410.197 16.0163ZM418.189 15.8576C418.189 15.6724 417.665 15.3021 417.49 15.3021C417.316 15.3021 416.66 15.6195 416.267 15.7782C415.874 15.9369 416.66 16.175 416.879 16.1485C417.226 16.114 417.563 16.0517 417.883 15.9634L418.189 15.8576ZM429.237 13.7678C429.237 13.7678 428.757 13.6091 428.626 13.7678C428.416 13.9058 428.252 14.0676 428.146 14.2439C428.378 14.2568 428.612 14.2568 428.844 14.2439C428.844 14.2439 428.801 14.0059 428.932 14.0059L429.237 13.7678ZM437.971 9.6941C438.801 8.66245 438.757 8.02758 436.486 8.05403C434.216 8.08048 432.731 7.52498 433.386 5.85846C432.25 5.85846 429.543 4.19195 431.071 6.70495C431.945 8.08048 431.901 9.35021 429.543 8.66244C422.076 6.44042 416.005 8.21275 410.023 11.3077C418.626 6.91657 428.364 11.0961 437.622 9.7999L437.971 9.6941ZM442.338 10.0909L437.971 9.72055C438.476 10.0252 439.119 10.2329 439.818 10.3176C440.517 10.4023 441.242 10.3603 441.901 10.1967L442.338 10.0909ZM455.439 5.19715C455.769 5.37902 456.119 5.54696 456.487 5.69975C456.644 5.61881 456.79 5.53035 456.924 5.43522C456.531 5.25005 456.225 5.06488 455.876 4.93262C455.526 4.80036 455.221 5.2236 455.046 5.30296L455.439 5.19715ZM460.81 9.11214C460.399 8.9448 459.931 8.83535 459.441 8.79181C458.951 8.74828 458.451 8.77176 457.978 8.86055C457.504 8.94934 457.07 9.10117 456.706 9.30491C456.343 9.50865 456.059 9.75913 455.876 10.038L458.627 10.3025L459.719 11.0167C459.719 11.0167 459.719 11.3077 460.068 11.3871C460.417 11.4664 460.592 11.3871 460.723 11.3871C461.596 10.7522 463.168 9.95862 460.417 9.21795L460.81 9.11214ZM484.086 8.39791C483.649 8.39791 483.213 8.13339 482.82 8.15984C482.427 8.1863 481.728 8.42437 481.684 8.55663C481.684 9.1915 482.296 9.27085 483.038 9.03278C483.276 8.86579 483.495 8.68901 483.693 8.50373L484.086 8.39791ZM493.606 8.39791C491.161 8.00112 493.082 5.46168 489.807 5.51458C489.556 5.53341 489.315 5.5834 489.097 5.66142C488.88 5.73944 488.692 5.84381 488.544 5.96798C488.397 6.09215 488.293 6.23346 488.24 6.38303C488.186 6.53261 488.185 6.68723 488.235 6.83721C488.235 9.08569 491.03 8.31856 493.213 8.53018L493.606 8.39791ZM518.41 7.92177C515.31 3.45128 509.371 6.54623 504.611 6.2288C503.607 6.2288 503.563 6.49333 503.781 10.0909C507.362 3.98033 513.519 9.85281 517.886 8.05403L518.41 7.92177ZM545.136 5.80556C540.146 7.05645 534.64 7.34286 529.371 6.62559C528.236 6.46687 530.856 3.98032 527.319 5.30296C525.747 5.91137 526.009 6.99592 526.271 7.94822C526.751 9.53538 528.542 8.84761 529.721 8.42437C532.678 7.68752 535.929 7.49433 539.066 7.86886C540.988 7.97468 544.437 8.71535 544.743 6.07009L545.136 5.80556ZM551.25 8.7418H549.809C549.896 9.21795 550.377 10.038 550.857 8.87406L551.25 8.7418ZM595.356 2.7106C594.131 2.35296 592.777 2.18735 591.419 2.22895C590.061 2.27054 588.742 2.51802 587.583 2.94867C588.707 3.35018 589.994 3.55307 591.298 3.53437C592.602 3.51567 593.872 3.27613 594.963 2.84287L595.356 2.7106ZM593.784 6.44042L591.906 5.85846C591.906 6.09654 591.382 6.36107 591.47 6.57269C591.557 6.78431 591.994 7.07528 592.256 7.31336L593.784 6.44042ZM601.295 7.84241H604.046C603.173 6.62559 602.212 7.04883 601.208 7.84241C599.112 8.39792 596.098 7.84241 595.094 9.77345C597.266 9.53048 599.271 8.90476 600.858 7.97467L601.295 7.84241ZM617.715 5.83201L617.06 5.38232L617.671 5.88492C617.802 6.1615 617.802 6.45482 617.671 6.7314C617.507 6.52122 617.39 6.29886 617.322 6.07009L617.715 5.83201ZM623.261 10.858V9.98507C622.868 9.98507 622.213 9.98507 622.169 10.1967C622.118 10.483 622.225 10.7715 622.475 11.0167C622.3 11.5193 622.693 11.3606 622.693 10.9903L623.261 10.858ZM624.527 3.82161C624.527 3.68935 624.527 3.50418 624.265 3.45127C624.003 3.39837 623.829 3.45127 623.61 3.45127C623.392 3.45127 623.61 3.76871 623.916 3.84806C624.222 3.92742 623.916 4.00678 624.134 3.95388L624.527 3.82161ZM638.327 28.5284V28.2903L637.846 28.4226L638.327 28.5284ZM682.258 7.36626C682.564 7.81596 683.787 8.02758 684.311 8.2392C685.577 8.2392 686.363 7.86886 686.014 7.39272C685.804 7.13836 685.509 6.91306 685.148 6.73097C684.788 6.54888 684.369 6.41394 683.918 6.33461C682.782 6.41397 681.429 6.81076 681.865 7.52498L682.258 7.36626ZM669.944 11.5193C671.996 10.6464 674.878 11.9955 677.28 9.87926C675.852 9.8129 674.418 9.93988 673.081 10.251C671.744 10.5621 670.538 11.0496 669.551 11.678L669.944 11.5193ZM660.424 24.4811L660.773 24.6663L661.122 24.4811H660.424ZM646.187 3.31901L647.454 2.97513L646.58 3.10739L646.187 3.31901ZM654.354 23.9785H652.65C652.825 24.5869 653.262 25.1424 653.961 24.1901L654.354 23.9785ZM694.573 23.9785C682.389 23.132 671.472 26.6238 660.031 28.3961L683.656 27.1793C683.656 26.9412 683.001 26.5973 683.132 26.4915C683.612 25.9096 684.136 26.2799 684.66 26.4915C688.032 26.0965 691.257 25.3347 694.18 24.243L694.573 23.9785ZM696.451 23.4495L694.922 23.9256C695.141 24.1372 695.971 24.5869 696.058 23.714L696.451 23.4495ZM706.844 9.53538C705.709 9.7999 704.006 9.90571 703.962 9.08568C703.918 8.26565 705.622 8.31856 706.801 8.63599C698.067 0.250504 694.922 8.87406 689.333 10.8316C694.355 12.1277 694.355 12.1277 695.665 9.87926C695.228 9.56183 694.573 9.19149 695.665 8.84761C695.665 8.84761 696.407 9.08569 696.844 9.21795C698.067 8.42437 695.054 6.94302 697.805 6.57269C700.556 6.20235 700.687 7.41917 701.429 8.66244C702.565 11.3606 703.831 11.4929 706.451 9.7999L706.844 9.53538ZM715.01 26.6502L714.486 26.8354L712.827 27.338L714.53 26.8883L715.01 26.6502ZM722.522 5.32941H722.915L724.88 3.82161C723.482 4.45647 722.172 4.61519 722.129 5.59394L722.522 5.32941ZM725.448 26.9677C725.448 26.756 725.055 26.5444 724.836 26.3328C724.618 26.1212 724.225 26.5973 723.963 26.756C723.701 26.9148 724.181 27.0999 724.268 27.0999C724.525 27.1556 724.787 27.1998 725.055 27.2322L725.448 26.9677ZM732.304 26.9677C732.304 26.9677 731.998 26.8354 731.823 26.756C731.649 26.6767 731.605 27.0206 731.823 27.0999C732.042 27.1793 732.173 27.2322 732.347 27.3115C732.522 27.3909 731.867 27.3645 731.867 27.2322L732.304 26.9677ZM733.876 10.4877C728.199 8.63599 722.565 9.56183 717.5 8.79471C722.26 9.77345 726.496 14.5614 733.483 10.8051L733.876 10.4877ZM758.2 8.53018L754.662 8.97988C755.162 9.12224 755.713 9.18483 756.263 9.16168C756.813 9.13853 757.345 9.0304 757.807 8.84761L758.2 8.53018ZM758.593 31.9937H757.938H757.326L757.894 32.1788L758.593 31.9937ZM766.628 6.01718H765.973L766.497 6.14944L766.628 6.01718ZM771.562 29.3748C770.924 29.2145 770.244 29.1249 769.554 29.1103C768.68 29.1103 766.409 28.8458 768.113 30.142C768.593 30.5123 770.34 30.142 771.475 30.142C771.169 30.2478 771.169 29.8775 771.169 29.6923L771.562 29.3748ZM772.785 8.60953C771.475 7.7895 770.296 8.45082 769.292 8.84761C770.209 9.42957 770.951 11.4929 772.742 9.87926C772.825 9.54655 772.701 9.20689 772.392 8.92697L772.785 8.60953ZM790.952 32.7872C790.602 32.4963 790.384 32.073 790.122 32.073C789.86 32.073 787.982 32.073 787.458 32.3111C786.934 32.5492 787.458 32.9724 788.332 32.9195C789.205 32.8666 789.642 33.1576 790.559 33.1047L790.952 32.7872ZM798.681 32.655L797.371 32.5227C797.371 32.5227 797.371 32.8401 797.371 32.8931C797.63 33.0802 797.923 33.2488 798.245 33.3956L798.681 32.655ZM807.939 8.84761C807.873 8.64765 807.721 8.46175 807.499 8.30855C807.276 8.15534 806.992 8.04021 806.673 7.97467C806.436 7.95033 806.193 7.96459 805.968 8.01599C805.743 8.0674 805.545 8.15409 805.394 8.26718C805.243 8.38027 805.144 8.51569 805.108 8.65952C805.072 8.80336 805.099 8.95045 805.188 9.08568C805.188 9.40311 806.105 9.64119 806.716 9.98507C806.891 9.95862 807.59 9.61474 807.546 9.2973L807.939 8.84761Z' fill='%23b3f2fa'/%3e%3c/svg%3e")
}
/*Added By Anuj*/
h1 span {
    font-weight: 800;
}

.content_home_page main, .etravia_main {
    margin: 0 auto;
    margin-top: 160px;
    padding-top: 0px;
    padding-bottom: 0px;
    clear: both;
}

    .content_home_page main.search-section, .etravia_main .search-section {
        padding-top: 0px;
        padding-bottom: 0px;
    }

.cs_section_heading {
    width: 100%;
    position: relative;
}


header {
    position: fixed !important;
    max-width: 1320px;
    width: 100%;
    top: 0px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 16px;
    padding: 15px 15px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1020 !important;
    transition: .3s;
}

    header.scrolled::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        backdrop-filter: blur(8px) !important;
        box-shadow: 0px 0px 8px 0px #0C4A4214;
        background-color: var(--bg-body);
        z-index: -1;
    }

    header .logo:hover dotlottie-player {
        opacity: 1
    }

    header nav ul {
        display: flex;
        align-items: center;
        padding: 0px 0px;
        margin: 0;
        justify-content: flex-end
    }

    header div.inner-nav ul li:not(.cta):not(.dropdown) {
        line-height: 39px;
        font-weight: 700
    }

    header nav ul li:not(.cta) a:not(.cta).nav-link {
        padding: 0 32px;
        line-height: 39px;
        background-position: center;
        color: rgba(42, 52, 62, 1);
        cursor: pointer;
    }

        header nav ul li:not(.cta) a:not(.cta).nav-link:hover, header nav ul li:not(.cta) a:not(.cta).nav-link:active, header nav ul li:not(.cta) a:not(.cta).nav-link.active, header nav ul li.active:not(.cta) a:not(.cta).nav-link, header nav ul li:not(.cta) a:not(.cta).nav-link:focus-visible {
            background-repeat: no-repeat;
            background-size: contain;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='169' height='39' viewBox='0 0 169 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M103.023 6.25395H102.992L102.954 6.13367H103.098L103.025 6.2339C103.024 6.24067 103.023 6.24736 103.023 6.25395Z' fill='%23b3f2fa'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M168.141 17.3039C168.347 17.3882 168.53 17.4636 168.496 16.839C167.251 14.8525 165.808 13.7738 164.334 13.7084C164.872 13.4806 165.4 13.1985 165.753 11.8076C164.714 10.7905 163.656 10.6863 162.613 10.5835C162.279 10.5506 161.946 10.5178 161.617 10.4553C162.34 9.24811 163.121 9.28255 163.897 9.31679C164.203 9.33029 164.508 9.34376 164.809 9.28112C164.875 9.26795 164.949 9.2769 165.025 9.28606C165.294 9.31872 165.585 9.35405 165.623 8.39903C165.666 7.328 165.303 7.07197 164.988 6.84982C164.943 6.81832 164.9 6.7875 164.858 6.75514C164.619 6.58121 164.369 6.52138 164.115 6.46052C163.695 6.36004 163.264 6.25675 162.848 5.63248C163.223 4.50927 163.737 4.29449 164.25 4.08042C164.817 3.84364 165.381 3.60771 165.753 2.14422C164.714 1.12709 163.656 1.02285 162.613 0.920079C161.744 0.834469 160.885 0.749883 160.057 0.139468C159.902 0.0191832 159.544 0.219658 159.544 0.480276C159.294 2.05243 158.832 2.14329 158.35 2.23796C158.206 2.26642 158.059 2.29522 157.916 2.36474C155.777 3.48557 153.578 3.74286 151.406 3.12654C150.474 2.83432 149.54 2.91794 148.607 3.00144C147.363 3.11269 146.123 3.22371 144.895 2.44493C145.995 2.89739 147.12 2.81566 148.208 2.20436C148.29 2.14079 148.404 2.16384 148.521 2.18756C148.81 2.24614 149.12 2.30882 149.021 1.0817C148.94 0.0392294 148.46 -0.181292 148.077 0.139468C147.001 0.885267 145.873 1.07635 144.765 0.700795C144.728 0.693918 144.689 0.685206 144.649 0.676247C144.338 0.606863 143.961 0.522709 143.845 1.16189C143.529 3.02272 142.998 2.97388 142.457 2.92416C142.275 2.90746 142.093 2.89067 141.917 2.94612C141.8 2.98593 141.664 2.95286 141.526 2.91927C141.109 2.81755 140.672 2.71109 140.672 4.61006L139.941 4.39247C139.606 3.25291 139.264 2.09763 138.897 4.46973C138.36 2.18431 137.14 2.24445 136.855 3.26688C136.374 4.99154 135.94 4.74819 135.45 4.47334C135.359 4.42231 135.266 4.3702 135.17 4.32939C135.732 4.00863 136.358 3.22678 136.244 1.78336C136.158 0.688608 135.674 0.539485 135.221 0.400123C135.077 0.355738 134.936 0.312343 134.812 0.239704C134.328 -0.0472342 134.165 0.795842 133.999 1.65188C133.864 2.35087 133.727 3.0585 133.412 3.16664C133.522 4.34715 133.811 4.27106 134.101 4.19477C134.265 4.15187 134.428 4.1089 134.56 4.2893C134.599 4.29926 134.639 4.3002 134.678 4.29209C134.491 4.33706 134.293 4.47391 134.094 4.61116C133.42 5.07594 132.739 5.54518 132.477 2.46498C132.444 2.08407 132.086 1.66308 131.899 1.66308C130.839 1.92544 129.798 1.63501 128.758 1.34492C128.129 1.16952 127.501 0.994245 126.869 0.941367C126.329 0.785137 125.785 0.738203 125.242 0.801035C124.038 1.55007 122.782 1.63223 121.563 1.0416C120.758 -0.141199 119.228 -0.000864583 119.228 0.620607C119.182 2.93205 118.807 2.63962 118.443 2.35632C118.286 2.2342 118.132 2.11378 118.007 2.20436C118.078 2.07913 118.167 2.0553 118.256 2.0315C118.424 1.98671 118.591 1.942 118.634 1.22203C118.689 0.27989 118.436 0.215958 118.193 0.154772C118.152 0.14435 118.111 0.134008 118.072 0.11942C117.351 -0.157055 116.649 0.154936 115.943 0.468526C115.217 0.791619 114.486 1.11641 113.726 0.801035C113.794 1.61575 113.981 1.70378 114.149 1.78292C114.204 1.80894 114.258 1.834 114.304 1.8836C114.398 1.95783 114.485 2.08208 114.557 2.24758C114.63 2.41308 114.687 2.6158 114.724 2.84142C114.761 3.06704 114.778 3.31005 114.773 3.55331C114.768 3.79656 114.741 4.03411 114.695 4.2492C114.52 5.10067 114.33 4.75053 114.13 4.38307C113.968 4.08436 113.8 3.77419 113.629 4.08882C113.641 2.07571 113.209 2.16105 112.776 2.24668C112.622 2.27702 112.469 2.30739 112.335 2.24445C112.291 2.21764 112.251 2.11013 112.213 2.00588C112.193 1.95424 112.174 1.90339 112.156 1.86355C112.156 1.51541 112.259 1.40464 112.369 1.28751C112.518 1.12809 112.678 0.956896 112.603 0.159516C111.752 0.227182 110.896 0.160832 110.038 0.0942587C108.099 -0.0561304 106.146 -0.207663 104.188 1.18194C104.433 2.96616 104.896 4.52987 105.417 3.60768C106.329 2.00388 107.004 2.70554 107.761 3.90839C107.818 3.50744 107.818 3.08645 107.818 2.6855C108.045 3.04976 108.306 3.17869 108.574 3.31117C108.971 3.50678 109.383 3.71012 109.722 4.69025C109.334 4.89364 109.005 4.60696 108.693 4.33525C108.389 4.07132 108.102 3.82153 107.794 4.04873C107.596 5.21558 107.227 5.27553 106.856 5.33569C106.692 5.36236 106.527 5.38907 106.378 5.5122C106.336 5.70386 106.31 5.96173 106.284 6.21899C106.223 6.82279 106.162 7.42319 105.906 7.15609C105.686 6.9275 105.794 6.61227 105.916 6.25806C105.997 6.02204 106.085 5.76872 106.085 5.5122C105.886 5.40661 105.665 5.4335 105.443 5.4605C104.865 5.53089 104.28 5.60199 104.074 3.32702H103.586C103.855 1.30222 103.488 0.961416 102.772 0.841131C101.679 0.650529 100.585 0.781921 99.491 0.913313C98.0538 1.08596 96.6166 1.2586 95.1795 0.700795C94.7579 0.68166 94.3393 0.879683 93.9506 1.28217C93.7377 1.51984 93.5048 1.62925 93.2713 1.60136C93.0378 1.57347 92.8104 1.40909 92.6078 1.12179C91.6556 -0.461957 90.9802 0.76094 90.3698 2.62536H88.7341C88.7786 2.53383 88.8338 2.44231 88.8889 2.35079C89.0149 2.1416 89.141 1.93241 89.141 1.72322C89.155 0.981761 88.9101 1.01152 88.7222 1.03436C88.6916 1.03807 88.6626 1.0416 88.6364 1.0416C88.1984 0.912129 87.784 1.1601 87.3551 1.41674C86.9871 1.63695 86.6084 1.86355 86.195 1.86355C84.7235 1.47747 83.237 1.63287 81.7841 2.32464C81.54 2.06403 81.4749 2.22441 81.5888 2.84588L81.126 4.02514C81.1282 3.99994 81.1305 3.97439 81.133 3.94849C81.1251 3.94849 81.1168 3.94671 81.1081 3.94341C81.0669 3.47689 80.9884 3.03479 80.8772 2.64296C80.7576 2.22176 80.6028 1.86836 80.4233 1.60641C80.2438 1.34447 80.0436 1.18004 79.8362 1.12412C79.6287 1.0682 79.4189 1.12209 79.2206 1.28217C78.0798 2.69536 76.9389 2.89934 75.7605 3.11005C75.4678 3.16238 75.1728 3.21513 74.8748 3.28692C73.742 3.68042 72.5909 3.62628 71.465 3.12654C69.8787 2.13167 68.3012 2.2333 66.7307 2.33448C65.6744 2.40253 64.6214 2.47037 63.571 2.20436C62.682 1.99403 61.8551 2.46324 61.0346 2.92875C60.5256 3.21755 60.0191 3.50492 59.5019 3.62773C59.4105 3.6113 59.3196 3.6746 59.2452 3.80654C59.1709 3.93848 59.1177 4.13065 59.095 4.34944C58.5284 8.15764 58.5253 8.15856 57.2044 8.55289L57.1825 8.55941C57.285 7.95746 57.4963 7.91504 57.7221 7.86971C57.9625 7.82143 58.2194 7.76985 58.3788 7.0358L57.5081 6.47447C57.5826 5.9422 57.8174 5.81323 58.0392 5.69139C58.3019 5.54707 58.5464 5.41277 58.4846 4.6301C58.3899 3.42921 57.912 3.62986 57.5057 3.80045C57.4237 3.83491 57.3445 3.86813 57.2721 3.88835C57.0303 3.95925 56.7908 3.99894 56.5525 4.03844C55.78 4.16647 55.0202 4.29241 54.2365 5.4721C53.7315 6.02648 53.1721 6.20792 52.626 5.99441C52.08 5.78089 51.5708 5.18161 51.1603 4.26925C50.4273 2.53644 50.0446 3.04404 49.4299 3.85933C49.369 3.94011 49.3058 4.02392 49.2397 4.10887C49.6243 4.58672 49.9553 5.29005 50.2036 6.15699C50.452 7.02393 50.61 8.02792 50.6639 9.08065C50.5841 8.3818 50.4436 7.73401 50.2521 7.18211C50.0606 6.63021 49.8228 6.18738 49.555 5.88423C49.2872 5.58109 48.9959 5.42487 48.7011 5.42641C48.4064 5.42794 48.1154 5.58717 47.8481 5.89309C47.0792 6.47596 46.2569 6.47596 45.4881 5.89309C45.4432 5.85514 45.3985 5.81713 45.3538 5.77915C43.863 4.51333 42.4118 3.28109 40.7842 5.0912C40.3706 5.55437 39.8727 5.4758 39.3692 5.39632C39.0009 5.33819 38.6296 5.27958 38.2858 5.432C35.5236 6.46457 32.7265 6.8138 29.9361 6.47447C29.7183 6.46643 29.4993 6.45156 29.2797 6.43664C27.8578 6.34009 26.4066 6.24155 25.0532 7.97804C24.6707 8.43913 23.9139 8.47922 23.9139 7.81766C23.9868 5.38571 23.561 5.41097 23.1001 5.43831C22.8923 5.45064 22.6774 5.46338 22.4978 5.25158C21.8214 4.39388 21.6587 5.28106 21.5025 6.13266C21.4032 6.67441 21.3064 7.20176 21.0818 7.25633C20.6415 7.33976 20.2 7.47475 19.7585 7.60976C18.5027 7.99378 17.2461 8.37805 16.0117 7.57708C13.3831 5.8931 10.9091 7.39666 8.41074 9.16084C8.43708 9.02022 8.47764 8.86354 8.519 8.70381C8.63093 8.27147 8.74866 7.81672 8.60604 7.59713C8.13403 6.93556 7.96314 8.05822 7.8492 8.94031C7.82529 9.12542 7.80891 9.31935 7.79291 9.50877C7.73265 10.222 7.6778 10.8713 7.24696 10.7446C7.443 9.9308 7.14999 9.76724 6.85191 9.60085C6.48176 9.39424 6.1038 9.18325 6.64475 7.71742C6.79503 7.33487 6.71097 6.92954 6.62412 6.51078C6.56987 6.24922 6.51454 5.98243 6.51454 5.71267L6.36806 5.35182C5.95477 5.81335 5.54522 5.58552 5.07119 5.32182C4.84515 5.19607 4.60444 5.06216 4.34167 4.99096C5.15143 7.31111 4.68457 8.00394 4.22236 8.68987C4.02959 8.97594 3.83763 9.26081 3.73943 9.66202C3.67434 9.44154 3.67434 9.20101 3.67434 8.96049C3.66301 8.85103 3.65253 8.74053 3.64209 8.63068C3.55504 7.71449 3.47151 6.83533 2.93377 6.83533C2.81532 6.83026 2.69902 6.91376 2.60022 7.07482C2.50143 7.23587 2.42479 7.46691 2.38038 7.73746C2.23764 8.72843 2.46505 8.75092 2.7009 8.77425C2.90878 8.79482 3.12323 8.81603 3.09654 9.50165C3.09654 9.6339 3.22049 9.79232 3.34692 9.9539C3.41213 10.0372 3.47801 10.1214 3.52786 10.2033C3.63753 10.3717 3.74796 10.5764 3.85838 10.781C4.3789 11.7457 4.89954 12.7107 5.34265 9.88254C5.43217 9.36131 5.64376 9.60188 5.74955 10.1231C5.83213 10.5113 5.92454 10.8862 6.02624 11.2458C5.66814 11.7325 5.42246 12.6288 5.17548 13.5299C5.05207 13.9802 4.92833 14.4316 4.79008 14.8338C4.64742 14.7617 4.49847 14.6969 4.34167 14.6544C4.43444 14.9202 4.51045 15.1646 4.57164 15.3901C4.29401 15.9958 3.94825 16.3662 3.45462 16.2176C3.44475 16.1385 3.436 16.0554 3.42718 15.9715C3.37784 15.5025 3.32635 15.0129 3.06398 15.1149C3.00552 15.1664 2.95288 15.2514 2.91042 15.363C2.86796 15.4745 2.83692 15.6094 2.81985 15.7565C2.79555 16.1554 2.84982 16.3658 2.93555 16.4988C2.93496 16.4988 2.93436 16.4987 2.93377 16.4987C2.81532 16.4937 2.69902 16.5772 2.60022 16.7382C2.50143 16.8993 2.42479 17.1303 2.38038 17.4009C2.31822 17.8324 2.32625 18.0803 2.3746 18.2245C1.80605 19.2712 1.27916 20.4518 0.80158 21.7507C0.62254 22.1516 0.419073 22.6528 0.533009 23.2542C0.677337 24.072 0.96245 23.739 1.15569 23.5133C1.18037 23.4844 1.20355 23.4574 1.22475 23.4346C1.27407 23.3818 1.32282 23.3026 1.37205 23.2225C1.50967 22.9988 1.65101 22.769 1.81885 23.0938C1.79781 23.3678 1.77677 23.6335 1.75614 23.894C1.72091 24.339 1.68687 24.7689 1.65607 25.1988C2.06331 24.9393 2.4566 25.0357 2.84919 25.2389C2.837 25.2964 2.82714 25.357 2.81985 25.4199C2.77878 26.0942 2.96217 26.2298 3.14254 26.3632C3.17665 26.3885 3.21066 26.4136 3.24302 26.4423C2.33638 27.8017 1.5141 29.4762 0.80158 31.4141C0.62254 31.815 0.419073 32.3162 0.533009 32.9176C0.677337 33.7354 0.96245 33.4024 1.15569 33.1767C1.18037 33.1478 1.20355 33.1208 1.22475 33.0981C1.27407 33.0452 1.32282 32.966 1.37205 32.886C1.50967 32.6622 1.65101 32.4324 1.81885 32.7573C1.79781 33.0312 1.77677 33.2969 1.75614 33.5574C1.72091 34.0024 1.68687 34.4323 1.65607 34.8622C2.23297 34.4945 2.78187 34.8412 3.34045 35.1939C3.90866 35.5527 4.48689 35.9179 5.11478 35.5439C5.60555 35.244 6.09454 34.9221 6.58259 34.601C7.13854 34.2351 7.69325 33.8701 8.24796 33.5391C9.21218 33.0063 10.2028 33.0878 11.1976 33.1696C12.4109 33.2695 13.6304 33.3698 14.8154 32.3563C15.1084 32.1157 15.4828 32.2561 15.556 32.9577C15.7553 34.8079 16.0917 34.3645 16.504 33.821C16.5295 33.7874 16.5553 33.7534 16.5814 33.7195C17.4871 32.6358 18.4566 31.9118 19.4542 31.5745C19.8532 31.3901 20.2768 31.5591 20.7011 31.7285C21.523 32.0564 22.3476 32.3854 23.0024 30.1511C23.1183 30.2322 23.2227 30.392 23.3035 30.6122C23.8836 32.3076 24.6062 32.2619 25.3279 32.2163C25.8009 32.1864 26.2735 32.1566 26.7052 32.6169C26.8761 32.7973 27.1854 32.5367 27.1854 31.6747C27.2586 29.4494 27.4295 29.0685 28.3084 29.5697C29.025 30.1015 29.7892 30.1015 30.5058 29.5697C30.793 29.3036 31.1037 29.2284 31.4065 29.3515C31.7094 29.4747 31.9937 29.7919 32.231 30.2714L32.3775 30.6723C34.1679 32.9978 34.9492 32.7973 35.9746 29.7702L35.5677 29.5296L35.8444 28.8279C35.8678 29.0129 35.894 29.1911 35.9197 29.3666C35.9387 29.4955 35.9573 29.6228 35.9746 29.7501C36.5687 30.0709 36.9186 29.4093 37.179 28.0661C37.204 27.8997 37.2426 27.7476 37.2923 27.6192C37.342 27.4907 37.4018 27.3886 37.4681 27.3192C37.5344 27.2497 37.6058 27.2144 37.6778 27.2153C37.7498 27.2162 37.821 27.2533 37.887 27.3244C38.0476 27.5222 38.0142 27.8494 37.9805 28.1798C37.9663 28.3182 37.9521 28.4571 37.9521 28.5874C37.9515 28.6434 37.9511 28.699 37.9507 28.754C37.9454 29.4468 37.9409 30.0455 37.5941 30.2313C37.476 30.2945 37.3481 30.274 37.2198 30.2533C36.9413 30.2085 36.6604 30.1634 36.471 30.973C37.6185 32.7973 38.4486 32.1558 39.0426 28.7879C39.2786 27.4647 39.4821 26.4222 39.9541 27.4647C40.4131 28.4727 40.9209 28.4256 41.4137 28.3799C41.6462 28.3583 41.8753 28.337 42.0944 28.427C43.0038 28.8542 43.8867 28.3879 44.7936 27.909C45.6317 27.4664 46.4901 27.0131 47.4086 27.2442C48.9495 27.4238 50.4928 27.0524 51.9904 26.1416C51.9001 26.3969 51.7654 26.509 51.6251 26.6258C51.3357 26.8668 51.022 27.128 51.022 28.7077C53.986 25.7775 57.2098 24.8099 60.3727 25.901L60.1123 26.6829C60.1523 26.7713 60.1903 26.865 60.2262 26.9635L60.5436 26.3421C60.6158 26.2676 60.6895 26.1606 60.763 26.0537C61.0456 25.6432 61.3264 25.2352 61.5202 26.6829L61.6829 27.0838C61.7364 27.1419 61.7886 27.2067 61.8402 27.2707C62.0557 27.5382 62.2603 27.7921 62.4967 27.4848C64.3197 25.1392 65.4021 25.4399 66.8751 28.7478C66.6761 28.9048 66.4612 28.9379 66.2463 28.9709C65.7755 29.0432 65.305 29.1155 65.0033 30.4919C65.081 30.5428 65.1581 30.5971 65.2343 30.6508C65.9081 31.1256 66.522 31.5582 67.0704 29.289C67.4506 27.7154 67.9572 27.9468 68.4681 28.1802C68.7773 28.3215 69.0881 28.4635 69.3735 28.2065C70.4721 27.2642 71.8149 26.6227 72.6287 27.9459C73.383 29.2188 73.9466 28.7831 74.5125 28.3457C74.7219 28.1838 74.9317 28.0217 75.1515 27.9459C76.4055 27.5422 77.6656 27.3536 78.9266 27.165C79.106 27.1381 79.2853 27.1113 79.4647 27.0838C79.4926 27.0817 79.5216 27.0772 79.5511 27.0727C79.7977 27.0349 80.0832 26.9912 80.0832 28.2265C80.0832 29.6098 80.5227 29.8704 80.897 28.9282C81.4993 27.4046 81.4993 27.4046 81.898 29.69C82.1058 29.6626 82.2324 29.2768 82.3587 28.8918C82.5095 28.4322 82.66 27.9736 82.9479 28.1263C82.8741 28.2849 82.8254 28.5027 82.8105 28.7412C82.7956 28.9797 82.8154 29.2234 82.8665 29.4294H83.0943V28.3869C83.55 27.8891 84.0388 27.7304 84.5285 27.5715C85.1235 27.3784 85.72 27.1849 86.2601 26.3822C86.4687 26.2525 86.6888 26.2948 86.8867 26.5024C86.8867 29.3786 87.3951 28.7243 87.8517 28.1367C87.987 27.9624 88.1178 27.7941 88.2295 27.7253C88.7541 27.2888 89.2632 26.7456 89.7513 26.1015C89.733 26.2079 89.712 26.3172 89.6912 26.4256C89.5554 27.1341 89.4264 27.8071 90.0687 27.4246C90.5624 27.1306 91.0561 26.8187 91.5499 26.5069C91.7967 26.351 92.0436 26.195 92.2904 26.0413C92.3445 25.9414 92.3958 25.8156 92.4475 25.6885C92.645 25.2039 92.8493 24.7025 93.2426 25.5602L92.3067 26.1015C92.2715 26.2345 92.2024 26.3541 92.1333 26.4739C91.9628 26.7694 91.7918 27.0656 92.1277 27.565C92.3243 27.7585 92.536 27.8409 92.7473 27.8062C92.9585 27.7715 93.1639 27.6206 93.3484 27.3645C94.8208 25.951 96.3111 26.1695 97.8267 26.3918C98.5896 26.5037 99.359 26.6165 100.136 26.5225C100.035 27.0517 99.8151 27.1921 99.6201 27.3165C99.3571 27.4842 99.1395 27.623 99.3218 28.6475C99.4836 29.7345 99.9511 29.0206 100.232 28.5919C100.262 28.5462 100.29 28.5038 100.315 28.4671C101.504 26.9554 102.836 26.2627 104.172 26.4623C106.709 26.2696 109.246 26.5081 111.782 26.7465C114.259 26.9793 116.735 27.2121 119.211 27.0437C120.088 26.6723 120.99 26.8798 121.824 27.6451L121.303 28.6676C121.901 30.6538 121.541 30.7635 121.126 30.8901C120.942 30.9463 120.747 31.0058 120.619 31.2336C120.88 28.2065 120.668 27.6652 119.626 28.2065C119.348 28.4096 119.076 28.6642 118.813 28.9683C118.462 29.2847 118.117 29.6779 117.772 30.071C116.653 31.3468 115.533 32.6223 114.215 31.2737C114.29 31.034 114.379 30.8364 114.467 30.6417C114.636 30.2666 114.801 29.9025 114.849 29.269L114.703 28.7478C114.516 28.7978 114.328 28.7978 114.141 28.7478C113.08 28.2074 113.212 29.4313 113.344 30.6571C113.422 31.3869 113.501 32.1175 113.327 32.4766L113.315 32.5051C113.146 32.8805 112.942 33.3335 113.157 33.92C113.221 34.082 113.301 34.2016 113.389 34.2682C113.477 34.3347 113.571 34.3459 113.661 34.3009C114.585 32.9918 115.522 33.3593 116.456 33.7258C116.838 33.8757 117.22 34.0254 117.6 34.0603H117.657C118.057 33.5168 118.492 33.1504 118.943 32.9778C120.604 33.0892 122.268 32.9191 123.927 32.7493C125.551 32.5832 127.172 32.4175 128.782 32.5167C129.66 32.5408 130.538 32.3595 131.402 31.9754C131.681 31.7233 131.979 31.632 132.274 31.7084C132.568 31.7849 132.852 32.0271 133.103 32.4165C133.327 32.7369 133.581 32.9057 133.84 32.9057C134.098 32.9057 134.353 32.7369 134.576 32.4165C134.609 32.3815 134.642 32.3452 134.675 32.3088C135.022 31.9275 135.393 31.5189 135.764 32.1959C136.876 34.1647 138.001 33.6607 139.154 33.1444C139.234 33.1087 139.314 33.0729 139.394 33.0379C139.47 33.0079 139.558 32.944 139.648 32.8778C139.981 32.634 140.358 32.3584 140.403 33.6193C140.439 34.7619 139.972 34.8711 139.565 34.9662C139.515 34.9779 139.466 34.9894 139.418 35.0026C139.143 34.9675 138.869 34.8532 138.605 34.6618C137.983 34.3396 137.342 34.3316 136.719 34.6383C136.097 34.945 135.506 35.56 134.983 36.446C135.75 36.469 136.499 36.5742 137.234 36.6772C139.701 37.0237 141.998 37.346 144.212 34.4412C144.276 35.0855 144.094 35.2234 143.927 35.3504C143.776 35.4645 143.637 35.5697 143.699 36.025C143.849 37.1172 144.265 36.9998 144.584 36.9099C144.663 36.8876 144.736 36.867 144.798 36.867C146.664 36.8804 148.53 36.769 150.397 36.6576C151.33 36.6019 152.263 36.5462 153.196 36.5061C153.288 36.5011 153.381 36.4914 153.473 36.4816C154.121 36.4134 154.781 36.3438 155.28 37.8694C155.337 38.0097 155.459 38.2904 155.459 38.2904C155.624 38.0697 155.556 37.849 155.492 37.6405C155.48 37.6028 155.469 37.5654 155.459 37.5286C155.996 35.8646 156.883 36.1252 157.086 37.5286C157.354 39.3644 157.699 38.8867 157.995 38.4763C158.032 38.4251 158.068 38.3749 158.103 38.3305C158.283 38.1037 158.476 37.9731 158.655 37.8517C158.792 37.7584 158.922 37.6705 159.031 37.5486C159.549 37.0244 159.944 37.5043 160.337 37.983C160.636 38.3464 160.934 38.709 161.285 38.6312C161.605 38.559 161.925 38.4706 162.245 38.3822C162.991 38.1759 163.738 37.9696 164.484 37.9696C164.886 38.0396 165.289 37.8532 165.654 37.4283C166.019 37.0035 166.334 36.3545 166.567 35.5439C166.915 34.3128 166.616 33.692 166.309 33.0519C166.09 32.5974 165.867 32.1333 165.867 31.4341C166.086 31.2169 166.305 31.3914 166.529 31.5707C166.823 31.805 167.127 32.0474 167.454 31.4341C167.417 31.3355 167.381 31.2362 167.344 31.1376C166.811 29.6932 166.327 28.3807 165.664 30.9329C165.625 30.7925 165.58 30.6501 165.534 30.5052C165.333 29.8641 165.116 29.1755 165.322 28.4069C165.378 28.1813 165.435 28.0291 165.494 27.9338C165.533 27.8974 165.57 27.8586 165.608 27.8172C165.765 27.741 165.936 27.9731 166.13 28.2368C166.228 28.371 166.333 28.5133 166.445 28.6275C166.917 29.1086 167.796 29.6298 167.682 28.3669C167.536 26.7185 167.859 26.8513 168.141 26.9673C168.347 27.0516 168.53 27.127 168.496 26.5024C167.924 25.5901 167.311 24.8693 166.671 24.3501C166.597 23.9895 166.454 23.6912 166.309 23.3885C166.09 22.934 165.867 22.4699 165.867 21.7707C166.086 21.5534 166.305 21.728 166.529 21.9073C166.823 22.1416 167.127 22.384 167.454 21.7707C167.417 21.672 167.381 21.5728 167.344 21.4742C166.811 20.0298 166.327 18.7173 165.664 21.2695C165.625 21.1291 165.58 20.9867 165.534 20.8418C165.351 20.2587 165.155 19.6363 165.276 18.9503C165.444 18.9086 165.584 18.7344 165.619 18.1491C165.773 18.0881 165.94 18.3157 166.13 18.5734C166.228 18.7076 166.333 18.8499 166.445 18.9641C166.917 19.4452 167.796 19.9664 167.682 18.7034C167.536 17.0551 167.859 17.1879 168.141 17.3039ZM116.349 17.4192C116.397 17.4208 116.445 17.4223 116.494 17.4237L116.412 17.5011C116.412 17.7818 116.339 17.9021 116.371 17.5212C116.363 17.4881 116.355 17.4541 116.349 17.4192ZM106.152 16.7285C106.098 16.8834 106.022 16.9406 105.906 16.8195C105.878 16.7909 105.856 16.761 105.838 16.7298C105.943 16.7288 106.047 16.7284 106.152 16.7285ZM85.904 17.1585C86.0249 17.0361 86.1438 16.8915 86.2601 16.7187C86.318 16.6828 86.3767 16.66 86.4357 16.6504C86.5124 16.9998 86.3888 17.3469 86.279 17.6549C86.2612 17.705 86.2437 17.754 86.2275 17.8018C86.2207 17.8018 86.2132 17.8066 86.2045 17.8121C86.1823 17.8261 86.1523 17.8451 86.1054 17.8018C86.0403 17.7417 86.0403 17.5212 86.0403 17.5212L85.904 17.1585ZM80.237 19.6309C80.2606 19.6812 80.2863 19.7217 80.3138 19.7523L80.303 19.7865C80.2785 19.7865 80.2867 19.967 80.2867 19.967C80.2434 19.9767 80.1998 19.9767 80.1565 19.967C80.1748 19.8438 80.2021 19.7299 80.237 19.6309ZM65.2787 16.5771C65.5516 16.7889 65.8227 17.1198 66.1014 17.5727C65.9448 17.6947 65.7875 17.4337 65.6348 17.1803C65.4801 16.9237 65.3302 16.6749 65.1905 16.8396C65.2198 16.7367 65.2492 16.6499 65.2787 16.5771ZM61.5026 16.8946C61.5085 16.9346 61.5144 16.9762 61.5202 17.0195L61.6829 17.4204C61.7364 17.4785 61.7886 17.5433 61.8402 17.6073C62.0557 17.8748 62.2603 18.1287 62.4967 17.8214C62.8324 17.3895 63.1429 17.0473 63.4354 16.7971C63.6481 17.1489 63.8111 17.653 63.8965 18.303L63.8395 18.3231C63.3458 17.715 62.828 18.0239 62.3141 18.3305C61.7944 18.6405 61.2787 18.9481 60.7959 18.303C61.0071 17.7036 61.2489 17.2355 61.5026 16.8946ZM60.1175 17.0039L60.1123 17.0195C60.1126 17.0203 60.113 17.0211 60.1134 17.0219C60.0642 17.2366 60.0209 17.4091 59.9821 17.441C59.731 17.6248 59.7571 17.2096 59.7822 16.8108C59.7872 16.7312 59.7922 16.6523 59.7949 16.5789L59.7953 16.5672C59.8015 16.3991 59.808 16.2231 59.8273 16.07C59.9764 16.1102 60.1254 16.155 60.2743 16.2043C60.2906 16.2638 60.3077 16.323 60.3256 16.3789L60.3178 16.4024L60.2587 16.4186C60.2149 16.5728 60.1747 16.7509 60.1376 16.915C60.1308 16.9452 60.1241 16.9749 60.1175 17.0039ZM58.8091 15.8659C58.4751 17.837 58.2627 17.9004 57.2044 18.2163L57.1825 18.2228C57.285 17.6209 57.4963 17.5785 57.7221 17.5331C57.9625 17.4848 58.2194 17.4333 58.3788 16.6992L57.5081 16.1379C57.5268 16.0038 57.5558 15.8953 57.5921 15.8061C57.9975 15.7928 58.4033 15.8127 58.8091 15.8659ZM50.5046 17.1996C50.4621 17.2151 50.4196 17.2302 50.3771 17.2449C50.5055 17.701 50.6026 18.2075 50.6639 18.7441C50.6367 18.2131 50.583 17.6944 50.5046 17.1996ZM3.9117 25.863C3.74675 25.783 3.58367 25.6835 3.42156 25.5816C3.42345 25.5994 3.42532 25.6172 3.42718 25.635C3.436 25.7188 3.44475 25.8019 3.45462 25.881C3.62316 25.9317 3.77446 25.922 3.9117 25.863ZM81.1081 3.94341C81.0492 3.921 80.974 3.82785 80.9003 3.73647C80.6945 3.48144 80.4999 3.24031 80.7017 4.59001C80.8645 5.63248 80.8564 6.59476 80.4169 6.07352C79.0253 4.38953 77.8941 5.73272 76.7792 8.07827C77.7558 6.05089 78.8111 6.43419 79.8767 6.82127C80.5603 7.06958 81.2482 7.31945 81.9224 6.93557L81.9875 6.85538C82.1422 6.07353 82.134 5.59238 81.7109 5.61243C81.2964 5.63207 81.0224 5.22857 81.126 4.02514L81.1168 4.04873C81.1141 4.01349 81.1112 3.97838 81.1081 3.94341ZM103.023 6.25395H103.562V3.32702H103.586C103.301 3.11672 103.001 3.07428 102.708 3.20313C102.415 3.33198 102.139 3.6285 101.902 4.06877L102.715 6.25395L102.813 5.69262L102.954 6.13367H102.829C102.845 6.49175 102.934 7.10647 103.023 6.25395ZM139.688 4.87067H139.085C138.765 5.63788 138.505 5.17093 138.24 4.6945C138 4.26213 137.755 3.82195 137.457 4.2893C138.13 7.07013 138.889 6.47497 139.688 4.87067ZM11.0556 9.42145H11.1695L11.1533 9.54174L11.0556 9.42145ZM43.2989 6.55466C43.0466 7.8377 42.7536 8.03818 42.3549 7.63723V7.61718C42.5502 6.39428 42.8594 6.37423 43.2989 6.55466ZM46.8878 14.4935L46.9529 14.6338H46.8308L46.8878 14.4935ZM48.1433 10.9758L48.3527 10.6444L48.1818 10.8047C48.1818 10.8047 48.1602 10.8979 48.1433 10.9758ZM48.6853 10.1848C48.7698 10.1254 48.8602 10.1463 48.9386 10.2434L48.9061 10.2634C48.9146 10.2739 48.9186 10.3392 48.9229 10.4076C48.9268 10.4702 48.9308 10.5354 48.9386 10.5642C48.826 10.8879 48.7085 10.773 48.59 10.6571C48.5543 10.6223 48.5186 10.5873 48.4829 10.5642C48.5287 10.3796 48.6009 10.2442 48.6853 10.1848ZM60.2334 6.3869C60.2636 6.50209 60.2959 6.6256 60.332 6.73509L60.2587 6.75514C60.2149 6.90943 60.1747 7.08746 60.1376 7.25155C60.0783 7.51388 60.0271 7.74056 59.9821 7.77756C59.731 7.96139 59.7571 7.54617 59.7822 7.14742C59.7872 7.06783 59.7922 6.9889 59.7949 6.91552L59.7953 6.90375C59.8115 6.46561 59.8296 5.97329 60.0716 5.97329C60.1252 5.97329 60.1752 6.16462 60.2334 6.3869ZM63.3675 3.74801L62.8711 3.98859L63.3675 3.52749V3.74801ZM61.8538 4.73034V4.46973L61.984 4.54991L61.8538 4.73034ZM60.7959 8.6396C61.8131 5.75276 63.5384 5.91314 63.8965 8.6396L63.8395 8.65965C63.3458 8.05159 62.828 8.36047 62.3141 8.66705C61.7944 8.97704 61.2787 9.28468 60.7959 8.6396ZM65.4824 4.04235C65.4908 4.07367 65.499 4.10698 65.5072 4.14043C65.5408 4.27675 65.575 4.41523 65.6218 4.42963C65.7678 4.47087 65.9152 4.47087 66.0612 4.42963C66.0244 4.33889 65.9935 4.24816 65.9657 4.16673C65.9138 4.01427 65.873 3.89443 65.8252 3.8683C65.7083 3.89034 65.5931 3.9489 65.4824 4.04235ZM66.4175 7.01C66.2566 7.14556 66.0948 6.98342 65.9333 6.8216C65.6834 6.57124 65.4342 6.32163 65.1905 7.17614C65.3302 7.0115 65.4801 7.26029 65.6348 7.51688C65.8911 7.94219 66.1604 8.38894 66.4175 7.01ZM67.0297 6.01338L67.0866 6.29405L66.5414 6.85538L67.0297 6.01338ZM70.2849 6.87542H70.2035L70.3419 6.6549C70.3297 6.73781 70.3103 6.81309 70.2849 6.87542ZM70.1222 6.97566L70.0082 7.19618L69.9513 7.21623C69.9829 7.11933 70.0215 7.03776 70.0652 6.97566H70.1222ZM70.171 10.4639L70.0082 10.1833L69.9431 10.1231C70.0244 10.0277 70.1135 9.97965 70.2035 9.98278C70.2202 9.97254 70.2389 10.0042 70.2587 10.0376C70.2777 10.0695 70.2976 10.1031 70.3175 10.1031L70.171 10.4639ZM72.1079 12.1479L72.2381 12.2481L72.173 12.2682C72.1497 12.4455 72.1226 12.6195 72.0916 12.7894C71.9858 13.0901 71.9288 12.8295 71.9451 12.6491C71.9567 12.5202 72.0058 12.4015 72.0536 12.2857C72.0727 12.2394 72.0916 12.1937 72.1079 12.1479ZM73.1984 6.2339C73.2314 6.44562 73.2507 6.66891 73.2553 6.89547L73.1902 6.91552C73.1366 6.76465 73.1335 6.73796 73.0994 6.45166C73.0973 6.4336 73.095 6.41451 73.0926 6.39428C73.0519 6.05347 73.1251 5.95324 73.1984 6.2339ZM73.2553 7.27504V7.51694C73.2553 7.56901 73.2383 7.66435 73.219 7.77275C73.1638 8.08175 73.0897 8.49693 73.3367 8.31884C73.4548 8.25759 73.3593 7.78688 73.2713 7.35356C73.2659 7.32721 73.2606 7.30101 73.2553 7.27504ZM76.7385 11.1656L76.8117 11.6467L76.7547 11.7269C76.7141 11.767 76.6896 11.7269 76.6896 11.7269C76.6241 11.6627 76.5614 11.5821 76.5025 11.4863C76.5837 11.3915 76.6625 11.2843 76.7385 11.1656ZM78.1708 11.1054C78.2033 11.1054 78.301 11.3861 78.301 11.5264L78.244 11.6066C78.1844 11.6736 78.1215 11.7208 78.0568 11.747C78.0161 11.767 77.8697 11.5866 77.9429 11.4663C77.9642 11.4312 77.9897 11.386 78.016 11.3394C78.0797 11.2262 78.1477 11.1054 78.1708 11.1054ZM80.246 9.94269C80.2704 9.8224 80.3599 9.94269 80.3599 9.94269L80.303 10.1231C80.2785 10.1231 80.2867 10.3035 80.2867 10.3035C80.2434 10.3133 80.1998 10.3133 80.1565 10.3035C80.1764 10.1699 80.2068 10.0473 80.246 9.94269ZM81.9875 6.87542L82.8014 7.15609L82.72 7.23628C82.597 7.36024 82.4619 7.39212 82.3317 7.32794C82.2014 7.26375 82.0817 7.10635 81.9875 6.87542ZM85.4381 3.82821C85.3696 3.71241 85.3043 3.58514 85.2428 3.4473L85.1696 3.52749C85.1788 3.51043 85.19 3.47238 85.2028 3.42893C85.2351 3.31922 85.2776 3.17503 85.3242 3.24683C85.365 3.30965 85.4026 3.38822 85.443 3.47267C85.4671 3.52297 85.4922 3.57535 85.5195 3.62773C85.4946 3.69983 85.4674 3.76687 85.4381 3.82821ZM85.9886 6.17157C86.08 6.20456 86.1672 6.28751 86.2438 6.41433L86.1705 6.49452C86.6323 7.00005 86.4406 7.53811 86.279 7.99153C86.2612 8.04158 86.2437 8.09059 86.2275 8.13842C86.2207 8.13842 86.2132 8.14316 86.2045 8.14864C86.1823 8.1627 86.1523 8.18167 86.1054 8.13842C86.0403 8.07827 86.0403 7.85775 86.0403 7.85775L85.8369 7.31647L85.3242 7.11599C85.3583 6.90467 85.4112 6.71484 85.479 6.56043C85.5468 6.40602 85.6277 6.29095 85.7159 6.22366C85.8041 6.15637 85.8973 6.13857 85.9886 6.17157ZM90.4633 5.77889C90.5021 5.8254 90.5417 5.87305 90.5814 5.87305L90.5082 5.95324C90.4713 6.09366 90.4305 6.22763 90.3861 6.35419C90.2478 6.53462 90.1338 6.47447 90.1338 5.99334C90.142 5.8931 90.2722 5.71267 90.3454 5.69262C90.3829 5.68235 90.4226 5.72999 90.4633 5.77889ZM92.0707 4.78883C92.1091 5.26105 92.1477 5.73591 92.3555 5.87305L92.2823 5.97329C92.1823 5.93388 92.0754 5.93926 91.9711 5.94451C91.6509 5.96063 91.3545 5.97555 91.3545 4.69025C91.3452 4.57658 91.3455 4.4594 91.3554 4.34604C91.3654 4.23268 91.3847 4.1256 91.4122 4.03149C91.4397 3.93738 91.4748 3.85829 91.5153 3.79916C91.5558 3.74003 91.6008 3.70214 91.6475 3.68787C91.9795 3.66606 92.025 4.22557 92.0707 4.78883ZM95.2775 3.95208C95.9322 3.56443 96.5803 3.18063 96.978 5.5122L96.8803 5.61243C96.5636 6.14304 96.1963 5.79287 95.8264 5.44026C95.246 4.88694 94.6593 4.32762 94.2517 7.15609C94.211 4.42963 94.2192 4.22915 94.4063 4.22915C94.683 4.30417 94.9809 4.12773 95.2775 3.95208ZM99.0207 4.52986C100.003 5.07346 101.029 4.8564 101.959 3.90839L101.885 4.10887C101.836 5.83705 101.352 5.65833 100.99 5.52476C100.932 5.50338 100.877 5.48316 100.827 5.4721C100.243 5.18825 99.6369 5.33467 99.0858 5.89309L99.0697 5.91659C98.8501 6.23795 98.5302 6.70613 98.4428 5.53224C98.394 4.81053 98.3452 3.98858 98.6382 3.52749C99.0477 2.90477 99.0143 3.39621 98.9811 3.88665C98.9608 4.18566 98.9405 4.48431 99.0207 4.52986ZM110.584 1.19781C110.837 1.16629 111.089 1.2918 111.317 1.56284L111.244 1.66308C111.041 1.99143 110.804 2.17297 110.561 2.18714C110.318 2.20131 110.078 2.04755 109.869 1.74327C110.085 1.41689 110.331 1.22933 110.584 1.19781ZM110.674 3.94849L111.024 4.38953L110.74 5.0511C110.725 4.99644 110.707 4.93811 110.689 4.87888C110.647 4.74259 110.604 4.60157 110.593 4.48977C110.584 4.40494 110.608 4.30888 110.632 4.21051C110.653 4.12291 110.674 4.03348 110.674 3.94849ZM112.937 5.45205H112.424L112.343 5.55229C112.047 6.25717 111.673 6.73138 111.269 6.91552C111.398 5.90446 111.706 5.79285 112.013 5.68164C112.15 5.63188 112.287 5.5822 112.408 5.45205C112.595 4.85063 112.774 4.52987 112.937 5.45205ZM115.362 3.58763L115.484 3.92844L115.473 3.95699L115.362 3.58763ZM116.518 7.0759V7.73746L116.412 7.8377C116.412 8.11837 116.339 8.23865 116.371 7.85775C116.325 7.67194 116.305 7.45327 116.314 7.23628C116.322 7.0759 116.444 7.0759 116.518 7.0759ZM116.754 2.40483L116.68 2.50507C116.663 2.5219 116.663 2.52107 116.665 2.50999C116.667 2.49467 116.673 2.45978 116.64 2.42488C116.583 2.36474 116.542 2.12417 116.583 2.12417C116.596 2.12417 116.609 2.11971 116.622 2.11526C116.647 2.10635 116.672 2.09744 116.705 2.12417C116.754 2.16426 116.754 2.3046 116.754 2.40483ZM127.785 5.61021C127.68 5.4853 127.553 5.33406 127.512 5.0912L127.439 5.21148C127.358 4.6702 127.61 4.36949 127.821 4.30935C127.906 4.36946 127.984 4.47173 128.051 4.60973C128.118 4.74773 128.173 4.91847 128.212 5.11124C128.277 5.4721 128.131 5.75276 127.895 5.75276C127.867 5.70667 127.828 5.66058 127.785 5.61021ZM125.722 7.97734C125.54 7.97876 125.367 7.98011 125.217 8.23865L125.144 8.35894C125.328 7.88266 125.553 7.51323 125.802 7.27744C126.051 7.04165 126.318 6.94541 126.585 6.99571C126.312 7.97273 126.006 7.97512 125.722 7.97734ZM121.026 1.76331L120.79 2.02393L120.863 1.86355L121.026 1.76331ZM129.024 17.5834C129.282 17.5763 129.543 17.6064 129.807 17.681L129.734 17.8815C129.697 17.9373 129.66 17.992 129.623 18.0455C129.498 18.0535 129.318 17.8877 129.024 17.5834ZM131.557 6.39428C131.565 7.01575 131.882 6.93556 132.094 6.73509L132.021 6.93557C131.532 8.2186 131.296 8.11837 131.085 6.07352C131.064 5.93463 131.047 5.79617 131.029 5.66194C130.929 4.88555 130.847 4.25048 130.409 4.48977C130.116 4.6503 130.174 5.08628 130.235 5.54263C130.281 5.88415 130.328 6.23709 130.23 6.49452C130.149 6.39428 130.011 6.21385 130.011 6.21385C129.823 6.45425 129.912 6.71171 129.991 6.93902C129.998 6.95814 130.004 6.97705 130.011 6.99571C129.767 8.69975 129.767 8.69974 128.831 7.71742C129.129 7.29256 129.39 6.45335 129.649 5.62124C130.293 3.5478 130.924 1.51842 132.086 6.05347C131.866 5.8129 131.549 5.77281 131.557 6.39428ZM135.089 3.54754H135.016L134.942 3.74801C134.948 3.19575 135.085 2.98799 135.262 2.7193C135.323 2.62711 135.389 2.52775 135.455 2.40483L135.089 3.54754ZM135.198 6.4668C135.824 6.52596 136.476 6.5876 137.132 7.4568L137.058 7.69737C136.137 9.71171 135.472 8.48392 134.848 7.33087C134.59 6.85438 134.339 6.39066 134.08 6.17376C134.439 6.39504 134.814 6.43045 135.198 6.4668ZM141.005 6.31409L141.664 5.97329L141.591 6.21385C141.505 6.35239 141.406 6.43433 141.304 6.45188C141.201 6.46942 141.098 6.42199 141.005 6.31409ZM143.113 4.06877H143.235L143.211 4.16901L143.113 4.06877ZM143.795 6.10811C143.968 5.81571 144.166 5.48094 144.383 6.03343L144.309 6.274C144.367 6.48614 144.39 6.74356 144.374 6.99571C144.127 7.90402 143.987 7.27501 143.861 6.71055C143.817 6.51506 143.776 6.32731 143.732 6.21385C143.752 6.18047 143.774 6.14462 143.795 6.10811ZM150.852 5.80532C150.893 5.92143 150.921 6.06231 150.934 6.21385L150.861 6.55466C150.869 6.79523 150.738 7.05585 150.706 7.0759C150.668 6.98902 150.624 6.91106 150.581 6.83681C150.497 6.68831 150.421 6.55466 150.421 6.39428C150.405 6.29179 150.399 6.18032 150.406 6.07131C150.413 5.9623 150.431 5.85968 150.459 5.77397C150.488 5.68826 150.525 5.62256 150.566 5.5836C150.608 5.54465 150.654 5.53384 150.698 5.55229C150.757 5.60195 150.81 5.68921 150.852 5.80532ZM33.6258 28.7623C33.7237 28.934 33.7945 29.1839 33.8261 29.4695H33.8424C33.8505 30.111 33.6552 30.1912 33.4518 30.2112C33.3587 30.2369 33.2651 30.1776 33.1886 30.0446C33.1121 29.9116 33.058 29.7141 33.0367 29.4895C32.9716 28.9282 33.053 28.5272 33.289 28.5272C33.4089 28.5075 33.5279 28.5906 33.6258 28.7623ZM44.658 24.8474C44.8965 24.8474 45.1304 25.0109 45.3334 25.3196H43.9825C44.1855 25.0109 44.4194 24.8474 44.658 24.8474ZM39.8076 25.3196C41.1446 24.5211 42.5397 24.5211 43.8767 25.3196L43.8848 25.3397C42.5414 26.0647 41.1499 26.0579 39.8076 25.3196ZM46.8878 24.1569L46.9529 24.2972H46.8308L46.8878 24.1569ZM48.1433 20.6393L48.3527 20.3078L48.1818 20.4681C48.1818 20.4681 48.1602 20.5614 48.1433 20.6393ZM48.6853 19.8482C48.7698 19.7888 48.8602 19.8097 48.9386 19.9068L48.9061 19.9269C48.9146 19.9373 48.9186 20.0026 48.9229 20.0711C48.9268 20.1336 48.9308 20.1989 48.9386 20.2276C48.826 20.5513 48.7085 20.4364 48.59 20.3205C48.5543 20.2857 48.5186 20.2507 48.4829 20.2276C48.5287 20.043 48.6009 19.9076 48.6853 19.8482ZM70.171 20.1273L70.0082 19.8467L69.9431 19.7865C70.0244 19.6911 70.1135 19.6431 70.2035 19.6462C70.2202 19.636 70.2389 19.6676 70.2587 19.701C70.2777 19.7329 70.2976 19.7665 70.3175 19.7665L70.171 20.1273ZM67.9818 25.6404H68.112L68.0469 25.8008L67.9818 25.6404ZM70.1973 24.6111C70.3107 24.7056 70.4332 24.8078 70.5698 24.8786L70.5046 24.8986C70.0245 26.0413 69.6908 26.0213 69.4141 25.5602C69.3964 25.3987 69.3923 25.23 69.4021 25.0645C69.4119 24.899 69.4354 24.7402 69.4711 24.5979C69.7065 24.2019 69.9257 24.3847 70.1973 24.6111ZM72.1079 21.8113L72.2381 21.9116L72.173 21.9316C72.1497 22.1089 72.1226 22.2829 72.0916 22.4528C71.9858 22.7536 71.9288 22.4929 71.9451 22.3125C71.9567 22.1836 72.0058 22.0649 72.0536 21.9491C72.0727 21.9029 72.0916 21.8571 72.1079 21.8113ZM76.7385 20.829L76.8117 21.3101L76.7547 21.3903C76.7141 21.4304 76.6896 21.3903 76.6896 21.3903C76.6241 21.3261 76.5614 21.2455 76.5025 21.1498C76.5837 21.0549 76.6625 20.9478 76.7385 20.829ZM78.1708 20.7689C78.2033 20.7689 78.301 21.0495 78.301 21.1899L78.244 21.27C78.1844 21.337 78.1215 21.3842 78.0568 21.4104C78.0161 21.4304 77.8697 21.25 77.9429 21.1297C77.9642 21.0947 77.9897 21.0494 78.016 21.0028C78.0797 20.8896 78.1477 20.7689 78.1708 20.7689ZM119.325 30.6122V30.7926L119.236 30.7124L119.325 30.6122ZM123.508 27.8657L123.443 27.7253H123.573L123.508 27.8657ZM121.995 27.3444H122.312L122.239 27.5048C122.109 28.2265 122.027 27.8055 121.995 27.3444ZM125.173 29.3361C126.678 28.1101 128.182 26.8853 129.807 27.3444L129.734 27.5449C129.189 28.3722 128.588 28.9495 127.96 29.2489C127.946 29.2256 127.931 29.1998 127.917 29.1739C127.834 29.0222 127.752 28.872 127.675 29.2489C127.663 29.2883 127.686 29.371 127.713 29.4663C127.741 29.5654 127.773 29.6782 127.773 29.7702L123.37 30.6924C123.976 30.3104 124.575 29.8232 125.173 29.3361ZM129.872 27.3043L130.157 26.9435L130.084 27.144C130.068 27.8055 129.913 27.4647 129.872 27.3043ZM133.518 29.5096L133.616 29.3692L133.526 29.5497L133.209 29.8905L133.518 29.5096ZM135.491 29.2767C135.526 29.3877 135.561 29.4988 135.561 29.6098L135.488 29.8103C135.438 29.7857 135.389 29.7522 135.341 29.71C135.325 29.71 135.235 29.5697 135.284 29.4494C135.298 29.416 135.313 29.364 135.329 29.3098C135.371 29.1688 135.418 29.0128 135.447 29.1287C135.459 29.178 135.475 29.2273 135.491 29.2767ZM136.749 29.4494C136.782 29.5096 136.839 29.6098 136.839 29.6098L136.779 29.7558C136.77 29.7415 136.76 29.7265 136.749 29.71C136.708 29.6499 136.716 29.3893 136.749 29.4494ZM141.738 33.4188L141.607 33.5592L141.502 33.4188H141.738ZM143.78 31.2336C143.909 31.2447 144.036 31.3126 144.155 31.4341L144.081 31.6747C144.081 31.7811 144.081 31.9682 144.106 32.0174C144.043 32.0248 143.972 32.0516 143.901 32.0783C143.735 32.1405 143.571 32.2022 143.512 32.0155C143.236 31.1633 143.518 31.2013 143.704 31.2263C143.733 31.2301 143.759 31.2336 143.78 31.2336ZM147.704 33.7538C147.723 33.842 147.744 33.9381 147.768 34.0202L147.695 34.2608C147.609 34.281 147.545 34.2349 147.483 34.1894C147.421 34.1447 147.36 34.1006 147.28 34.1205C147.117 34.1606 147.019 33.8398 147.117 33.6594C147.215 33.479 147.565 33.479 147.613 33.479C147.644 33.479 147.671 33.6053 147.704 33.7538ZM148.964 33.8198L149.209 33.92L149.127 34.4813C149.067 34.3701 149.013 34.2423 148.964 34.1004V33.8198Z' fill='%23b3f2fa'/%3e%3c/svg%3e ")
        }

    header .designbox {
        background-size: cover;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='288' height='256' viewBox='0 0 288 256' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='-66' y='239' width='93.0278' height='93.0278' fill='%23F1838A'/%3e%3crect x='-46' y='-70' width='89.0278' height='89.0278' rx='44.5139' stroke='%2338ADBD' stroke-width='4'/%3e%3crect x='244.859' y='-69.3755' width='93.0278' height='93.0278' rx='46.5139' fill='%23C897EE'/%3e%3c/svg%3e ")
    }

    header nav ul li .dropdown-toggle {
        padding-right: 42px !important;
        font-weight: 700;
        margin-right: 0px
    }

    header nav ul li.nav-item.dropdown.open .dropdown-toggle::before {
        position: absolute;
        content: "";
        z-index: 9999;
        bottom: -25px;
        right: 9px;
        width: 24px;
        height: 16px;
        background-size: contain;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 14L8.8 2.26667C10.4 0.133334 13.6 0.133333 15.2 2.26667L24 14H0Z' fill='white'/%3e%3c/svg%3e ")
    }

    header nav ul li.nav-item.dropdown .dropdown-toggle::after {
        position: absolute;
        content: "";
        border: 0;
        top: 50%;
        right: 4px;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background-size: cover;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='33' height='32' viewBox='0 0 33 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' width='32' height='32' rx='16' fill='%23DCE7E3'/%3e%3crect x='4.5' y='4' width='24' height='24' rx='12' fill='white'/%3e%3cpath d='M19.6207 14.4829L16.6471 17.4563C16.6081 17.4953 16.5552 17.5172 16.5001 17.5172C16.4449 17.5172 16.392 17.4953 16.353 17.4563L13.3794 14.4829' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ")
    }

    header nav ul li.nav-item.dropdown.open .dropdown-toggle::after {
        transform: rotate(180deg) translateY(50%)
    }

    header nav ul.dropdown-menu {
        position: fixed !important;
        width: 100%;
        max-width: 1178px;
        top: 100px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 0;
        border: 0;
        border-radius: 24px;
        box-shadow: 0px 32px 56px 0px #06453D1A
    }

        header nav ul.dropdown-menu [class*="col-"] {
            padding: 24px 12px
        }

            header nav ul.dropdown-menu [class*="col-"] p {
                font-weight: 400;
                font-size: 13px;
                white-space: wrap;
                padding: 0 12px;
                margin-top: -7px;
                margin-bottom: 7px
            }

            header nav ul.dropdown-menu [class*="col-"]:first-child {
                background-color: var(--bg-body);
                padding-left: 24px;
                padding-right: 0;
                border-top-left-radius: 24px;
                border-bottom-left-radius: 24px
            }

            header nav ul.dropdown-menu [class*="col-"]:last-child {
                padding-left: 0;
                padding-right: 24px
            }

        header nav ul.dropdown-menu h6 {
            font-size: var(--text-xs);
            color: var(--primary);
            margin-bottom: 7px;
            padding: 0 12px;
            font-weight: 500;
        }

        header nav ul.dropdown-menu .dropdown-item {
            font-weight: 600;
            color: var(--text-body);
            padding: 0;
            text-decoration: none;
            text-decoration-line: none;
            display: block;
            line-height: 39px;
            background-position: center;
            padding: 0 12px;
            background-size: cover;
            background-repeat: no-repeat
        }

.ui-state-default {
    line-height: 1.2;
}

header nav ul.dropdown-menu .dropdown-item:hover, header nav ul.dropdown-menu .dropdown-item.active {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='170' height='28' viewBox='0 0 170 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M103.622 5.03361H103.591L103.552 4.94941H103.697L103.624 5.01958C103.623 5.02432 103.622 5.029 103.622 5.03361Z' fill='%23b3f2fa'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M169.04 12.7687C169.246 12.8277 169.43 12.8805 169.396 12.4433C168.145 11.0527 166.696 10.2976 165.215 10.2519C165.755 10.0924 166.286 9.89489 166.641 8.92127C165.597 8.20927 164.534 8.13629 163.486 8.06435C163.15 8.04132 162.816 8.01839 162.485 7.97463C163.212 7.12957 163.996 7.15367 164.776 7.17764C165.083 7.18709 165.39 7.19652 165.692 7.15268C165.758 7.14345 165.833 7.14972 165.908 7.15613C166.179 7.17899 166.471 7.20373 166.51 6.5352C166.553 5.78546 166.188 5.60624 165.872 5.45073C165.827 5.42868 165.783 5.40711 165.741 5.38445C165.501 5.2627 165.25 5.22082 164.994 5.17822C164.573 5.10788 164.139 5.03557 163.722 4.59857C164.098 3.81231 164.615 3.66197 165.13 3.51212C165.7 3.34636 166.267 3.18121 166.641 2.15674C165.597 1.44474 164.534 1.37177 163.486 1.29983C162.613 1.2399 161.75 1.18069 160.918 0.753392C160.762 0.66919 160.403 0.809525 160.403 0.991961C160.151 2.09249 159.687 2.1561 159.204 2.22236C159.058 2.24229 158.911 2.26245 158.768 2.31111C156.619 3.09571 154.41 3.27582 152.227 2.84439C151.291 2.63982 150.352 2.69836 149.415 2.75681C148.166 2.83469 146.92 2.9124 145.687 2.36725C146.792 2.68397 147.922 2.62676 149.014 2.19884C149.097 2.15435 149.211 2.17048 149.329 2.18709C149.62 2.22809 149.931 2.27197 149.832 1.41297C149.75 0.683223 149.268 0.528855 148.883 0.753392C147.802 1.27546 146.669 1.40922 145.556 1.14633C145.519 1.14151 145.479 1.13542 145.439 1.12914C145.127 1.08057 144.748 1.02167 144.632 1.4691C144.314 2.77171 143.78 2.73752 143.237 2.70272C143.055 2.69103 142.871 2.67927 142.694 2.71808C142.577 2.74595 142.44 2.7228 142.302 2.69929C141.883 2.62809 141.444 2.55356 141.444 3.88287L140.71 3.73055C140.373 2.93284 140.029 2.12413 139.661 3.78463C139.122 2.18481 137.895 2.22691 137.609 2.94262C137.127 4.14991 136.69 3.97956 136.198 3.78716C136.106 3.75144 136.013 3.71496 135.917 3.6864C136.481 3.46186 137.111 2.91455 136.996 1.90414C136.909 1.1378 136.423 1.03341 135.968 0.935853C135.823 0.904783 135.682 0.874406 135.557 0.823558C135.071 0.622697 134.907 1.21286 134.741 1.8121C134.605 2.3014 134.467 2.79676 134.151 2.87245C134.261 3.69883 134.552 3.64557 134.843 3.59216C135.007 3.56213 135.171 3.53205 135.304 3.65833C135.343 3.66531 135.383 3.66596 135.422 3.66029C135.235 3.69176 135.035 3.78756 134.835 3.88364C134.158 4.20899 133.475 4.53747 133.211 2.38128C133.178 2.11464 132.818 1.81994 132.63 1.81994C131.566 2.0036 130.52 1.80029 129.475 1.59722C128.844 1.47444 128.213 1.35175 127.578 1.31473C127.035 1.20537 126.489 1.17251 125.943 1.2165C124.733 1.74083 123.471 1.79835 122.247 1.3849C121.438 0.556921 119.901 0.655156 119.901 1.0902C119.855 2.70824 119.478 2.50353 119.113 2.30522C118.956 2.21973 118.8 2.13543 118.675 2.19884C118.746 2.11118 118.835 2.0945 118.925 2.07784C119.093 2.04649 119.262 2.01519 119.304 1.5112C119.36 0.851689 119.106 0.806936 118.862 0.764104C118.821 0.756809 118.779 0.749569 118.74 0.739357C118.015 0.545821 117.31 0.764219 116.602 0.983736C115.872 1.20991 115.138 1.43726 114.374 1.2165C114.442 1.78681 114.63 1.84843 114.799 1.90383C114.855 1.92204 114.908 1.93958 114.955 1.97431C115.05 2.02627 115.136 2.11324 115.209 2.2291C115.282 2.34495 115.339 2.48686 115.377 2.6448C115.414 2.80273 115.431 2.97284 115.426 3.14312C115.421 3.3134 115.394 3.4797 115.347 3.63026C115.171 4.2263 114.981 3.9812 114.78 3.72397C114.618 3.51487 114.449 3.29775 114.276 3.51799C114.288 2.10879 113.855 2.16853 113.42 2.22847C113.266 2.24971 113.111 2.27097 112.976 2.22691C112.933 2.20814 112.893 2.13288 112.854 2.0599C112.835 2.02375 112.816 1.98816 112.797 1.96027C112.797 1.71657 112.901 1.63903 113.011 1.55703C113.161 1.44544 113.322 1.3256 113.246 0.767425C112.391 0.814792 111.532 0.768347 110.669 0.721744C108.722 0.61647 106.759 0.510394 104.793 1.48314C105.038 2.73212 105.504 3.82673 106.027 3.18119C106.943 2.05851 107.621 2.54968 108.382 3.39169C108.439 3.11102 108.439 2.81632 108.439 2.53565C108.667 2.79064 108.929 2.88089 109.199 2.97363C109.597 3.11056 110.011 3.2529 110.352 3.939C109.962 4.08138 109.631 3.88069 109.318 3.69049C109.013 3.50575 108.725 3.33089 108.415 3.48993C108.216 4.30674 107.845 4.3487 107.473 4.39082C107.308 4.40949 107.143 4.42818 106.992 4.51437C106.95 4.64854 106.924 4.82906 106.898 5.00914C106.837 5.43181 106.776 5.8521 106.518 5.66512C106.297 5.50511 106.406 5.28444 106.528 5.03649C106.61 4.87127 106.698 4.69395 106.698 4.51437C106.498 4.44046 106.276 4.45929 106.053 4.47819C105.472 4.52746 104.885 4.57723 104.678 2.98472H104.188C104.458 1.56734 104.09 1.32877 103.37 1.24457C102.271 1.11114 101.173 1.20312 100.074 1.29509C98.63 1.41595 97.1862 1.5368 95.7424 1.14633C95.3189 1.13293 94.8984 1.27155 94.5079 1.5533C94.294 1.71967 94.0601 1.79626 93.8256 1.77673C93.591 1.75721 93.3625 1.64214 93.159 1.44103C92.2024 0.332386 91.5239 1.18843 90.9107 2.49355H89.2674C89.3122 2.42948 89.3676 2.36541 89.423 2.30135C89.5496 2.15491 89.6762 2.00847 89.6762 1.86204C89.6903 1.34301 89.4443 1.36384 89.2555 1.37983C89.2248 1.38243 89.1956 1.3849 89.1693 1.3849C88.7293 1.29426 88.313 1.46785 87.8821 1.6475C87.5124 1.80165 87.132 1.96027 86.7167 1.96027C85.2385 1.69001 83.7451 1.79879 82.2855 2.28305C82.0403 2.10061 81.9749 2.21288 82.0893 2.64792L81.6244 3.47341C81.6266 3.45578 81.629 3.43789 81.6315 3.41976C81.6235 3.41976 81.6152 3.41852 81.6065 3.4162C81.565 3.08963 81.4862 2.78016 81.3744 2.50587C81.2543 2.21102 81.0988 1.96364 80.9185 1.78027C80.7381 1.59691 80.537 1.4818 80.3286 1.44266C80.1203 1.40352 79.9094 1.44124 79.7102 1.5533C78.5642 2.54255 77.4181 2.68534 76.2342 2.83284C75.9402 2.86947 75.6438 2.9064 75.3445 2.95665C74.2065 3.23211 73.0501 3.19421 71.919 2.84439C70.3254 2.14796 68.7407 2.2191 67.1629 2.28993C66.1018 2.33757 65.044 2.38506 63.9887 2.19884C63.0957 2.05161 62.2649 2.38006 61.4407 2.70593C60.9294 2.90809 60.4206 3.10926 59.901 3.19522C59.8091 3.18373 59.7178 3.22803 59.6431 3.32039C59.5684 3.41275 59.515 3.54728 59.4922 3.70043C58.923 6.36622 58.9199 6.36687 57.5929 6.6429L57.5709 6.64747C57.6739 6.2261 57.8861 6.1964 58.1129 6.16466C58.3544 6.13087 58.6125 6.09476 58.7727 5.58092L57.8979 5.18798C57.9728 4.81539 58.2087 4.7251 58.4315 4.63981C58.6955 4.53879 58.9411 4.44478 58.879 3.8969C58.7838 3.05626 58.3037 3.19671 57.8956 3.31613C57.8132 3.34025 57.7337 3.36351 57.6609 3.37766C57.418 3.42729 57.1774 3.45508 56.938 3.48273C56.162 3.57235 55.3986 3.66051 54.6114 4.48631C54.1041 4.87438 53.542 5.00139 52.9935 4.85193C52.4449 4.70247 51.9334 4.28296 51.521 3.6443C50.7846 2.43131 50.4002 2.78663 49.7826 3.35734C49.7214 3.4139 49.658 3.47256 49.5916 3.53203C49.978 3.86653 50.3105 4.35887 50.56 4.96574C50.8094 5.57261 50.9682 6.27542 51.0223 7.01234C50.9421 6.52314 50.801 6.06968 50.6086 5.68334C50.4163 5.297 50.1773 4.98701 49.9083 4.77481C49.6393 4.5626 49.3466 4.45325 49.0506 4.45432C48.7545 4.45539 48.4621 4.56686 48.1936 4.78101C47.4212 5.18902 46.5951 5.18902 45.8227 4.78101C45.7777 4.75444 45.7327 4.72783 45.6878 4.70125C44.1902 3.81516 42.7324 2.95257 41.0973 4.21967C40.6817 4.5439 40.1816 4.4889 39.6757 4.43326C39.3057 4.39257 38.9327 4.35154 38.5874 4.45824C35.8125 5.18105 33.0025 5.42552 30.1993 5.18798C29.9805 5.18235 29.7605 5.17194 29.5398 5.1615C28.1114 5.09391 26.6536 5.02493 25.2939 6.2405C24.9097 6.56327 24.1494 6.59134 24.1494 6.12823C24.2226 4.42584 23.7949 4.44352 23.3319 4.46266C23.1231 4.47128 22.9072 4.48021 22.7268 4.33194C22.0473 3.73154 21.8838 4.35258 21.7269 4.94871C21.6271 5.32794 21.53 5.69709 21.3043 5.73529C20.8619 5.7937 20.4185 5.88819 19.975 5.9827C18.7134 6.25152 17.451 6.52051 16.211 5.95983C13.5703 4.78101 11.0849 5.83352 8.57501 7.06847C8.60148 6.97004 8.64223 6.86037 8.68377 6.74855C8.79622 6.44591 8.9145 6.12757 8.77122 5.97386C8.29704 5.51075 8.12536 6.29663 8.0109 6.9141C7.98688 7.04368 7.97042 7.17944 7.95435 7.31204C7.89382 7.81132 7.83871 8.26583 7.4059 8.17712C7.60283 7.60746 7.30847 7.49297 7.00903 7.37649C6.63718 7.23186 6.25748 7.08417 6.80092 6.05806C6.95189 5.79028 6.86744 5.50654 6.78019 5.2134C6.72569 5.0303 6.6701 4.84354 6.6701 4.65471L6.52295 4.40211C6.10777 4.72519 5.69634 4.5657 5.22012 4.38111C4.99304 4.29308 4.75123 4.19935 4.48725 4.1495C5.30073 5.77364 4.83173 6.25863 4.36739 6.73879C4.17374 6.93904 3.9809 7.13846 3.88225 7.41931C3.81685 7.26497 3.81685 7.0966 3.81685 6.92823C3.80548 6.8516 3.79494 6.77425 3.78446 6.69736C3.69701 6.05601 3.6131 5.44059 3.07288 5.44059C2.95388 5.43704 2.83705 5.49549 2.7378 5.60823C2.63856 5.72097 2.56156 5.8827 2.51695 6.07209C2.37355 6.76578 2.60201 6.78153 2.83894 6.79786C3.04778 6.81226 3.26321 6.82711 3.2364 7.30704C3.2364 7.39962 3.36092 7.51052 3.48793 7.62363C3.55345 7.68197 3.61962 7.74091 3.6697 7.79822C3.77988 7.91611 3.89081 8.05937 4.00175 8.20264C4.52465 8.87794 5.04768 9.55341 5.49283 7.57368C5.58276 7.20881 5.79532 7.37721 5.9016 7.74208C5.98456 8.01379 6.0774 8.27627 6.17957 8.52796C5.81982 8.86866 5.57301 9.49612 5.32489 10.1269C5.20091 10.4421 5.07661 10.7581 4.93772 11.0396C4.7944 10.9891 4.64477 10.9438 4.48725 10.914C4.58045 11.1001 4.65681 11.2712 4.71827 11.4291C4.43937 11.853 4.09202 12.1123 3.59612 12.0083C3.58621 11.953 3.57742 11.8947 3.56856 11.8361C3.519 11.5077 3.46726 11.165 3.20369 11.2364C3.14496 11.2724 3.09208 11.332 3.04943 11.4101C3.00677 11.4882 2.97559 11.5826 2.95843 11.6855C2.93403 11.9648 2.98855 12.1121 3.07467 12.2051C3.07407 12.2051 3.07348 12.2051 3.07288 12.2051C2.95388 12.2016 2.83705 12.26 2.7378 12.3728C2.63856 12.4855 2.56156 12.6472 2.51695 12.8366C2.45451 13.1387 2.46257 13.3122 2.51114 13.4132C1.93998 14.1459 1.41067 14.9723 0.930896 15.8815C0.751033 16.1622 0.546631 16.513 0.661091 16.934C0.806082 17.5065 1.09251 17.2734 1.28663 17.1154C1.31143 17.0952 1.33472 17.0762 1.35601 17.0603C1.40555 17.0234 1.45453 16.9679 1.50398 16.9119C1.64223 16.7552 1.78423 16.5944 1.95284 16.8218C1.9317 17.0135 1.91057 17.1995 1.88984 17.3819C1.85445 17.6934 1.82025 17.9944 1.78931 18.2953C2.19843 18.1136 2.59353 18.1811 2.98792 18.3233C2.97566 18.3636 2.96577 18.406 2.95843 18.45C2.91718 18.9221 3.10141 19.017 3.28261 19.1104C3.31688 19.128 3.35104 19.1456 3.38355 19.1657C2.47275 20.1173 1.64669 21.2895 0.930896 22.646C0.751033 22.9267 0.546631 23.2776 0.661091 23.6986C0.806082 24.271 1.09251 24.0379 1.28663 23.8799C1.31143 23.8597 1.33472 23.8408 1.35601 23.8249C1.40555 23.7879 1.45453 23.7324 1.50398 23.6764C1.64223 23.5198 1.78423 23.3589 1.95284 23.5863C1.9317 23.778 1.91057 23.9641 1.88984 24.1464C1.85445 24.4579 1.82025 24.7589 1.78931 25.0598C2.36887 24.8024 2.92029 25.0451 3.48143 25.292C4.05226 25.5432 4.63314 25.7988 5.26391 25.537C5.75694 25.327 6.24818 25.1017 6.73847 24.8769C7.29697 24.6208 7.85423 24.3653 8.41149 24.1336C9.38014 23.7606 10.3753 23.8177 11.3746 23.875C12.5936 23.9448 13.8186 24.0151 15.0091 23.3056C15.3035 23.1372 15.6795 23.2355 15.7531 23.7266C15.9533 25.0218 16.2912 24.7114 16.7055 24.331C16.7311 24.3074 16.757 24.2836 16.7832 24.2599C17.6931 23.5012 18.6671 22.9945 19.6692 22.7583C20.0701 22.6293 20.4956 22.7476 20.9219 22.8661C21.7475 23.0957 22.5759 23.326 23.2337 21.7619C23.3502 21.8187 23.455 21.9306 23.5362 22.0847C24.119 23.2715 24.8449 23.2396 25.5699 23.2076C26.0451 23.1867 26.5198 23.1658 26.9536 23.4881C27.1253 23.6144 27.4359 23.4319 27.4359 22.8285C27.5095 21.2708 27.6812 21.0041 28.5642 21.355C29.284 21.7272 30.0517 21.7272 30.7716 21.355C31.0602 21.1687 31.3723 21.116 31.6765 21.2022C31.9807 21.2885 32.2663 21.5105 32.5048 21.8461L32.6519 22.1268C34.4505 23.7547 35.2354 23.6144 36.2655 21.4953L35.8567 21.3269L36.1347 20.8357C36.1583 20.9652 36.1846 21.09 36.2104 21.2128C36.2294 21.303 36.2482 21.3921 36.2655 21.4813C36.8623 21.7058 37.2139 21.2427 37.4755 20.3024C37.5006 20.1859 37.5393 20.0795 37.5893 19.9896C37.6392 19.8996 37.6993 19.8282 37.7659 19.7796C37.8325 19.731 37.9042 19.7062 37.9766 19.7068C38.0489 19.7075 38.1204 19.7334 38.1868 19.7832C38.3481 19.9217 38.3145 20.1507 38.2806 20.382C38.2664 20.4789 38.2522 20.5762 38.2522 20.6673C38.2516 20.7065 38.2511 20.7454 38.2507 20.7839C38.2454 21.2689 38.2409 21.6881 37.8924 21.8181C37.7738 21.8623 37.6454 21.848 37.5165 21.8335C37.2367 21.8022 36.9545 21.7705 36.7642 22.3373C37.917 23.6144 38.7509 23.1653 39.3477 20.8077C39.5848 19.8814 39.7892 19.1517 40.2633 19.8814C40.7244 20.5871 41.2345 20.5541 41.7296 20.5221C41.9632 20.507 42.1934 20.4921 42.4135 20.5551C43.327 20.8541 44.214 20.5277 45.1251 20.1925C45.967 19.8827 46.8294 19.5653 47.7521 19.7271C49.3001 19.8528 50.8504 19.5928 52.3549 18.9552C52.2642 19.134 52.1289 19.2124 51.988 19.2942C51.6972 19.4629 51.382 19.6458 51.382 20.7515C54.3597 18.7004 57.5983 18.023 60.7757 18.7868L60.5141 19.3341C60.5543 19.3961 60.5925 19.4617 60.6286 19.5306L60.9474 19.0956C61.02 19.0434 61.094 18.9685 61.1679 18.8937C61.4517 18.6064 61.7339 18.3208 61.9285 19.3341L62.092 19.6148C62.1457 19.6555 62.1981 19.7008 62.25 19.7456C62.4665 19.9329 62.6721 20.1106 62.9095 19.8955C64.7409 18.2536 65.8282 18.4641 67.308 20.7796C67.1081 20.8895 66.8922 20.9127 66.6763 20.9358C66.2034 20.9864 65.7307 21.037 65.4276 22.0005C65.5057 22.0362 65.5831 22.0742 65.6597 22.1118C66.3365 22.4441 66.9534 22.747 67.5042 21.1585C67.8862 20.0569 68.3951 20.2189 68.9083 20.3823C69.219 20.4812 69.5312 20.5806 69.8178 20.4007C70.9215 19.7411 72.2705 19.292 73.0881 20.2182C73.8459 21.1093 74.412 20.8044 74.9805 20.4982C75.1909 20.3848 75.4016 20.2713 75.6225 20.2182C76.8822 19.9357 78.1482 19.8037 79.4149 19.6716C79.5951 19.6528 79.7753 19.634 79.9555 19.6148C79.9835 19.6133 80.0126 19.6102 80.0423 19.607C80.29 19.5806 80.5768 19.55 80.5768 20.4147C80.5768 21.383 81.0183 21.5655 81.3944 20.9059C81.9994 19.8393 81.9994 19.8393 82.4 21.4392C82.6087 21.42 82.7359 21.1499 82.8628 20.8804C83.0143 20.5587 83.1655 20.2376 83.4546 20.3446C83.3805 20.4556 83.3316 20.6081 83.3167 20.775C83.3017 20.9419 83.3216 21.1126 83.3729 21.2567H83.6018V20.527C84.0595 20.1785 84.5506 20.0675 85.0426 19.9562C85.6403 19.821 86.2395 19.6855 86.7821 19.1236C86.9916 19.0329 87.2127 19.0625 87.4116 19.2078C87.4116 21.2212 87.9223 20.7632 88.381 20.3518C88.517 20.2299 88.6484 20.112 88.7605 20.0639C89.2876 19.7583 89.799 19.3781 90.2894 18.9272C90.2709 19.0017 90.2499 19.0781 90.229 19.154C90.0926 19.65 89.963 20.1211 90.6082 19.8534C91.1042 19.6476 91.6002 19.4292 92.0962 19.2109C92.3442 19.1018 92.5921 18.9927 92.8401 18.8851C92.8945 18.8151 92.946 18.727 92.998 18.6381C93.1963 18.2989 93.4015 17.9478 93.7967 18.5483L92.8565 18.9272C92.8211 19.0203 92.7517 19.104 92.6823 19.1878C92.511 19.3947 92.3392 19.6021 92.6766 19.9516C92.8741 20.0871 93.0868 20.1448 93.2991 20.1205C93.5113 20.0962 93.7177 19.9906 93.903 19.8113C95.3821 18.8218 96.8793 18.9748 98.4018 19.1304C99.1683 19.2087 99.9411 19.2877 100.721 19.2219C100.62 19.5923 100.399 19.6906 100.203 19.7777C99.9393 19.8951 99.7207 19.9922 99.9038 20.7094C100.066 21.4703 100.536 20.9706 100.818 20.6705C100.848 20.6385 100.876 20.6088 100.901 20.5831C102.096 19.5249 103.435 19.04 104.776 19.1798C107.325 19.0448 109.873 19.2118 112.422 19.3787C114.909 19.5416 117.397 19.7046 119.885 19.5867C120.766 19.3267 121.671 19.472 122.509 20.0077L121.986 20.7235C122.586 22.1139 122.225 22.1906 121.808 22.2793C121.623 22.3186 121.427 22.3603 121.299 22.5197C121.561 20.4007 121.348 20.0218 120.302 20.4007C120.022 20.5428 119.748 20.7211 119.484 20.934C119.132 21.1554 118.785 21.4307 118.439 21.7059C117.314 22.5989 116.19 23.4919 114.865 22.5478C114.94 22.38 115.03 22.2417 115.119 22.1054C115.289 21.8428 115.454 21.5879 115.503 21.1445L115.356 20.7796C115.168 20.8146 114.979 20.8146 114.791 20.7796C113.726 20.4014 113.858 21.2581 113.99 22.1161C114.069 22.627 114.148 23.1384 113.974 23.3898L113.961 23.4098C113.791 23.6725 113.587 23.9897 113.802 24.4002C113.867 24.5136 113.947 24.5974 114.036 24.644C114.124 24.6905 114.218 24.6984 114.309 24.6669C115.237 23.7505 116.178 24.0077 117.117 24.2643C117.501 24.3692 117.884 24.474 118.266 24.4985H118.323C118.725 24.118 119.162 23.8615 119.615 23.7407C121.284 23.8187 122.955 23.6996 124.622 23.5808C126.254 23.4645 127.882 23.3485 129.499 23.4179C130.382 23.4348 131.263 23.3079 132.132 23.039C132.411 22.8625 132.711 22.7986 133.007 22.8521C133.303 22.9056 133.588 23.0752 133.84 23.3477C134.065 23.572 134.32 23.6902 134.58 23.6902C134.84 23.6902 135.095 23.572 135.32 23.3477C135.353 23.3232 135.386 23.2979 135.419 23.2724C135.768 23.0054 136.141 22.7194 136.514 23.1934C137.63 24.5716 138.761 24.2188 139.919 23.8573C139.999 23.8323 140.08 23.8073 140.16 23.7828C140.237 23.7618 140.325 23.717 140.416 23.6706C140.75 23.5 141.129 23.3071 141.174 24.1897C141.21 24.9896 140.741 25.066 140.332 25.1326C140.281 25.1408 140.232 25.1488 140.185 25.158C139.908 25.1335 139.633 25.0535 139.367 24.9195C138.743 24.6939 138.099 24.6883 137.473 24.903C136.848 25.1177 136.254 25.5482 135.729 26.1685C136.499 26.1846 137.252 26.2582 137.99 26.3303C140.469 26.5728 142.776 26.7985 145 24.7651C145.065 25.2161 144.882 25.3127 144.714 25.4015C144.562 25.4814 144.423 25.555 144.485 25.8738C144.636 26.6383 145.054 26.5561 145.374 26.4932C145.453 26.4776 145.527 26.4632 145.589 26.4632C147.464 26.4725 149.338 26.3946 151.213 26.3166C152.151 26.2776 153.088 26.2386 154.026 26.2106C154.118 26.207 154.211 26.2002 154.304 26.1934C154.955 26.1456 155.618 26.0969 156.119 27.1648C156.176 27.2631 156.299 27.4595 156.299 27.4595C156.465 27.3051 156.396 27.1506 156.332 27.0047C156.32 26.9782 156.309 26.9521 156.299 26.9263C156.838 25.7615 157.729 25.9439 157.934 26.9263C158.203 28.2114 158.549 27.877 158.847 27.5897C158.884 27.5539 158.92 27.5188 158.956 27.4876C159.136 27.3289 159.329 27.2375 159.509 27.1525C159.647 27.0872 159.778 27.0257 159.888 26.9403C160.408 26.5733 160.804 26.9093 161.2 27.2444C161.5 27.4987 161.799 27.7526 162.152 27.6981C162.474 27.6476 162.795 27.5857 163.116 27.5238C163.866 27.3794 164.616 27.235 165.365 27.235C165.77 27.284 166.175 27.1535 166.541 26.8561C166.908 26.5587 167.223 26.1044 167.458 25.537C167.807 24.6752 167.507 24.2406 167.198 23.7925C166.979 23.4744 166.755 23.1495 166.755 22.6601C166.975 22.508 167.194 22.6302 167.42 22.7557C167.715 22.9197 168.02 23.0894 168.349 22.6601C168.312 22.591 168.275 22.5215 168.239 22.4525C167.703 21.4414 167.216 20.5227 166.551 22.3092C166.511 22.211 166.466 22.1112 166.421 22.0098C166.218 21.561 166.001 21.079 166.207 20.541C166.264 20.3831 166.321 20.2765 166.38 20.2098C166.419 20.1844 166.457 20.1572 166.495 20.1282C166.653 20.0749 166.824 20.2373 167.019 20.4219C167.118 20.5158 167.223 20.6155 167.336 20.6954C167.81 21.0322 168.693 21.3971 168.578 20.513C168.431 19.3591 168.756 19.4521 169.04 19.5332C169.246 19.5922 169.43 19.645 169.396 19.2078C168.821 18.5692 168.205 18.0646 167.563 17.7012C167.489 17.4487 167.345 17.2399 167.198 17.028C166.979 16.7099 166.755 16.385 166.755 15.8956C166.975 15.7435 167.194 15.8656 167.42 15.9911C167.715 16.1552 168.02 16.3249 168.349 15.8956C168.312 15.8265 168.275 15.757 168.239 15.688C167.703 14.6769 167.216 13.7582 166.551 15.5447C166.511 15.4464 166.466 15.3467 166.421 15.2453C166.236 14.8371 166.04 14.4015 166.161 13.9212C166.33 13.892 166.47 13.7701 166.505 13.3604C166.66 13.3177 166.828 13.477 167.019 13.6574C167.118 13.7513 167.223 13.851 167.336 13.9309C167.81 14.2677 168.693 14.6325 168.578 13.7484C168.431 12.5946 168.756 12.6875 169.04 12.7687ZM117.009 12.8494C117.058 12.8505 117.106 12.8516 117.155 12.8526L117.072 12.9068C117.072 13.1033 116.999 13.1875 117.032 12.9208C117.023 12.8977 117.016 12.8739 117.009 12.8494ZM106.766 12.3659C106.711 12.4744 106.635 12.5144 106.518 12.4296C106.49 12.4096 106.468 12.3887 106.45 12.3669C106.555 12.3662 106.66 12.3658 106.766 12.3659ZM86.4244 12.667C86.5458 12.5813 86.6653 12.4801 86.7821 12.3591C86.8402 12.3339 86.8993 12.318 86.9585 12.3113C87.0356 12.5559 86.9113 12.7988 86.8011 13.0145C86.7832 13.0495 86.7656 13.0838 86.7494 13.1173C86.7425 13.1173 86.7349 13.1206 86.7262 13.1244C86.7039 13.1343 86.6738 13.1476 86.6267 13.1173C86.5613 13.0752 86.5613 12.9208 86.5613 12.9208L86.4244 12.667ZM80.7313 14.3977C80.755 14.4329 80.7808 14.4612 80.8084 14.4827L80.7976 14.5066C80.7731 14.5066 80.7812 14.6329 80.7812 14.6329C80.7377 14.6397 80.6939 14.6397 80.6504 14.6329C80.6689 14.5467 80.6963 14.467 80.7313 14.3977ZM65.7043 12.26C65.9785 12.4083 66.2508 12.6398 66.5308 12.9569C66.3735 13.0423 66.2154 12.8596 66.062 12.6822C65.9066 12.5026 65.756 12.3284 65.6156 12.4437C65.6451 12.3717 65.6747 12.3109 65.7043 12.26ZM61.9108 12.4822C61.9168 12.5102 61.9227 12.5393 61.9285 12.5696L62.092 12.8503C62.1457 12.8909 62.1981 12.9363 62.25 12.9811C62.4665 13.1684 62.6721 13.3461 62.9095 13.131C63.2467 12.8286 63.5587 12.5891 63.8525 12.414C64.0662 12.6602 64.23 13.0131 64.3157 13.4681L64.2585 13.4822C63.7626 13.0565 63.2424 13.2727 62.7261 13.4873C62.204 13.7043 61.6859 13.9197 61.2009 13.4681C61.4131 13.0485 61.6559 12.7209 61.9108 12.4822ZM60.5193 12.5587L60.5141 12.5696C60.5145 12.5702 60.5148 12.5707 60.5152 12.5713C60.4658 12.7216 60.4223 12.8424 60.3833 12.8647C60.1311 12.9934 60.1574 12.7027 60.1825 12.4236C60.1876 12.3679 60.1925 12.3126 60.1953 12.2612L60.1957 12.253C60.2019 12.1354 60.2084 12.0122 60.2278 11.905C60.3776 11.9331 60.5273 11.9645 60.6769 11.999C60.6933 12.0407 60.7104 12.0821 60.7284 12.1212L60.7206 12.1377L60.6613 12.149C60.6172 12.257 60.5768 12.3816 60.5396 12.4965C60.5327 12.5176 60.526 12.5384 60.5193 12.5587ZM59.2049 11.7621C58.8694 13.1419 58.656 13.1863 57.5929 13.4074L57.5709 13.412C57.6739 12.9906 57.8861 12.9609 58.1129 12.9292C58.3544 12.8954 58.6125 12.8593 58.7727 12.3454L57.8979 11.9525C57.9168 11.8586 57.9459 11.7827 57.9824 11.7202C58.3896 11.7109 58.7973 11.7248 59.2049 11.7621ZM50.8623 12.6957C50.8196 12.7066 50.7769 12.7171 50.7342 12.7274C50.8632 13.0467 50.9608 13.4012 51.0223 13.7769C50.995 13.4051 50.9411 13.0421 50.8623 12.6957ZM4.05531 18.7602C3.88959 18.7042 3.72577 18.6346 3.56291 18.5633C3.56481 18.5757 3.56669 18.5882 3.56856 18.6006C3.57742 18.6593 3.58621 18.7175 3.59612 18.7728C3.76544 18.8083 3.91744 18.8015 4.05531 18.7602ZM81.6065 3.4162C81.5473 3.40052 81.4717 3.33531 81.3977 3.27134C81.1909 3.09282 80.9954 2.92403 81.1982 3.86883C81.3617 4.59857 81.3535 5.27218 80.912 4.90731C79.514 3.7285 78.3776 4.66874 77.2576 6.31066C78.2388 4.89147 79.2988 5.15978 80.3694 5.43075C81.0561 5.60457 81.7472 5.77948 82.4245 5.51075L82.4899 5.45462C82.6452 4.90731 82.6371 4.57051 82.212 4.58454C81.7955 4.59829 81.5203 4.31583 81.6244 3.47341L81.6151 3.48993C81.6125 3.46526 81.6096 3.44069 81.6065 3.4162ZM103.622 5.03361H104.163V2.98472H104.188C103.902 2.83751 103.6 2.8078 103.306 2.898C103.012 2.98819 102.734 3.19576 102.495 3.50396L103.313 5.03361L103.411 4.64068L103.552 4.94941H103.427C103.444 5.20008 103.532 5.63039 103.622 5.03361ZM140.456 4.0653H139.849C139.528 4.60236 139.267 4.27549 139.001 3.94198C138.76 3.63931 138.514 3.33118 138.214 3.65833C138.89 5.60495 139.653 5.18833 140.456 4.0653ZM11.2321 7.25091H11.3465L11.3302 7.33511L11.2321 7.25091ZM43.6235 5.24412C43.37 6.14226 43.0757 6.2826 42.6751 6.00193V5.98789C42.8713 5.13185 43.182 5.11781 43.6235 5.24412ZM47.2289 10.8014L47.2943 10.8996H47.1717L47.2289 10.8014ZM48.4902 8.339L48.7005 8.10696L48.5288 8.21922C48.5288 8.21922 48.5071 8.28447 48.4902 8.339ZM49.0347 7.78525C49.1195 7.74365 49.2103 7.7583 49.2891 7.82628L49.2564 7.84032C49.265 7.84765 49.269 7.89332 49.2733 7.94126C49.2772 7.98504 49.2813 8.03072 49.2891 8.05082C49.176 8.27742 49.058 8.19703 48.9389 8.11588C48.9031 8.09149 48.8672 8.06703 48.8313 8.05082C48.8773 7.92163 48.9499 7.82684 49.0347 7.78525ZM60.6358 5.12668C60.6661 5.20732 60.6986 5.29377 60.7348 5.37042L60.6613 5.38445C60.6172 5.49246 60.5768 5.61708 60.5396 5.73195C60.48 5.91558 60.4286 6.07426 60.3833 6.10016C60.1311 6.22885 60.1574 5.93819 60.1825 5.65905C60.1876 5.60334 60.1925 5.54809 60.1953 5.49672L60.1957 5.48848C60.2119 5.18178 60.2301 4.83715 60.4732 4.83715C60.5271 4.83715 60.5774 4.97108 60.6358 5.12668ZM63.7843 3.27942L63.2856 3.44783L63.7843 3.12505V3.27942ZM62.2637 3.96707V3.78463L62.3945 3.84076L62.2637 3.96707ZM61.2009 6.7036C62.2228 4.68278 63.956 4.79504 64.3157 6.7036L64.2585 6.71764C63.7626 6.29199 63.2424 6.50821 62.726 6.72282C62.204 6.93982 61.6859 7.15517 61.2009 6.7036ZM65.9089 3.48547C65.9173 3.50739 65.9256 3.53071 65.9339 3.55412C65.9676 3.64954 66.002 3.74649 66.0489 3.75656C66.1956 3.78543 66.3437 3.78543 66.4904 3.75656C66.4534 3.69305 66.4224 3.62953 66.3945 3.57253C66.3423 3.46581 66.3013 3.38192 66.2533 3.36362C66.1359 3.37905 66.0201 3.42004 65.9089 3.48547ZM66.8483 5.56286C66.6867 5.65775 66.5241 5.54425 66.3618 5.43097C66.1108 5.25572 65.8605 5.08099 65.6156 5.67916C65.756 5.56391 65.9066 5.73807 66.062 5.91768C66.3195 6.2154 66.59 6.52813 66.8483 5.56286ZM67.4633 4.86521L67.5205 5.06168L66.9728 5.45462L67.4633 4.86521ZM70.7335 5.46865H70.6518L70.7907 5.31428C70.7785 5.37232 70.759 5.42502 70.7335 5.46865ZM70.57 5.53882L70.4555 5.69319L70.3983 5.70722C70.4301 5.63939 70.4689 5.58229 70.5128 5.53882H70.57ZM70.619 7.98065L70.4555 7.78418L70.3901 7.74208C70.4718 7.67527 70.5613 7.64166 70.6518 7.64385C70.6685 7.63668 70.6873 7.65882 70.7072 7.6822C70.7262 7.70456 70.7462 7.72805 70.7662 7.72805L70.619 7.98065ZM72.5648 9.15947L72.6956 9.22964L72.6302 9.24367C72.6069 9.36778 72.5796 9.48959 72.5485 9.60854C72.4422 9.81904 72.385 9.63661 72.4013 9.51031C72.413 9.42005 72.4623 9.33695 72.5103 9.2559C72.5295 9.22354 72.5485 9.1915 72.5648 9.15947ZM73.6603 5.01958C73.6936 5.16778 73.7129 5.32409 73.7176 5.48269L73.6522 5.49672C73.5983 5.39111 73.5952 5.37243 73.5609 5.17201C73.5588 5.15937 73.5565 5.146 73.5541 5.13185C73.5132 4.89328 73.5868 4.82311 73.6603 5.01958ZM73.7176 5.74839V5.91773C73.7176 5.95417 73.7005 6.02091 73.6811 6.09679C73.6256 6.3131 73.5512 6.60373 73.7993 6.47907C73.918 6.43619 73.822 6.10669 73.7336 5.80335C73.7282 5.78491 73.7229 5.76657 73.7176 5.74839ZM77.2167 8.47183L77.2903 8.80863L77.2331 8.86476C77.1922 8.89283 77.1677 8.86476 77.1677 8.86476C77.1018 8.81979 77.0388 8.76337 76.9796 8.69636C77.0613 8.62995 77.1404 8.55496 77.2167 8.47183ZM78.6556 8.42972C78.6883 8.42972 78.7864 8.6262 78.7864 8.72443L78.7292 8.78056C78.6693 8.82744 78.6061 8.86047 78.5411 8.8788C78.5003 8.89283 78.3531 8.76653 78.4267 8.68233C78.4481 8.65779 78.4737 8.62609 78.5001 8.59349C78.5641 8.51426 78.6324 8.42972 78.6556 8.42972ZM80.7403 7.61578C80.7649 7.53158 80.8548 7.61578 80.8548 7.61578L80.7976 7.74208C80.7731 7.74208 80.7812 7.86838 80.7812 7.86838C80.7377 7.8752 80.6939 7.8752 80.6504 7.86838C80.6704 7.77485 80.701 7.68901 80.7403 7.61578ZM82.4899 5.46865L83.3075 5.66512L83.2257 5.72126C83.1022 5.80803 82.9665 5.83035 82.8356 5.78542C82.7047 5.74049 82.5845 5.6303 82.4899 5.46865ZM85.9563 3.33556C85.8875 3.2545 85.8219 3.16541 85.7601 3.06892L85.6865 3.12505C85.6958 3.11311 85.7071 3.08648 85.7199 3.05606C85.7524 2.97926 85.795 2.87833 85.8419 2.92859C85.8829 2.97256 85.9207 3.02756 85.9613 3.08668C85.9854 3.12189 86.0106 3.15855 86.0381 3.19522C86.0131 3.24569 85.9857 3.29262 85.9563 3.33556ZM86.5094 4.97594C86.6011 4.99904 86.6887 5.05711 86.7657 5.14588L86.6921 5.20202C87.156 5.5559 86.9634 5.93254 86.8011 6.24994C86.7832 6.28498 86.7656 6.31929 86.7494 6.35276C86.7425 6.35276 86.7349 6.35608 86.7262 6.35993C86.7039 6.36977 86.6738 6.38304 86.6267 6.35276C86.5613 6.31066 86.5613 6.1563 86.5613 6.1563L86.3569 5.77739L85.8419 5.63706C85.8762 5.48912 85.9293 5.35624 85.9974 5.24815C86.0655 5.14006 86.1468 5.05951 86.2354 5.01241C86.324 4.96531 86.4176 4.95285 86.5094 4.97594ZM91.0046 4.70106C91.0435 4.73362 91.0834 4.76698 91.1233 4.76698L91.0497 4.82311C91.0126 4.92141 90.9717 5.01519 90.9271 5.10378C90.7881 5.23008 90.6736 5.18798 90.6736 4.85118C90.6818 4.78101 90.8126 4.65471 90.8862 4.64068C90.9239 4.63348 90.9637 4.66684 91.0046 4.70106ZM92.6194 4.00801C92.658 4.33857 92.6967 4.67098 92.9055 4.76698L92.832 4.83715C92.7315 4.80956 92.6241 4.81332 92.5193 4.817C92.1976 4.82828 91.9 4.83873 91.9 3.939C91.8906 3.85943 91.8909 3.7774 91.9008 3.69805C91.9108 3.6187 91.9302 3.54374 91.9579 3.47786C91.9855 3.41198 92.0207 3.35662 92.0614 3.31522C92.1021 3.27383 92.1473 3.24731 92.1943 3.23732C92.5278 3.22206 92.5735 3.61372 92.6194 4.00801ZM95.841 3.42227C96.4986 3.15091 97.1498 2.88224 97.5492 4.51437L97.4511 4.58454C97.1329 4.95597 96.7639 4.71085 96.3923 4.46402C95.8093 4.07669 95.2199 3.68516 94.8104 5.66512C94.7696 3.75656 94.7777 3.61623 94.9658 3.61623C95.2437 3.66874 95.543 3.54523 95.841 3.42227ZM99.6013 3.82673C100.588 4.20725 101.618 4.05531 102.553 3.39169L102.479 3.53203C102.43 4.74178 101.943 4.61667 101.579 4.52317C101.521 4.50821 101.466 4.49405 101.416 4.48631C100.829 4.28761 100.22 4.3901 99.6667 4.78101L99.6506 4.79745C99.43 5.02242 99.1086 5.35014 99.0208 4.52841C98.9718 4.0232 98.9227 3.44783 99.217 3.12505C99.6284 2.68914 99.5949 3.03315 99.5615 3.37647C99.5411 3.58578 99.5208 3.79484 99.6013 3.82673ZM111.217 1.49425C111.472 1.47218 111.725 1.56004 111.955 1.74977L111.881 1.81994C111.677 2.04979 111.439 2.17687 111.195 2.18679C110.951 2.19671 110.71 2.08908 110.499 1.87607C110.716 1.6476 110.963 1.51631 111.217 1.49425ZM111.309 3.41976L111.66 3.7285L111.374 4.1916C111.359 4.15334 111.341 4.11251 111.323 4.07105C111.281 3.97564 111.238 3.87692 111.227 3.79867C111.218 3.73928 111.242 3.67204 111.266 3.60317C111.287 3.54186 111.309 3.47925 111.309 3.41976ZM113.581 4.47227H113.066L112.985 4.54244C112.687 5.03587 112.312 5.36782 111.905 5.49672C112.035 4.78897 112.345 4.71083 112.653 4.63299C112.791 4.59815 112.929 4.56338 113.05 4.47227C113.238 4.05127 113.418 3.82673 113.581 4.47227ZM116.018 3.16716L116.14 3.40573L116.129 3.42571L116.018 3.16716ZM117.179 5.60899V6.07209L117.072 6.14226C117.072 6.33873 116.999 6.42293 117.032 6.1563C116.985 6.02623 116.965 5.87316 116.974 5.72126C116.982 5.60899 117.105 5.60899 117.179 5.60899ZM117.416 2.33918L117.342 2.40935C117.325 2.42113 117.325 2.42055 117.327 2.41279C117.329 2.40207 117.335 2.37764 117.301 2.35321C117.244 2.31111 117.203 2.14271 117.244 2.14271C117.258 2.14271 117.27 2.13959 117.283 2.13647C117.309 2.13024 117.334 2.124 117.367 2.14271C117.416 2.17077 117.416 2.26901 117.416 2.33918ZM128.498 4.58299C128.393 4.49555 128.265 4.38968 128.224 4.21967L128.15 4.30387C128.068 3.92496 128.322 3.71446 128.534 3.67236C128.619 3.71445 128.697 3.78604 128.765 3.88264C128.832 3.97924 128.888 4.09876 128.927 4.2337C128.992 4.48631 128.845 4.68278 128.608 4.68278C128.58 4.65051 128.541 4.61825 128.498 4.58299ZM126.425 6.24001C126.242 6.241 126.068 6.24195 125.918 6.42293L125.845 6.50713C126.03 6.17373 126.255 5.91512 126.506 5.75007C126.756 5.58501 127.024 5.51764 127.292 5.55286C127.018 6.23679 126.711 6.23846 126.425 6.24001ZM121.708 1.89011L121.471 2.07254L121.544 1.96027L121.708 1.89011ZM129.743 12.9644C130.002 12.9594 130.264 12.9805 130.529 13.0327L130.456 13.1731C130.419 13.2121 130.382 13.2504 130.344 13.2878C130.219 13.2934 130.038 13.1774 129.743 12.9644ZM132.287 5.13185C132.295 5.56689 132.614 5.51075 132.827 5.37042L132.753 5.51075C132.262 6.4089 132.025 6.33873 131.813 4.90731C131.792 4.81008 131.774 4.71316 131.757 4.6192C131.656 4.07572 131.573 3.63116 131.134 3.79867C130.84 3.91104 130.898 4.21623 130.959 4.53568C131.005 4.77475 131.052 5.02181 130.954 5.20202C130.873 5.13185 130.734 5.00555 130.734 5.00555C130.545 5.17383 130.635 5.35405 130.714 5.51317C130.721 5.52656 130.727 5.53979 130.734 5.55286C130.488 6.7457 130.488 6.7457 129.548 6.05806C129.848 5.76065 130.11 5.1732 130.37 4.59071C131.018 3.13927 131.652 1.71868 132.818 4.89328C132.598 4.72487 132.279 4.69681 132.287 5.13185ZM135.835 3.13909H135.762L135.688 3.27942C135.694 2.89283 135.832 2.74739 136.01 2.55931C136.071 2.49477 136.136 2.42522 136.203 2.33918L135.835 3.13909ZM135.945 5.18261C136.574 5.22402 137.229 5.26717 137.887 5.87563L137.814 6.04403C136.888 7.45409 136.22 6.59462 135.593 5.78747C135.334 5.45392 135.082 5.12931 134.821 4.97748C135.182 5.13238 135.559 5.15717 135.945 5.18261ZM141.779 5.07571L142.441 4.83715L142.367 5.00555C142.281 5.10252 142.182 5.15988 142.078 5.17216C141.975 5.18445 141.872 5.15124 141.779 5.07571ZM143.896 3.50396H144.019L143.994 3.57413L143.896 3.50396ZM144.581 4.93152C144.755 4.72684 144.954 4.4925 145.172 4.87924L145.098 5.04765C145.156 5.19615 145.179 5.37634 145.163 5.55286C144.915 6.18869 144.774 5.74837 144.648 5.35324C144.604 5.21639 144.562 5.08497 144.518 5.00555C144.538 4.98218 144.56 4.95708 144.581 4.93152ZM151.67 4.71957C151.712 4.80084 151.741 4.89946 151.753 5.00555L151.679 5.24412C151.688 5.41252 151.557 5.59495 151.524 5.60899C151.486 5.54817 151.441 5.4936 151.399 5.44162C151.314 5.33767 151.238 5.24412 151.238 5.13185C151.221 5.0601 151.216 4.98207 151.223 4.90576C151.23 4.82946 151.248 4.75762 151.276 4.69762C151.305 4.63762 151.342 4.59163 151.384 4.56436C151.426 4.53709 151.472 4.52952 151.516 4.54244C151.576 4.57721 151.629 4.63829 151.67 4.71957ZM33.9059 20.7898C34.0043 20.91 34.0754 21.0849 34.1072 21.2848H34.1235C34.1317 21.7339 33.9355 21.79 33.7311 21.804C33.6376 21.822 33.5435 21.7805 33.4667 21.6874C33.3899 21.5943 33.3356 21.456 33.3141 21.2988C33.2487 20.9059 33.3305 20.6252 33.5676 20.6252C33.688 20.6114 33.8076 20.6696 33.9059 20.7898ZM44.9888 18.0493C45.2285 18.0493 45.4634 18.1637 45.6674 18.3799H44.3102C44.5142 18.1637 44.7491 18.0493 44.9888 18.0493ZM40.1162 18.3799C41.4593 17.8209 42.8608 17.8209 44.2039 18.3799L44.2121 18.3939C42.8625 18.9014 41.4646 18.8966 40.1162 18.3799ZM47.2289 17.5659L47.2943 17.6641H47.1717L47.2289 17.5659ZM48.4902 15.1035L48.7005 14.8715L48.5288 14.9837C48.5288 14.9837 48.5071 15.049 48.4902 15.1035ZM49.0347 14.5498C49.1195 14.5082 49.2103 14.5228 49.2891 14.5908L49.2564 14.6048C49.265 14.6122 49.269 14.6578 49.2733 14.7058C49.2772 14.7496 49.2813 14.7952 49.2891 14.8153C49.176 15.0419 49.058 14.9616 48.9389 14.8804C48.9031 14.856 48.8672 14.8316 48.8313 14.8153C48.8773 14.6862 48.9499 14.5914 49.0347 14.5498ZM70.619 14.7452L70.4555 14.5487L70.3901 14.5066C70.4718 14.4398 70.5613 14.4062 70.6518 14.4084C70.6685 14.4012 70.6873 14.4233 70.7072 14.4467C70.7262 14.4691 70.7462 14.4926 70.7662 14.4926L70.619 14.7452ZM68.4198 18.6044H68.5507L68.4853 18.7167L68.4198 18.6044ZM70.6455 17.8839C70.7594 17.9501 70.8824 18.0215 71.0197 18.0711L70.9542 18.0852C70.4719 18.8851 70.1367 18.871 69.8587 18.5483C69.8409 18.4352 69.8368 18.3171 69.8467 18.2013C69.8565 18.0854 69.8801 17.9742 69.916 17.8747C70.1525 17.5974 70.3727 17.7254 70.6455 17.8839ZM72.5648 15.924L72.6956 15.9942L72.6302 16.0082C72.6069 16.1323 72.5796 16.2541 72.5485 16.3731C72.4422 16.5836 72.385 16.4011 72.4013 16.2748C72.413 16.1846 72.4623 16.1015 72.5103 16.0204C72.5295 15.9881 72.5485 15.956 72.5648 15.924ZM77.2167 15.2364L77.2903 15.5732L77.2331 15.6293C77.1922 15.6574 77.1677 15.6293 77.1677 15.6293C77.1018 15.5843 77.0388 15.5279 76.9796 15.4609C77.0613 15.3945 77.1404 15.3195 77.2167 15.2364ZM78.6556 15.1942C78.6883 15.1942 78.7864 15.3907 78.7864 15.489L78.7292 15.5451C78.6693 15.592 78.6061 15.625 78.5411 15.6433C78.5003 15.6574 78.3531 15.5311 78.4267 15.4469C78.4481 15.4223 78.4737 15.3906 78.5001 15.358C78.5641 15.2788 78.6324 15.1942 78.6556 15.1942ZM119.999 22.0847V22.211L119.909 22.1549L119.999 22.0847ZM124.201 20.1621L124.136 20.0639H124.267L124.201 20.1621ZM122.681 19.7972H123L122.926 19.9095C122.795 20.4147 122.713 20.12 122.681 19.7972ZM125.874 21.1914C127.386 20.3332 128.897 19.4759 130.529 19.7972L130.456 19.9376C129.908 20.5167 129.305 20.9208 128.673 21.1304C128.659 21.1141 128.645 21.096 128.631 21.0779C128.547 20.9717 128.464 20.8666 128.387 21.1304C128.375 21.158 128.399 21.2158 128.426 21.2826C128.454 21.352 128.485 21.4309 128.485 21.4953L124.062 22.1408C124.672 21.8735 125.273 21.5324 125.874 21.1914ZM130.595 19.7692L130.881 19.5166L130.807 19.6569C130.791 20.12 130.636 19.8814 130.595 19.7692ZM134.257 21.3129L134.355 21.2146L134.266 21.3409L133.947 21.5795L134.257 21.3129ZM136.239 21.1498C136.274 21.2276 136.309 21.3053 136.309 21.383L136.236 21.5234C136.186 21.5062 136.137 21.4827 136.089 21.4532C136.072 21.4532 135.982 21.355 136.031 21.2708C136.045 21.2474 136.061 21.211 136.077 21.173C136.119 21.0743 136.165 20.9652 136.195 21.0462C136.208 21.0808 136.223 21.1153 136.239 21.1498ZM137.503 21.2708C137.536 21.3129 137.593 21.383 137.593 21.383L137.533 21.4852C137.524 21.4752 137.514 21.4647 137.503 21.4532C137.462 21.4111 137.47 21.2287 137.503 21.2708ZM142.515 24.0494L142.384 24.1476L142.278 24.0494H142.515ZM144.567 22.5197C144.696 22.5275 144.823 22.575 144.943 22.6601L144.869 22.8285C144.869 22.903 144.869 23.0339 144.894 23.0684C144.83 23.0735 144.759 23.0923 144.688 23.111C144.521 23.1546 144.357 23.1978 144.297 23.0671C144.02 22.4705 144.304 22.4971 144.49 22.5146C144.519 22.5173 144.545 22.5197 144.567 22.5197ZM148.508 24.2839C148.527 24.3457 148.548 24.4129 148.573 24.4704L148.499 24.6388C148.412 24.653 148.349 24.6207 148.286 24.5888C148.224 24.5575 148.163 24.5267 148.082 24.5406C147.919 24.5686 147.821 24.3441 147.919 24.2178C148.017 24.0915 148.368 24.0915 148.417 24.0915C148.448 24.0915 148.476 24.1799 148.508 24.2839ZM149.774 24.3301L150.02 24.4002L149.938 24.7932C149.878 24.7153 149.823 24.6258 149.774 24.5265V24.3301Z' fill='%23b3f2fa'/%3e%3c/svg%3e ")
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: transparent
}

header .footermenus li:not(.cta) a {
    font-weight: 400;
    font-size: var(--text-s);
    display: inline-block
}

header nav ul#nav, .showhidelogin ul {
    display: block;
    padding: 0px 0;
    margin: 0;
    line-height: 1.4 !important;
}

    header div.inner-nav ul#nav li, .showhidelogin ul li {
        line-height: 1.4 !important;
    }

.hamburger {
    color: var(--secondary);
    transition: all 0.4s ease-in-out;
    z-index: 1060
}

    .hamburger.is-active {
        background-color: rgba(193,159,98,0.9)
    }

.hamburger__menu {
    display: flex;
    align-items: center;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: var(--secondary)
}

.hamburger__menu {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 4px solid var(--greenlight);
    background-color: var(--white);
    font-size: 0;
    transition: all 0.3s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px;
    cursor: pointer;
    z-index: 4;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M2.47412 12.9784H15.4741' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M2.47412 8.97844H15.4741' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M2.47412 4.97844H15.4741' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ")
}

    .hamburger__menu:hover {
        border: 4px solid var(--primary)
    }

.menu-open .hamburger__menu {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.5203 3.43261L3.42808 14.5248' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M3.42798 3.43267L14.5202 14.5249' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ")
}

@media (min-width: 991px) {
    header nav {
        position: relative;
        opacity: 1;
        transform: none;
        z-index: 1
    }

    .hamburger {
        display: none
    }
}

@media (max-width: 992px) {
    .cs_image_box {
        display: none;
    }

    .content_home_page main {
        margin-top: 120px;
        padding-top: 0px;
    }

    .cs_section_heading {
        padding-top: 0px;
    }

    h1.hptitle {
        font-size: 4rem;
    }

    header {
        padding: 24px 0;
        top: 8px;
        max-width: calc(100vw - 16px)
    }

        header nav {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translate(-50%,calc(-100% - 96px));
            text-align: center;
            opacity: 0;
            transition: .3s;
            z-index: 9999;
            width: 100%;
            height: 85vh
        }

    .menu-open header nav {
        opacity: 1;
        transform: translate(-50%,0%)
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        background-color: white;
        border-radius: 24px;
        padding: 24px 0;
        overflow-y: scroll;
        height: calc(88vh - 100px)
    }

        header nav ul li {
            margin-bottom: 16px;
            font-size: var(--text-m)
        }

            header nav ul li:not(.cta) a:not(.cta).nav-link {
                padding: 0 24px;
                line-height: 32px
            }

        header nav ul .footermenus li:not(.cta) {
            margin-bottom: 0 !important
        }

            header nav ul .footermenus li:not(.cta) a {
                font-weight: 500
            }

    header .cta:not(.cta--outline) {
        padding: 8px 16px !important;
        line-height: 24px
    }

    header nav ul li .dropdown-toggle::after {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='16' fill='%23DCE7E3'/%3e%3crect x='4' y='4' width='24' height='24' rx='12' fill='white'/%3e%3cpath d='M14.4814 12.8793L17.4548 15.8529C17.4938 15.8919 17.5158 15.9448 17.5158 15.9999C17.5158 16.0551 17.4938 16.108 17.4548 16.147L14.4814 19.1206' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ")
    }

    header nav .svg--fb {
        position: absolute;
        bottom: 24px;
        right: 24px
    }

    header nav ul li:not(.cta) a:not(.cta).nav-link:hover, header nav ul li:not(.cta) a:not(.cta).nav-link:active, header nav ul li:not(.cta) a:not(.cta).nav-link.active, header nav ul li.active:not(.cta) a:not(.cta).nav-link, header nav ul li:not(.cta) a:not(.cta).nav-link:focus-visible {
        background-size: cover
    }

    header nav ul.dropdown-menu {
        top: 0px !important
    }

        header nav ul.dropdown-menu [class*="col-"] {
            padding: 0 24px
        }

            header nav ul.dropdown-menu [class*="col-"]:first-child {
                padding: 24px;
                border-bottom-left-radius: 0;
                border-top-right-radius: 24px
            }

            header nav ul.dropdown-menu [class*="col-"]:nth-child(2) {
                padding-top: 16px
            }

            header nav ul.dropdown-menu [class*="col-"]:last-child {
                padding-left: 24px
            }
}

@media(max-width: 400px) {
    header .logo {
        max-width: 100px;
        margin-left: 8px
    }

    header {
        max-width: 93%
    }
}

.stretched-link {
    position: initial
}

    .stretched-link:after {
        z-index: 10
    }


.cta, button {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 8px;
    letter-spacing: 8%;
    position: relative;
    text-decoration: none;
}

.cta--primary {
    background-color: var(--primary);
    border: 2.5px solid transparent;
    box-shadow: 0px 12px 32px 0px #0C4A4229;
    color: #FFFFFF;
}

    .cta--primary:hover {
        background-color: #fb9e4d;
        border-color: #fb9e4d;
        color: #FFFFFF;
    }

    .cta--primary:focus {
        background-color: #fb9e4d;
        box-shadow: 0px 12px 32px 0px #03619329;
        color: #FFFFFF;
    }

.cta--secondary {
    background-color: var(--secondary);
    border: 1px solid transparent;
    color: var(--white);
}

    .cta--secondary:hover {
        background-color: #1e77a7;
        border-color: #1e77a7;
        color: var(--white);
    }

    .cta--secondary:focus {
        background-color: #1e77a7;
        color: var(--white);
        box-shadow: 0 0 0 0.2rem rgba(98,179,208,0.25)
    }

.cta--submit {
    background-color: var(--purple) !important;
    border: 1px solid transparent;
    box-shadow: 0px 12px 32px 0px #C897EE29
}

    .cta--submit:hover {
        background-color: #E1C0FC !important;
        border-color: #E1C0FC !important
    }

    .cta--submit:focus {
        background-color: #E1C0FC !important;
        box-shadow: 0px 12px 32px 0px #C897EE29
    }

.cta--outline {
    color: var(--secondary);
    border: 2.5px solid var(--secondary);
    background-color: transparent;
    letter-spacing: 8%
}

    .cta--outline:hover, .cta--outline:focus {
        color: var(--primary) !important;
        border: 2.5px solid var(--primary);
        background-color: transparent
    }

    .cta--outline.arrow--right:hover::after {
        background: var(--primary)
    }

    .cta--outline.shadow {
        box-shadow: 0px 12px 32px 0px #0C4A4229 !important;
    }

.cta--upload {
    padding: 12px 42px 12px 18px;
    background-repeat: no-repeat;
    background-position: center right 18px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.02539 11.8653V2.78564' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M10.539 4.3041L8.02632 1.81201L5.51367 4.3041' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M14.3074 11.8652V12.6959C14.3074 13.6135 13.5574 14.3573 12.6323 14.3573H3.41924C2.49411 14.3573 1.74414 13.6135 1.74414 12.6959V11.8652' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ")
}

    .cta--upload:hover {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.02539 11.8653V2.78564' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M10.539 4.3041L8.02632 1.81201L5.51367 4.3041' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M14.3074 11.8652V12.6959C14.3074 13.6135 13.5574 14.3573 12.6323 14.3573H3.41924C2.49411 14.3573 1.74414 13.6135 1.74414 12.6959V11.8652' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ")
    }

.cta--small {
    padding: 7px 14px
}

.cta--xs {
    padding: 4px 12px;
    border-radius: 5px 5px 5px 5px;
    font-size: .75rem;
}

.arrow--right {
    padding: 12px 42px 12px 18px
}

.cta--small.arrow--right {
    padding: 7px 42px 7px 14px
}

.arrow--right::after {
    transition: .2s;
    position: absolute;
    content: "";
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--secondary);
    -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.2478 8.69043H1.7522' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M12.1653 10.7731L14.2479 8.69051L12.1653 6.60791' stroke='%230C4A42' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ")
}

.cta--primary.arrow--right::after {
    background: var(--white);
}

.cta--simple {
    font-size: var(--text-s);
    font-weight: 700;
    color: var(--secondary) !important;
    text-transform: initial;
    text-decoration-line: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 3px;
    padding-left: 0
}

    .cta--simple:hover {
        text-decoration: none;
        text-decoration-color: #fb9e4d !important
    }

    .cta--simple.cta--back::before {
        position: absolute;
        content: "";
        top: 50%;
        left: -24px;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1.75244 8.3313L14.248 8.3313' stroke='%23f38320' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M3.83398 6.24886L1.75138 8.33146L3.83398 10.4141' stroke='%23f38320' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg> ")
    }

@media(max-width: 576px) {
    .cta--simple.cta--back {
        padding-left: 24px
    }

        .cta--simple.cta--back::before {
            left: 0
        }

    .cta--outline {
        line-height: var(--text-xs)
    }
}

.cta--arrow {
    position: relative;
    color: var(--text-body);
    font-weight: 600
}

    .cta--arrow:after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-left: 5px;
        vertical-align: middle;
        transition: 0.4s;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg id='fi_11892557' enable-background='new 0 0 512 512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3e%3cpath id='Arrow_3' d='m234.2 363.7 39.1 39.2 147-146.9-147-146.9-39.1 39.2 80 80h-222.5v55.4h222.5z'%3e%3c/path%3e%3c/svg%3e")
    }

    .cta--arrow:hover {
        color: var(--secondary)
    }

        .cta--arrow:hover:after {
            margin-left: 10px
        }

.cta--white {
    color: var(--text-bady);
    background-color: var(--white)
}

    .cta--white:hover {
        color: var(--white);
        background-color: transparent !important;
        border: 1px solid var(--white)
    }

.latestinfo {
    margin-bottom: 120px;
}

.heading-style-h1 {
    color: #000;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.16;
}

@media screen and (min-width: 1280px) {
    .heading-style-h1 {
        font-size: 60px;
    }
}

.heading-style-h6 {
    color: #000;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
}

    .heading-style-h6.experince-number-text {
        color: #606060;
        padding-top: 10px;
    }

.ui-widget-content {
    max-height: 370px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 10px;
}

.et_loginform_box {
    width: 100%;
}

.et_login_box {
    width: 100%;
    position: relative;
}

.et_loginform {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    transition: all .3s ease;
}

    .et_loginform .logintitle {
        font-weight: 600;
        margin: 0px 0px 10px 0px;
    }

.et_loginform_box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.etlogin-row {
    width: 100%;
    position: relative;
}

    .etlogin-row > input[type="text"], .etlogin-row > input[type="password"] {
        width: 100%;
        padding: 10px 15px;
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-body);
        line-height: 1.5;
        margin: 0px;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: none;
        outline: none;
    }

.et-rmbox {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .et-rmbox .rememberme {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

        .et-rmbox .rememberme > label {
            font-size: 1rem;
            color: var(--secondary);
            font-weight: 400;
            text-decoration: none;
        }

    .et-rmbox .forgotpass {
        width: auto;
        text-align: right;
    }

        .et-rmbox .forgotpass.btl {
            padding: 15px 0px 0px 0px;
            border-top: 1px solid #ccc;
            width: 100%;
            margin-top: 6px;
            text-align: left;
        }

        .et-rmbox .forgotpass > a {
            font-size: 1rem;
            color: var(--secondary);
            font-weight: 400;
            text-decoration: none;
            text-align: right;
        }

.etlogin-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.travelsearch_body {
    /*    background: linear-gradient(#D0DFE8 0%, #D0DFE8 40%, var(--bg-body) 0%, var(--bg-body));*/
    background: linear-gradient(#d0dfe8d6 0%, #d0dfe8d6 670px, var(--bg-body) 0%, var(--bg-body)), url(../images/et_searchbg.jpg) center top -50px no-repeat;
}

.et_services {
    background: #D0DFE8;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 0px 80px 0px;
    text-align: center;
    clear: both;
}

.ets_card {
    margin-bottom: 20px;
    width: 100%;
    background: #fff;
    border: 0px solid #D0DFE8;
    border-radius: 15px;
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    color: var(--text-body);
    text-decoration: none;
    cursor: pointer;
}

    .ets_card:hover {
        color: var(--text-body);
        text-decoration: none;
        cursor: pointer;
    }

    .ets_card > .ets_img {
        width: 100%;
        height: 230px;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        text-decoration: none;
        user-select: none;
        cursor: pointer;
        border-radius: 15px 15px 0px 0px;
    }


        .ets_card > .ets_img > img {
            display: block;
            width: auto;
            min-width: 100%;
            height: 100%;
            min-height: 100%;
            border-radius: 15px 15px 0px 0px;
        }

.ets_para {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
}

    .ets_para > h4 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.4;
        margin: 0;
    }

    .ets_para > p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.6;
        margin: 0;
    }

._root_liw6l_1 {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    touch-action: manipulation
}


._indicator_1iblu_31 {
    animation-direction: alternate;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: _pulse_1iblu_1;
    animation-timing-function: cubic-bezier(.4,0,.2,1)
}

@keyframes _pulse_1iblu_1 {

    0% {
        filter: grayscale(1);
        transform: scale(.75) rotate(-540deg)
    }

    to {
        filter: grayscale(0);
        transform: scale(1) rotate(0)
    }
}


#hotelDetailsModal button.close {
    position: absolute;
    z-index: 11;
    top: 8px;
    right: 15px;
    opacity: 0.6;
}


#hotelDetailsModal .modal-content {
    border-radius: 15px;
}

#hotelDetailsModal .modal-body {
    padding-top: 30px;
}

#modalContent > iframe {
    height: calc(100vh - 130px);
    border: none;
}


.swiper.marquee-swiper-one {
    margin-top: 8rem;
    margin-bottom: 100px;
    mask-image: linear-gradient( to right, transparent 0%, white 10%, white 90%, transparent 100% );
}


.swiper.marquee-swiper-two {
    margin-top: 0rem;
    margin-bottom: 0px;
    mask-image: linear-gradient( to right, transparent 0%, white 10%, white 90%, transparent 100% );
}

.swiper-wrapper.marquee-swiper {
    transition-timing-function: linear;
    align-items: center;
}

.swiper-slide.marquee-swiper {
    width: auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 0 64px
}


.swiper-slide {
    width: auto;
    min-height: 146px;
}

.et_partners {
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
    padding-bottom: 40px;
    margin-bottom: 80px;
    position: relative;
}

.etp_anibox {
    width: 160px;
    height: 160px;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    mix-blend-mode: multiply;
}

.marquee_logo {
    width: auto;
    position: relative;
}

    .marquee_logo > img {
        width: auto;
        position: relative;
        display: block;
        max-width: 100%;
        max-height: 30px;
        filter: gray;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
        mix-blend-mode: multiply;
    }

        .marquee_logo > img:hover {
            -webkit-filter: grayscale(0);
            filter: none;
        }

.sg-statistics__item-circle {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 146px;
    height: 146px;
    border-radius: 50%
}

.sg-statistics__item-circle_light-seafoam {
    background-color: #f0ff44;
}

.sg-statistics__item-circle_medium-teal {
    background-color: #dbefe8;
}

.sg-statistics__item-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px
}

.sg-statistics__item-num {
    flex-shrink: 0;
    font-weight: 800;
    font-size: 48px;
    line-height: 53px
}

.sg-statistics__item-description {
    font-size: 18px;
    line-height: 29px
}

@media (min-width: 768px) {
    .sg-statistics__item-description {
        font-size: 20px;
        line-height: 32px
    }
}

.et_about {
    width: 100%;
    margin-bottom: 150px;
    padding-top: 50px;
    position: relative;
    text-align: left;
}

    .et_about > h2 {
        font-size: 3rem;
        color: #182945;
        line-height: 1.2;
        margin: 0px 0px 30px 0px;
        padding: 0;
        font-weight: 800;
    }

    .et_about > p {
        font-size: 1.2rem;
        color: #182945;
        line-height: 1.6;
        margin: 0px 0px 30px 0px;
        padding: 0;
    }

.et_tmt {
    width: 100%;
    text-align: center;
    position: relative;
}

    .et_tmt > h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #182945;
        line-height: 1.4;
        margin: 0px 0px 20px 0px;
        padding: 0;
    }

    .et_tmt > h6 {
        width: 100%;
        max-width: 890px;
        font-size: 1rem;
        color: #182945;
        line-height: 1.6;
        margin: 0px auto 60px auto;
        padding: 0;
        border-bottom: 1px solid #182945;
        padding-bottom: 30px;
    }

.et_gsa {
    width: 100%;
    text-align: center;
    position: relative;
    top: 45px;
}

    .et_gsa .et_ctn {
        margin-top: 30px;
    }

.et_gsamask {
    margin-top: 0rem;
    margin-bottom: 0px;
    mask-image: linear-gradient( to right, transparent 0%, white 50%, white 50%, transparent 100% );
}


.commentblock {
    padding: 40px 0px;
    max-width: 670px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 80px;
}

    .commentblock blockquote {
        position: relative;
        border-left: 8px solid var(--primary);
        padding-left: 40px;
        font-size: var(--text-l);
        font-weight: 500
    }

        .commentblock blockquote::before, .commentblock blockquote::after {
            background: var(--primary);
            z-index: -1
        }

        .commentblock blockquote::before {
            position: absolute;
            content: "";
            width: 100px;
            height: 80px;
            bottom: -40px;
            left: -40px;
            -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='100' height='81' viewBox='0 0 100 81' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M94.1341 0.359376L94.1341 16.9791L84.6369 16.9791C77.0019 16.9791 73.1844 20.8289 73.1844 28.5284L73.1844 37.5425L77.3743 37.5425C83.892 37.5425 89.2924 39.5143 93.5754 43.458C97.8585 47.4016 100 52.3782 100 58.3875C100 64.9603 97.8585 70.2185 93.5754 74.1622C89.2924 78.2936 83.892 80.3594 77.3743 80.3594C70.8566 80.3594 65.5493 78.1998 61.4525 73.8805C57.1695 69.749 55.0279 64.303 55.0279 57.5425L55.0279 28.2467C55.0279 9.65516 64.2458 0.359378 82.6816 0.359377L94.1341 0.359376ZM39.1061 0.35938L39.1061 16.9791L29.6089 16.9791C21.9739 16.9791 18.1564 20.8289 18.1564 28.5284L18.1564 37.5425L22.3464 37.5425C28.864 37.5425 34.2644 39.5143 38.5475 43.458C42.8305 47.4016 44.9721 52.3782 44.9721 58.3876C44.9721 64.9603 42.8305 70.2185 38.5475 74.1622C34.2644 78.2937 28.864 80.3594 22.3464 80.3594C15.8287 80.3594 10.5214 78.1998 6.42457 73.8805C2.14152 69.7491 -5.69522e-06 64.303 -6.28625e-06 57.5425L-8.84737e-06 28.2467C-1.04727e-05 9.65517 9.21786 0.359383 27.6536 0.359381L39.1061 0.35938Z' fill='%2338BD6D' fill-opacity='0.16'/%3e%3c/svg%3e ")
        }

        .commentblock blockquote::after {
            position: absolute;
            content: "";
            width: 100px;
            height: 80px;
            top: -40px;
            right: -40px;
            -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='100' height='81' viewBox='0 0 100 81' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.86592 80.3594V63.7397H15.3631C22.9981 63.7397 26.8156 59.8899 26.8156 52.1903V43.1763H22.6257C16.108 43.1763 10.7076 41.2044 6.42458 37.2608C2.14153 33.3171 0 28.3406 0 22.3312C0 15.7584 2.14153 10.5002 6.42458 6.55656C10.7076 2.4251 16.108 0.359375 22.6257 0.359375C29.1434 0.359375 34.4507 2.519 38.5475 6.83825C42.8305 10.9697 44.9721 16.4157 44.9721 23.1763V52.472C44.9721 71.0636 35.7542 80.3594 17.3184 80.3594H5.86592ZM60.8939 80.3594V63.7397H70.3911C78.0261 63.7397 81.8436 59.8899 81.8436 52.1903V43.1763H77.6536C71.136 43.1763 65.7356 41.2044 61.4525 37.2608C57.1695 33.3171 55.0279 28.3406 55.0279 22.3312C55.0279 15.7584 57.1695 10.5002 61.4525 6.55656C65.7356 2.4251 71.136 0.359375 77.6536 0.359375C84.1713 0.359375 89.4786 2.519 93.5754 6.83825C97.8585 10.9697 100 16.4157 100 23.1763V52.472C100 71.0636 90.7821 80.3594 72.3464 80.3594H60.8939Z' fill='%2338BD6D' fill-opacity='0.16'/%3e%3c/svg%3e ")
        }

        .commentblock blockquote span {
            font-weight: 700
        }

    .commentblock .author {
        display: flex;
        align-items: center;
        text-align: right
    }

    .commentblock .author__name p {
        margin: 0
    }

        .commentblock .author__name p:first-child {
            font-weight: bold
        }

    .commentblock .author__img {
        position: relative;
        max-width: 80px;
        margin-left: var(--space-l);
        background-color: var(--primary)
    }

        .commentblock .author__img::before {
            position: absolute;
            content: "";
            top: -5px;
            left: -22px;
            width: 104px;
            height: 48px;
            transform: translate(-50%,-50%) rotate(59.53deg);
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='104' height='49' viewBox='0 0 104 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_922_5148)'%3e%3cpath d='M102.839 13.3981C102.66 14.4925 102.466 15.5847 102.259 16.6745C101.409 21.0456 99.987 25.2855 98.0285 29.2845C96.8258 31.7085 95.1215 33.8492 93.0285 35.5645C91.6647 36.7412 89.9027 37.3522 88.1031 37.2722C86.3036 37.1923 84.6026 36.4275 83.3485 35.1345C80.6185 32.5045 79.2085 29.1345 78.2285 25.5745C77.3624 22.1288 77.0253 18.5715 77.2285 15.0245L77.2285 12.3045C76.4884 12.3045 76.2907 12.7146 76.1028 13.1045C76.0597 13.194 76.0171 13.2824 75.9685 13.3645C74.9163 15.3947 73.4598 17.1882 71.6885 18.6345C70.9086 19.2644 69.99 19.6997 69.0085 19.9045C68.0566 20.1111 67.0625 19.9819 66.1949 19.539C65.3272 19.0961 64.6396 18.3667 64.2485 17.4745C63.7052 16.1823 63.2801 14.8435 62.9785 13.4745C62.8479 13.0245 62.7489 12.564 62.6509 12.1083C62.6138 11.9361 62.5769 11.7645 62.5385 11.5945L62.1585 11.5945C61.9385 12.0745 61.6985 12.5945 61.4885 13.0445C61.1956 13.702 60.9172 14.3673 60.6389 15.0325C60.0241 16.5019 59.4095 17.9709 58.6385 19.3545C57.7206 20.964 56.609 22.4551 55.3285 23.7945C53.9934 25.2052 52.1594 26.0378 50.2185 26.1145C49.1435 26.2106 48.0641 25.9842 47.1183 25.4641C46.1725 24.944 45.4032 24.1538 44.9085 23.1945C44.6569 22.7571 44.4519 22.2946 44.2463 21.8306C44.1087 21.5202 43.9709 21.2091 43.8185 20.9045C43.6995 20.6727 43.5569 20.4527 43.3663 20.1584C43.2525 19.9829 43.1217 19.781 42.9685 19.5345C42.7742 20.0329 42.6071 20.4394 42.4575 20.8035C42.3069 21.1699 42.1739 21.4934 42.0485 21.8245C40.3919 26.5188 37.619 30.7399 33.9685 34.1245C31.9672 35.9575 29.6032 37.3498 27.0295 38.2111C24.4559 39.0724 21.7301 39.3836 19.0285 39.1245C17.1264 39.0757 15.2778 38.4852 13.6995 37.4224C12.1213 36.3596 10.879 34.8686 10.1185 33.1245C9.95041 32.8124 9.83551 32.4744 9.77853 32.1245C9.78617 31.7143 9.83306 31.3057 9.91854 30.9045C10.3323 30.9826 10.7352 31.1101 11.1185 31.2845C11.4896 31.5615 11.8109 31.8997 12.0685 32.2845C14.9985 35.9945 18.8785 36.7445 23.2985 35.9745C28.5085 35.0545 32.2985 32.0545 35.2985 27.9045C37.9632 24.0471 39.7548 19.6551 40.5485 15.0345C40.9254 12.9896 41.1626 10.9215 41.2585 8.84448C41.3385 7.51151 41.3119 6.15633 41.2852 4.79967C41.2719 4.12078 41.2585 3.44151 41.2585 2.76448C41.2364 2.31327 41.2599 1.86099 41.3285 1.41449C41.3673 1.04435 41.5345 0.699501 41.8013 0.440029C42.0681 0.180555 42.4175 0.022895 42.7885 -0.00551255C42.987 -0.0149284 43.1854 0.0157247 43.3718 0.0846222C43.5582 0.153516 43.7288 0.259236 43.8734 0.395489C44.0181 0.531739 44.1338 0.695726 44.2137 0.877668C44.2936 1.05961 44.3361 1.25578 44.3385 1.45448C44.5234 2.85094 44.6336 4.25628 44.6685 5.66448C44.6623 9.21237 45.0242 12.7513 45.7485 16.2245C46.1492 17.9172 46.7187 19.5655 47.4485 21.1445C48.2685 22.9445 49.5585 23.3245 51.3485 22.5345C52.7266 21.8716 53.8883 20.8313 54.6985 19.5345C56.4954 16.7403 57.8985 13.7118 58.8685 10.5345C60.8443 4.72363 62.2902 -1.25407 63.1885 -7.32552C63.2032 -7.82845 63.3592 -8.31708 63.6385 -8.73553C63.8192 -8.93057 64.037 -9.08762 64.2791 -9.19751C64.5212 -9.3074 64.7828 -9.36793 65.0485 -9.37553C65.3036 -9.2967 65.5403 -9.1676 65.7447 -8.99586C65.949 -8.82411 66.1169 -8.61319 66.2385 -8.37553C66.423 -7.90191 66.4816 -7.38854 66.4085 -6.88552C66.2285 -3.68552 66.0485 -0.48553 65.8085 2.71447C65.4816 6.30731 65.5856 9.92638 66.1185 13.4945C66.2434 14.2139 66.4724 14.9112 66.7985 15.5645C67.4485 16.8845 68.4385 17.1745 69.5085 16.1945C70.6281 15.1674 71.6157 14.0052 72.4485 12.7345C74.6927 9.13016 76.4544 5.24704 77.6885 1.18447C78.135 -0.194184 78.5631 -1.58511 78.992 -2.97869C79.1107 -3.36417 79.2294 -3.74984 79.3485 -4.13552C79.4181 -4.40628 79.5016 -4.6733 79.5985 -4.93552C79.7222 -5.34838 79.9964 -5.69975 80.3667 -5.92013C80.7371 -6.1405 81.1767 -6.21381 81.5985 -6.12553C82.3385 -5.94553 82.7585 -5.36553 82.7085 -4.28553C82.6757 -3.57754 82.5699 -2.93832 82.4643 -2.30023C82.4088 -1.96495 82.3533 -1.62999 82.3085 -1.28553C82.1184 0.196407 81.9314 1.67404 81.7446 3.15125C81.3614 6.17964 80.9785 9.20624 80.5685 12.2645C80.1435 15.2796 80.1435 18.3394 80.5685 21.3545C80.9439 24.4941 81.9436 27.5269 83.5085 30.2745C83.9968 31.0956 84.57 31.8631 85.2185 32.5645C85.5509 32.9924 85.9687 33.3463 86.4453 33.6038C86.922 33.8612 87.4471 34.0165 87.9871 34.0598C88.5272 34.1031 89.0703 34.0334 89.5819 33.8551C90.0935 33.6769 90.5623 33.394 90.9585 33.0245C93.0325 31.3573 94.6525 29.1939 95.6685 26.7345C97.5355 22.4597 98.853 17.967 99.5907 13.3639C100.411 9.86994 103.466 11.1639 102.839 13.3981Z' fill='%23f38320'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_922_5148'%3e%3crect width='103.93' height='48.63' fill='white' transform='translate(0.0339355 0.162109)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ")
        }

        .commentblock .author__img, .commentblock .author__img img {
            border-radius: 100%
        }

@media(max-width: 576px) {
    .commentblock {
        padding: 0
    }

        .commentblock .author__img {
            max-width: 80px
        }

            .commentblock .author__img::before {
                top: 0px;
                left: -18px;
                background-size: 75%;
                background-repeat: no-repeat
            }

        .commentblock blockquote {
            padding-left: 24px
        }

            .commentblock blockquote::before, .commentblock blockquote::after {
                width: 40px;
                height: 32px;
                -webkit-mask-size: contain
            }

            .commentblock blockquote::before {
                bottom: 0;
                left: -10px
            }

            .commentblock blockquote::after {
                top: 0;
                right: 0
            }
}


.company_details {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    text-align: center;
}



/* Search Hotel Module start here */
.hs_container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    position: relative;
    z-index: 11;
    padding-left: 0px;
    padding-right: 0px;
}

    .hs_container:after {
        clear: both;
    }

.hs_wrapper {
    width: 100%;
    position: relative;
    padding-top: 0px;
    padding-bottom: 60px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

    .hs_wrapper > h1 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.3;
        margin: 0px 0px 20px 0px;
    }

.hs_search_box {
    width: 100%;
    max-width: 770px;
    background: #fff;
    height: auto;
    padding: 40px 35px 20px 35px;
    border: 1px solid #E8ECF7;
    border-radius: 15px;
    text-align: left;
}

    .hs_search_box > h1 {
        font-size: 2rem;
        font-weight: 800;
        /*    color: var(--secondary);*/
        line-height: 1.3;
        margin: 0px 0px 33px 0px;
    }

.hs_info_box {
    width: 100%;
    max-width: calc(100% - 800px);
    height: auto;
    padding: 0px;
    text-align: left;
}

    .hs_info_box > h4 {
        font-size: 1.2rem;
        font-weight: 800;
        /*    color: var(--primary);*/
        line-height: 1.3;
        margin: 0px 0px 15px 0px;
    }

.lt_search {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2%;
}

    .lt_search .lt_sinfo {
        width: 24%;
        background: #ffffff3b;
        border: 1px solid #E8ECF7;
        border-radius: 10px;
        padding: 10px 10px;
        cursor: pointer;
        display: block;
        text-decoration: none;
        box-shadow: none;
        outline: none;
        transition: all .3s ease;
    }

        .lt_search .lt_sinfo > span {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: rgba(32, 42, 52, 1);
            margin: 0px 0px 5px 0px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .lt_search .lt_sinfo > small {
            display: block;
            font-size: 11px;
            font-weight: 500;
            color: rgba(32, 42, 52, 1);
            margin: 0px 0px 0px 0px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .lt_search .lt_sinfo:hover {
            background: #f4f6fd82;
            transition: all .3s ease;
        }


.lt_pst {
    width: 100%;
    height: auto;
    min-height: 195px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    flex-direction: column;
    background: #ffffff3b;
    padding: 8px 0px;
    border-radius: 15px;
    border: 1px solid #E8ECF7;
}

    .lt_pst .lts_list {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0px;
        border-radius: 0px;
        padding: 4px 15px;
        flex-direction: column;
        text-decoration: none;
        cursor: pointer;
        border-bottom: 1px solid #f4f6fdd1;
        transition: all .3s ease;
    }

        .lt_pst .lts_list > span {
            display: block;
            margin-bottom: 2px;
            font-size: 14px;
            line-height: 1.2;
            font-weight: 500;
            color: var(--secondary);
            max-width: 100%;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .lt_pst .lts_list > small {
            display: block;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 400;
            color: rgba(0, 0, 0, 1);
            max-width: 100%;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .lt_pst .lts_list:last-child {
            border-bottom: 0px solid #ddd;
        }

        .lt_pst .lts_list:hover {
            background: #f4f6fd54;
            transition: all .3s ease;
        }


.slick-slider {
    width: 100%;
    max-width: 100%;
    position: relative;
}

    .slick-slider .slick-slide {
        margin-right: 20px;
    }

.so_item {
    width: auto;
    position: relative;
}

    .so_item .so_img {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 10px;
    }

        .so_item .so_img > img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 10px;
        }


.hs_input_wrapper {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    flex-wrap: wrap;
}

.hs_input {
    width: auto;
    position: relative;
    margin-bottom: 35px;
}

    .hs_input.w100 {
        width: 100%;
    }

    .hs_input.w50 {
        width: 50%;
    }

    .hs_input.w45 {
        width: 45%;
    }

    .hs_input.w40 {
        width: 40%;
    }

    .hs_input.w35 {
        width: 35%;
    }

    .hs_input.w25 {
        width: 25%;
    }

    .hs_input.w20 {
        width: 20%;
    }

    .hs_input.w10 {
        width: 10%;
    }

    .hs_input.w5 {
        width: 5%;
    }

    .hs_input > label {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        color: var(--secondary);
        line-height: 1.4;
        margin: 0px 0px 0px 0px;
    }

    .hs_input input[type="text"] {
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        color: rgba(42, 52, 62, 1);
        line-height: 1.4;
        margin: 0px;
        padding: 8px 0px 8px 0px;
        background: rgba(0, 0, 0, 0);
        border: 0px solid #fff;
        border-bottom: 1px solid #f2f2f2;
        box-shadow: none;
        outline: none;
        text-align: left;
    }

    .hs_input .accordion .accordion-item > h2.accordion-header > button.accordion-button {
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        color: rgba(42, 52, 62, 1);
        line-height: 1.4;
        margin: 0px;
        padding: 8px 0px 8px 0px;
        background: rgba(0, 0, 0, 0);
        border: 0px solid #fff;
        border-radius: 0px;
        border-bottom: 1px solid #fb9e4d;
        box-shadow: none;
        outline: none;
        text-align: left;
    }

        .hs_input .accordion .accordion-item > h2.accordion-header > button.accordion-button.collapsed {
            border-bottom: 1px solid #f2f2f2;
        }

    .hs_input input[type="text"]::placeholder {
        color: rgba(42, 52, 62, .7);
        opacity: 1;
    }

    .hs_input input[type="text"]:focus {
        border-bottom: 1px solid #fb9e4d;
    }

    .hs_input.locsrch input[type="text"] {
        padding-left: 32px;
    }

    .hs_input .accordion .accordion-item {
        padding: 0px;
        margin: 0px;
        border: none;
        outline: none;
    }

#hs_accordion_list {
    width: 100%;
    height: auto;
    background: #fff;
    padding: 20px 20px 0px 20px;
    border: 0px solid #fff;
    border-radius: 4px;
    position: absolute;
    top: 65px;
    left: 0px;
    z-index: 12;
    box-shadow: 0 0 25px rgba(0, 0, 0, .3);
    transition: all .0s ease;
}

    #hs_accordion_list .accordion-body {
        padding: 0px 0px !important;
    }

.hs_input.locsrch svg {
    position: absolute;
    top: 34px;
    left: 0px;
    width: 22px;
    height: 22px;
}

.hs_star_type {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding-top: 8px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 9px;
    min-height: 42px;
}

    .hs_star_type .checkbox-styled {
        width: auto;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
    }

        .hs_star_type .checkbox-styled > label {
            font-size: 1rem;
            font-weight: 400;
            margin: 0px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 7px;
        }

            .hs_star_type .checkbox-styled > label > input[type="checkbox"] {
                width: 18px;
                height: 18px;
            }


.input_range {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hc_wrapper {
    width: 100%;
    position: relative;
    padding-top: 0px;
    padding-bottom: 60px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    flex-direction: column;
}

    .hc_wrapper > h1 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.3;
        margin: 0px 0px 20px 0px;
    }

.hc_reg_box {
    width: 100%;
    max-width: 100%;
    background: #fff;
    height: auto;
    padding: 30px 30px 10px 30px;
    border: 1px solid #ececec;
    border-radius: 15px;
    text-align: left;
    margin-bottom: 20px;
}

    .hc_reg_box > h2 {
        font-size: 20px;
        font-weight: 600;
        color: #2a343e;
        line-height: 1.3;
        margin: 0px 0px 20px 0px;
    }

    .hc_reg_box > h5 {
        font-size: 15px;
        font-weight: 600;
        color: rgba(32, 42, 52, .7);
        line-height: 1.3;
        margin: 0px 0px 10px 0px;
    }

.hc_input_wrapper {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3%;
    flex-wrap: wrap;
}

.hc_input {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

    .hc_input.w100 {
        width: 100%;
    }

    .hc_input.w50 {
        width: 48.5%;
    }

    .hc_input.w25 {
        width: 22.75%;
    }

    .hc_input.w33 {
        width: 31.33%;
    }

    .hc_input label {
        display: inline-block;
        width: auto;
        font-size: 15px;
        font-weight: 500;
        color: rgba(42, 52, 62, .5);
        line-height: 1.2;
        padding: 0px;
        margin: 0px 0px 0px 0px;
        position: absolute;
        cursor: text;
        transform: translateY(-25px);
        transition: transform 0.3s ease;
        left: 10px;
        bottom: -14px;
    }

        .hc_input label > span {
            background: #fff;
            display: inline-block;
            padding: 0px 5px;
        }

    .hc_input input[type="text"] {
        width: 100%;
        height: 40px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(42, 52, 62, 1);
        line-height: 1.2;
        margin: 0px;
        padding: 8px 15px 8px 15px;
        background: rgba(0, 0, 0, 0);
        border: 1px solid #c5d3ff;
        border-radius: 4px;
        box-shadow: none;
        outline: none;
        text-align: left;
        transition: 0.6s;
    }

        .hc_input input[type="text"]:focus {
            outline: none;
            border-bottom: 1px solid #fb9e4d;
        }

    .hc_input textarea {
        width: 100%;
        height: 60px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(42, 52, 62, 1);
        line-height: 1.2;
        margin: 0px;
        padding: 8px 15px 8px 15px;
        background: rgba(0, 0, 0, 0);
        border: 1px solid #c5d3ff;
        border-radius: 4px;
        box-shadow: none;
        outline: none;
        text-align: left;
        transition: 0.6s;
    }

    .hc_input select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        height: 40px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(42, 52, 62, 1);
        line-height: 1.2;
        margin: 0px;
        padding: 8px 15px 8px 15px;
        background: rgba(0, 0, 0, 0);
        border: 1px solid #c5d3ff;
        border-radius: 4px;
        box-shadow: none;
        outline: none;
        text-align: left;
        transition: 0.6s;
        background: url(../images/Caret_down.svg) no-repeat right 12px center/20px, linear-gradient(to left, rgba(255, 255, 255, 0.3) 45px, rgba(255, 255, 255, 0.2) 45px);
        cursor: pointer;
    }

        .hc_input select::-ms-expand {
            display: none;
        }

        .hc_input select:focus {
            outline: none;
        }

        .hc_input select option {
            color: inherit;
            background-color: #fff;
        }

    .hc_input.animation label {
        display: inline-block !important;
        transform: translateY(-47px);
        font-size: 12px;
        font-weight: 500;
    }

    .hc_input.animation-color label {
        color: #fb9e4d;
    }

    .hc_input.tarea.animation label {
        display: inline-block !important;
        transform: translateY(-69px);
        font-size: 12px;
        font-weight: 500;
    }

    .hc_input.tarea.animation-color label {
        color: #fb9e4d;
    }

.hc_radio {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 15px 8px 15px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #c5d3ff;
    border-radius: 4px;
}

    .hc_radio > span {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        margin-right: 30px;
        margin-left: 10px;
    }

.hs_search_btn {
    display: inline-block;
    width: auto;
    background: #fb9e4d;
    padding: 13px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    border: 1px solid #fb9e4d;
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    margin: 20px auto 0 auto;
    transition: all .3s ease;
}

    .hs_search_btn.linebtn {
        border: 1px solid #fb9e4d;
        background: #fff;
        color: #fb9e4d;
    }

    .hs_search_btn:hover {
        background: #1146cc;
        transition: all .3s ease;
    }

    .hs_search_btn.linebtn:hover {
        background: #fb9e4d;
        color: #fff;
    }

.hc_action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 30px;
}

    .hc_action .hs_search_btn {
        margin: 0px !important;
    }

.hc_pass_list {
    width: 100%;
    list-style: disc;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 0px 14px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(32, 42, 52, .7);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.rm_wrapper_box {
    width: 100%;
    position: relative;
}

    .rm_wrapper_box .rm_list {
        width: 100%;
        position: relative;
        margin-bottom: 20px;
    }

        .rm_wrapper_box .rm_list > h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fb9e4d;
            margin: 0px 0px 15px 0px;
            line-height: 1.4;
        }

        .rm_wrapper_box .rm_list .rm_col {
            width: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 4%;
        }

            .rm_wrapper_box .rm_list .rm_col .rm_number {
                width: 48%;
                position: relative;
            }

                .rm_wrapper_box .rm_list .rm_col .rm_number > h5 {
                    font-size: 14px;
                    line-height: 1.4;
                    margin: 0px 0px 15px 0px;
                    font-weight: 500;
                }

                    .rm_wrapper_box .rm_list .rm_col .rm_number > h5 > small {
                        font-size: 11px;
                        line-height: 1.4;
                        color: rgba(42, 52, 62, .5);
                    }

.qtySelector {
    border: 1px solid #ddd;
    width: 100%;
    max-width: 107px;
    height: 35px;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
}

    .qtySelector .qtyicon {
        padding: 5px 5px;
        width: 35px;
        height: 100%;
        float: left;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
        user-select: none;
    }

        .qtySelector .qtyicon.clicked {
            font-size: 12px;
            padding: 12px 5px;
        }

    .qtySelector .qtyminus {
        border-right: 1px solid #ddd;
    }

    .qtySelector .qtyplus {
        border-left: 1px solid #ddd;
    }

    .qtySelector input[type="text"].qtyValueAdult, .qtySelector input[type="text"].qtyValueChild {
        border: none;
        font-size: 14px;
        font-weight: 400;
        color: #2a343e;
        line-height: 33px;
        padding: 5px;
        width: 35px !important;
        height: 100%;
        float: left;
        text-align: center !important;
    }

.rm_actionbtn {
    width: 100%;
    position: relative;
    margin-top: 0px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

    .rm_actionbtn .ar_btn {
        width: auto;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.4;
        margin: 0px;
        padding: 6px 15px 6px 15px;
        background: #fff;
        border: 0px solid #fff;
        border-radius: 6px;
        box-shadow: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: all .3s ease;
    }

        .rm_actionbtn .ar_btn.blue {
            color: #fb9e4d;
            border: 1px solid #fb9e4d;
        }

            .rm_actionbtn .ar_btn.blue:hover {
                background: #fb9e4d;
                color: #fff;
                transition: all .3s ease;
            }

        .rm_actionbtn .ar_btn.red {
            color: #f34f4f;
            border: 1px solid #ea2330;
        }

            .rm_actionbtn .ar_btn.red:hover {
                background: #ea2330;
                color: #fff;
                transition: all .3s ease;
            }
/*.room_repeatable .field-group .rm_list{
    margin-bottom: 0px;
}*/
.room_repeatable .field-group .rm_list .rm_actionbtn {
    position: relative;
    margin-bottom: 0px;
    width: auto;
    z-index: 11;
    justify-content: flex-start;
}

.childoutput {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

    .childoutput select {
        width: 100%;
        max-width: calc(33.33% - 10px);
        border: 1px solid #fae0c9;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 400;
        color: #2a343e;
        line-height: 1.2;
        padding: 7px 15px 7px 7px;
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }

.grid {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
}

.destinations {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .destinations .grid li {
        height: 300px;
        padding: 10px;
        background-clip: content-box;
        background-size: cover;
        border-radius: 25px;
        overflow: hidden;
    }

        .destinations .grid li.large {
            flex-basis: 40%;
        }

        .destinations .grid li.small {
            flex-basis: 25%;
        }

        .destinations .grid li.med {
            flex-basis: 35%;
        }

table.et-table {
    width: 100%;
    border: 1px solid #E8ECF7;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    font-size: 0.875rem;
    margin-bottom: 0px;
}

    table.et-table > tbody > tr > th {
        background: #E8ECF7;
        color: var(--secondary);
        font-weight: 600;
    }

    table.et-table > tbody > tr > td > a {
        color: var(--secondary);
        font-weight: 500;
        text-decoration: none;
    }

    table.et-table > tbody > tr > td .label-warning {
        color: #cf9a04;
    }

    table.et-table > tbody > tr > td .label-danger {
        color: var(--red);
    }

    table.et-table > tbody > tr > td .label-success {
        color: #4BB543;
    }

    table.et-table > tbody > tr:hover {
        background: #f4f6fd;
        transition: all 0.3s ease;
    }

    table.et-table > tbody > tr > td {
        padding: .313rem .5rem;
    }

        table.et-table > tbody > tr > td > span.label {
            font-weight: 600;
        }

    table.et-table.et-roomlist > tbody > tr > td:last-child {
        text-align: right;
    }

    table.et-table.et-roomlist > tbody > tr > th:last-child {
        text-align: center;
    }

.table-title {
    margin: 0px 0px 15px 0px;
}

    .table-title > span {
        font-weight: 800;
    }

/* Search Hotel Module end here */
/*New css for about us and other pages start*/
ul.et_list_icon {
    list-style: none;
    padding: 0;
}

    ul.et_list_icon li {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
        font-size: 18px;
        margin: 8px 0;
        text-align: left;
    }

        ul.et_list_icon li .icon {
            width: 20px;
            min-width: 20px;
            height: 20px;
            position: relative;
            top: 4px;
            fill: var(--secondary); /* Green color */
        }

.std_para {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0px;
}

.et_tmt h5 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}
/*New css for about us and other pages end*/

.footer__box {
    position: relative;
    background-color: var(--bg-body);
    margin-top: -125px;
    margin-bottom: var(--space-2xl);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0px 32px 56px #06453D1A;
    overflow: hidden;
}

    .footer__box > h4 {
        margin: 0px 0px 6px 0px;
        font-weight: 800;
    }

    .footer__box > p {
        margin: 0px 0px 24px 0px;
    }

.footer__lottie {
    position: absolute;
    bottom: 0px;
    right: 0;
    border-bottom-right-radius: 24px;
}

@media(max-width: 991px) {
    .footer__lottie {
        display: none;
    }

    .hs_input.w50, .hs_input.w45, .hs_input.w40, .hs_input.w35, .hs_input.w25, .hs_input.w20, .hs_input.w10, .hs_input.w5 {
        width: 100%;
    }

    .hs_wrapper {
        flex-direction: column;
    }

    .hs_search_box {
        max-width: 100%;
    }

    .hs_info_box {
        max-width: 100%;
    }
}

/*New css for about us and other pages start*/

ul.et_list_icon {
    list-style: none;
    padding: 0;
}

    ul.et_list_icon li {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
        font-size: 18px;
        margin: 8px 0;
        text-align: left;
        flex-wrap: wrap;
    }

        ul.et_list_icon li .icon {
            width: 20px;
            min-width: 20px;
            height: 20px;
            position: relative;
            top: 4px;
            fill: var(--secondary); /* Green color */
        }

.std_para {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0px;
}

.et_tmt h5 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

/*New css for about us and other pages end*/




/*Search Results Booking page css start from here */
.et-search-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 120px;
    padding-top: 20px;
    padding-bottom: 120px;
    clear: both;
}

    .et-search-section h1 {
        font-size: 1.75rem;
        font-weight: 800;
        margin: 0px 0px 5px 0px;
        line-height: 1.2;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .et-search-section h5 {
        font-size: 0.875rem;
        margin: 0px 0px 20px 0px;
        line-height: 1.5;
    }

.et_sr_filter {
    width: 100%;
    background: #fff;
    padding: 20px 20px 191px 20px;
    border: 1px solid #E8ECF7;
    border-radius: 15px;
    clear: both;
    position: relative;
}

.et_sr_rc {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    flex-direction: column;
}

.sr-count {
    width: auto;
    height: auto;
    min-height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0px 0px 0px 0px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

    .sr-count .src_icon {
        position: absolute;
        left: -86px;
        top: -80px;
        z-index: 0;
    }

.et_sr_rc .src_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 700;
    gap: 5px;
}

.sr_sbn {
    width: 100%;
    position: relative;
}

    .sr_sbn > label {
        display: block;
        width: 100%;
        font-size: 1rem;
        font-weight: 600;
        margin: 0px 0px 10px 0px;
        /*    padding-left: 15px;*/
        line-height: 1.5;
        position: relative;
        color: var(--secondary);
    }

        .sr_sbn > label::before {
            width: 9px;
            height: 9px;
            border-radius: 8px;
            background: var(--secondary);
            content: "";
            position: absolute;
            left: 0px;
            top: 8px;
            z-index: 2;
            display: none;
        }

        .sr_sbn > label::after {
            width: 5px;
            height: 5px;
            border-radius: 8px;
            background: var(--primary);
            content: "";
            position: absolute;
            left: 2px;
            top: 10px;
            z-index: 3;
            display: none;
            /*animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;*/
        }

    /*@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}*/

    .sr_sbn > input[type="text"] {
        width: 100%;
        padding: 8px 15px;
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-body);
        line-height: 1.5;
        margin: 0px;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: none;
        outline: none;
    }

    .sr_sbn .form-check {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

        .sr_sbn .form-check > input[type="radio"] {
            margin-top: 0px;
        }

    .sr_sbn .et_star_list {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0px;
        flex-direction: column;
    }

        .sr_sbn .et_star_list > div.form-check > label.form-check-label {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 5px;
        }

            .sr_sbn .et_star_list > div.form-check > label.form-check-label > span {
                display: inline-block;
            }

                .sr_sbn .et_star_list > div.form-check > label.form-check-label > span > svg {
                    display: inline-block;
                    width: 16px;
                    height: 16px;
                    fill: var(--primary);
                }

.et_filter_clear {
    width: auto;
    font-size: 0.75rem;
    font-family: "Eras Medium ITC",sans-serif;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    user-select: none;
    margin-left: auto;
}

    .et_filter_clear:hover {
        color: var(--primary);
        transition: all 0.3s ease;
    }

.et_sr_list {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
    clear: both;
}

.et_sr_card {
    width: 100%;
    background: #fafafa;
    padding: 20px 20px;
    border: 1px solid #E8ECF7;
    border-radius: 15px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0px;
    position: relative;
}

    .et_sr_card .et_sr_htls {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0px;
        position: relative;
    }

        .et_sr_card .et_sr_htls .et_sr_img {
            display: flex;
            width: 100%;
            max-width: 220px;
            min-width: 220px;
            height: 154px;
            min-height: 154px;
            max-height: 154px;
            overflow: hidden;
            align-items: center;
            justify-content: center;
            gap: 0px;
            border-radius: 10px;
        }

            .et_sr_card .et_sr_htls .et_sr_img > img {
                display: block;
                width: auto;
                height: 100%;
                min-height: 100%;
            }

        .et_sr_card .et_sr_htls .et_sr_dls {
            width: 100%;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 0px;
            padding-left: 20px;
        }

            .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info {
                width: 100%;
                max-width: calc(100% - 211px);
                padding-top: 3px;
            }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info > h4 {
                    font-size: 1.5rem;
                    font-weight: 600;
                    color: var(--secondary);
                    margin: 0px 0px 0px 0px;
                    line-height: 1.3;
                }

                    .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info > h4 > a {
                        font-size: inherit;
                        display: inline-block;
                        color: var(--secondary);
                        text-decoration: none;
                        cursor: pointer;
                        box-shadow: none;
                        transition: all 0.3s ease;
                    }

                        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info > h4 > a:hover {
                            color: var(--primary);
                            transition: all 0.3s ease;
                        }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info .etcard_star {
                    width: auto;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 3px;
                    margin-bottom: 12px;
                }

                    .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info .etcard_star > span > svg {
                        fill: var(--primary);
                    }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info .etcard_loc {
                    width: auto;
                    font-size: .875rem;
                    line-height: 1.5;
                    margin-bottom: 17px;
                    font-weight: 600;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 5px;
                }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info .etcard_action {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 15px;
                }

                    .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info .etcard_action > a {
                        width: auto;
                        font-size: .875rem;
                        font-weight: 600;
                        text-decoration: none;
                        cursor: pointer;
                        display: inline-flex;
                        align-items: center;
                        justify-content: flex-start;
                    }

            .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price {
                width: 100%;
                max-width: 211px;
                min-width: 211px;
                padding-left: 41px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 10px;
                position: relative;
            }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price::before {
                    width: 1px;
                    height: 80%;
                    background: #b3f2fa;
                    position: absolute;
                    left: 20px;
                    top: 10%;
                    content: "";
                }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_quote {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    font-size: 0.875rem;
                }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_curr {
                    font-size: 1.5rem;
                    font-weight: 800;
                    margin-bottom: 5px;
                    text-align: center;
                }

                .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_dd {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_dd .room_dd {
                        width: auto;
                        font-size: 0.75rem;
                        font-weight: 600;
                        color: var(--white);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 10px;
                        border: 1px solid var(--primary);
                        border-radius: 6px;
                        padding: 7px 10px;
                        cursor: pointer;
                        outline: none;
                        user-select: none;
                        background: var(--primary);
                        transition: all 0.3s ease;
                    }

                        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_dd .room_dd:hover {
                            background-color: #fb9e4d;
                            border-color: #fb9e4d;
                            color: var(--white);
                            transition: all 0.3s ease;
                        }

                        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_dd .room_dd > .chevdown > svg {
                            fill: var(--white);
                        }

                        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_dd .room_dd:hover > .chevdown > svg {
                            fill: var(--white);
                        }

.chevdown > svg {
    fill: var(--primary);
}

.ev-filter-sticky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.headfilter {
    width: 100%;
    height: auto;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.sortfilter {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

    .sortfilter > label {
        width: auto;
        font-size: 1rem;
        font-weight: 600;
        color: var(--secondary);
        margin: 0px;
        position: relative;
    }

    .sortfilter > span {
        display: inline-block;
        width: auto;
        font-size: 0.875rem;
        font-weight: 400;
        margin: 0px;
        position: relative;
        cursor: pointer;
        user-select: none;
        transition: all .3s ease;
    }

        .sortfilter > span:hover {
            color: var(--primary);
            transition: all .3s ease;
        }

.modsearch {
    width: auto;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    cursor: pointer;
    user-select: none;
    transition: all .3s ease;
}

    .modsearch:hover {
        color: var(--primary);
        transition: all .3s ease;
    }

.sortfilter > span.active {
    color: var(--primary);
    font-weight: 600;
}

.et_max_table {
    width: 100%;
    position: relative;
    margin: 20px 0px 0px 0px;
    clear: both;
}

.et_ticon {
    position: relative;
    top: -1px;
}

@media (max-width: 992px) {
    .et-search-section {
        padding-top: 0px;
    }

    .headfilter {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .et_sr_card .et_sr_htls {
        flex-direction: column;
        align-items: center;
    }

    .et_sr_filter {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .et_sr_card .et_sr_htls .et_sr_dls {
        padding-left: 0px;
        flex-direction: column;
        margin-top: 20px;
        text-align: center;
    }

        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info {
            max-width: 100%;
        }

        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price {
            align-items: center;
            text-align: left;
            justify-content: center;
            width: 100%;
            max-width: 100%;
            padding-left: 0px;
            margin-top: 30px;
        }

        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info .etcard_star {
            justify-content: center;
        }

        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_info .etcard_loc {
            text-align: center;
            justify-content: center;
        }

        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price::before {
            display: none;
        }

        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_quote {
            justify-content: center;
        }

        .et_sr_card .et_sr_htls .et_sr_dls .et_sr_price .etcard_dd {
            justify-content: center;
        }

    .et_max_table {
        overflow-x: auto;
        max-width: 100%;
        overflow-y: hidden;
        white-space: nowrap;
    }
}

.valsummary {
    margin: 0px;
    color: #d74747;
    font-size: 11px;
    font-weight: 300;
    padding: 0px 5px;
    margin-top: 0px;
    text-align: left;
}

    .valsummary ul {
        padding: 0px;
        margin: 0px;
    }

        .valsummary ul li {
            padding: 0px 0px 0px 0px;
            margin: 0px;
            list-style: none;
            line-height: 20px;
            display: none;
        }

            .valsummary ul li:first-child {
                padding: 0px 0px 0px 0px;
                margin: 0px;
                list-style: none;
                line-height: 20px;
                display: block;
            }

.ErrorControl {
    background-color: #FBE3E4 !important;
    border: solid 1px Red !important;
}

/*Search Results Booking page css end here */




.exe-footer {
    width: 100%;
    height: auto;
    min-height: 350px;
    background-color: #182945;
    position: relative;
    margin-top: 0px;
    padding-top: 0px;
    margin-top: 200px;
}

    .exe-footer.darkbg {
        background: linear-gradient(rgba(231,241,248, 1) 0%, rgba(231,241,248, 1) 100%);
        min-height: 160px;
    }

    .exe-footer .footer-top h3 {
        font-size: 18px;
        color: var(--text-body);
        line-height: 24px;
        margin: 0px 0px 20px 0px;
        padding: 0px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .exe-footer ul {
        list-style: none;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }

        .exe-footer ul > li {
            display: block;
            width: 100%;
        }

            .exe-footer ul > li > a {
                display: block;
                width: 100%;
                color: var(--text-body);
                padding: 6px 0px;
                font-size: 1rem;
                line-height: 16px;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

                .exe-footer ul > li > a > b {
                    font-weight: 600;
                    color: var(--text-body);
                }

    .exe-footer .footer-bottom {
        padding-bottom: 40px;
        margin-top: 0px;
        position: relative;
    }

        .exe-footer .footer-bottom h3 {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 20px;
            margin: 40px 0px 15px 0px;
            padding: 0px;
            font-weight: 500;
        }

        .exe-footer .footer-bottom ul li.social, .exe-footer .footer-bottom ul li.infomail {
            display: block;
            padding-top: 3px;
        }

            .exe-footer .footer-bottom ul li.social > a {
                display: block;
                width: 22px;
                float: left;
                margin-right: 15px;
                padding: 0px;
                cursor: pointer;
                user-select: none;
            }

                .exe-footer .footer-bottom ul li.social > a > svg {
                    width: 18px;
                    height: 18px;
                    color: #ddd;
                    fill: var(--text-body);
                }

.flogo {
    display: block;
    max-width: 120px;
}

.footer-copy {
    background: linear-gradient(rgba(231,241,248, 1) 0%, rgba(231,241,248, 1) 100%);
    padding-top: 18px;
    padding-bottom: 18px;
}

    .footer-copy .copypara {
        text-align: center;
        font-size: 12px;
        line-height: 16px;
        color: var(--text-body);
    }

.policy-content {
    width: 100%;
    position: relative;
}

    .policy-content p {
        color: var(--text-body);
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
        margin: 0px 0px 20px 0px;
        font-weight: normal
    }

    .policy-content h5 {
        text-align: left;
        font-size: 18px;
        line-height: 1.4;
        margin: 10px 0px 10px 0px;
        font-weight: 500;
        color: var(--secondary)
    }

.snippet.dark {
    background: rgba(0, 0, 0, .6);
}

.snippet.white {
    background: rgba(255, 255, 255, .8);
}

.snippet {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.showloader .snippet {
    display: flex !important;
}

.snippet .stage {
    position: relative;
    z-index: 1;
}


.dot-flashing {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: #f38320;
    color: #f38320;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}

    .dot-flashing::before, .dot-flashing::after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 0;
    }

    .dot-flashing::before {
        left: -11px;
        width: 8px;
        height: 8px;
        border-radius: 5px;
        background-color: #f38320;
        color: #f38320;
        animation: dot-flashing 1s infinite alternate;
        animation-delay: 0s;
    }

    .dot-flashing::after {
        left: 11px;
        width: 8px;
        height: 8px;
        border-radius: 5px;
        background-color: #f38320;
        color: #f38320;
        animation: dot-flashing 1s infinite alternate;
        animation-delay: 1s;
    }

@keyframes dot-flashing {
    0% {
        background-color: #f38320;
    }

    50%, 100% {
        background-color: rgba(243, 131, 32, 0.2);
    }
}



.tooltip22 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #666666;
    text-decoration: none;
}

    .tooltip22 span {
        z-index: 10;
        display: none;
        padding: 5px;
        margin-top: 30px;
        margin-left: -32px;
        width: 210px;
        line-height: 16px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: normal;
    }

    .tooltip22:hover span {
        display: inline;
        position: absolute;
        color: #111;
        border: 1px solid #999999;
        background: #ffffff;
        font-weight: normal;
        cursor: default;
    }
    /*CSS3 extras*/
    .tooltip22 span {
        border-radius: 2px;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-box-shadow: 1px 1px 3px #CCC;
        -webkit-box-shadow: 1px 1px 3px #CCC;
        box-shadow: 1px 1px 3px #CCC;
    }

.register-modalN input[type="text"] {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    width: 100%;
    padding: 10px;
    display: block;
    background: transparent;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
}

.register-modalN label {
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    margin-bottom: 0px;
    font-weight: 300;
}

.register-modalN hr {
    border: 0;
    border-bottom: 0px solid rgba(0,0,0,0.1);
    padding: 0px;
    margin: 10px 0px;
    box-shadow: none;
}

.register-modalN select {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    width: 100%;
    padding: 10px;
    display: block;
    background: transparent;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
}

.reg_slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

    .reg_slider p {
        color: #fff !important;
    }

    .reg_slider h2 {
        color: rgba(255,255,255,.7) !important;
    }
