@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Poppins"), url(../fonts/Poppins-Regular.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local("Poppins"), url(../fonts/Poppins-Medium.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Poppins"), url(../fonts/Poppins-Bold.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

:root,
:host {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"
}

label:empty {
    display: none
}

label.error {
    color: red
}

.svg-icon svg {
    height: 1em;
    width: 1em;
    vertical-align: -0.125em
}

button .call-header-btn .svg-icon,
a.btn .svg-icon {
    margin-right: 10px;
}

button .svg-icon,
a.btn .svg-icon {
    margin-left: 10px
}

:root {
    --theme-font-family: "Poppins", sans-serif
}

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

body {
    font-family: var(--theme-font-family)
}

.navbar-brand img {
    width: 70%;
}

.navbar {
    position: absolute;
    width: 100%;
    flex-wrap: nowrap;
    padding: 20px 60px !important;
}


.hero {
    padding: 60px 0;
    padding-top: 220px;
}

.hero-h1 {
    font-weight: 900
}

.hero-text-top {
    font-size: 14px;
    line-height: 1.6
}

/* video */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    display: none;
}

.video-thumbnail:hover .play-button-overlay {
    display: block;
}

.video-container {
    width: 100%;
    display: none;
}

/* video END*/



/* SIGN_UP */
.signup-from {
    background: #000;
    padding: 40px 30px;
    border-radius: 20px;
}

.signup-from textarea.form-control {
    height: 130px;
}

/* SIGN_UP */


/* CountDown */
.countdown {
    margin: 17px auto 0px auto;
    display: flex;
    gap: 10px;
    font-family: sans-serif;
    flex-wrap: wrap;
}

.time-section {
    text-align: center;
    font-size: 22px;
}

.time-section p {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
    margin: 10px 0;
}

.time-group {
    display: flex;
    gap: 5px;
}

.time-segment {
    display: block;
    font-size: 40px;
    font-weight: 900;
    width: 75px;
}

.segment-display {
    position: relative;
    height: 100%;
    width: 75px;
}

.segment-display__top,
.segment-display__bottom {
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 53%;
    position: relative;
}

.segment-display__top {
    line-height: 1.5;
    color: #ffffff;
    background-color: #176096;
}

.segment-display__bottom {
    line-height: 0;
    color: #ffffff;
    background-color: #4f9dd7;
}

.segment-overlay {
    position: absolute;
    top: 0;
    perspective: 400px;
    height: 100%;
    width: 75px;
}

.segment-overlay__top,
.segment-overlay__bottom {
    position: absolute;
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 50%;
}

.segment-overlay__top {
    top: 0;
    line-height: 1.5;
    color: #ffffff;
    background-color: #176096;
    transform-origin: bottom;
}

.segment-overlay__bottom {
    bottom: 0;
    line-height: 0;
    color: #ffffff;
    background-color: #4f9dd7;
    border-top: 2px solid black;
    transform-origin: top;
}

.segment-overlay.flip .segment-overlay__top {
    animation: flip-top 0.8s linear;
}

.segment-overlay.flip .segment-overlay__bottom {
    animation: flip-bottom 0.8s linear;
}

@keyframes flip-top {
    0% {
        transform: rotateX(0deg);
    }

    50%,
    100% {
        transform: rotateX(-90deg);
    }
}

@keyframes flip-bottom {

    0%,
    50% {
        transform: rotateX(90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}



/* CountDown */



.image-with-text__inner {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
}

.image-with-text__inner ul {
    display: inline-block;
    margin: 20px 0 0 0;
    list-style-type: none;
    padding: 0;
}

.image-with-text__inner li {
    width: 100%;
    padding-left: 25px;
    line-height: 1.3;
    float: left;
    color: var(--clrtheme1);
    position: relative;
    font-size: 14px;
    padding-bottom: 5px
}

.image-with-text__inner li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/check.png);
    background-size: cover;
    height: 16px;
    width: 16px
}

.reviews__inner {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
    background: var(--bs-body-bg)
}

.info-boxes {
    background: #222 url(../images/bg2.png);
    background-repeat: no-repeat;
    background-size: 100%
}

.info-box {
    padding: 10px;
    transition: all 700ms;
    border-radius: 20px;
    background-color: var(--bs-body-bg);
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px
}

.info-box:hover {
    background-color: var(--bs-primary)
}

.info-box:hover .info-box__image {
    filter: unset !important;
}

.info-box__image {
    filter: brightness(100.5) invert(5);
    margin-bottom: 15px
}

.info-box__heading {
    margin-bottom: 15px
}

.info-box__heading h6 {
    font-weight: 700
}

.info-box__description {
    font-size: 14px
}

.services-box__image_1 .services-box__image__box {
    background-image: url("../images/services-icons.webp")
}

.services-box__image_2 .services-box__image__box {
    background-image: url("../images/services-icons2.webp")
}

.services-box {
    cursor: pointer;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
    border-radius: 10px;
    min-height: 215px;
    padding: 40px 0;
    background: var(--bs-body-bg);
    text-align: center;
    margin-bottom: 15px
}

.services-box:hover .services-box__image__box {
    background-position-y: -70px
}

.services-box__image__box {
    height: 80px;
    width: 75px;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    transition: all .7s ease;
    background-position-y: 10px
}

.services-box__1 .services-box__image__box {
    background-position-x: 10px
}

.services-box__6 .services-box__image__box {
    background-position-x: 10px
}

.services-box__2 .services-box__image__box {
    background-position-x: -75px
}

.services-box__7 .services-box__image__box {
    background-position-x: -75px
}

.services-box__3 .services-box__image__box {
    background-position-x: -150px
}

.services-box__8 .services-box__image__box {
    background-position-x: -150px
}

.services-box__4 .services-box__image__box {
    background-position-x: -230px
}

.services-box__9 .services-box__image__box {
    background-position-x: -230px
}

.services-box__5 .services-box__image__box {
    background-position-x: -310px
}

.services-box__10 .services-box__image__box {
    background-position-x: -320px
}

.packages {
    scrollbar-width: auto;
    scrollbar-color: #92035b;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.packages::-webkit-scrollbar {
    width: 10px
}

.packages::-webkit-scrollbar-track {
    background: #424242
}

.packages::-webkit-scrollbar-thumb {
    background-color: #92035b;
    border-radius: 10px;
    border: 1px solid #fff
}

.form-control-feedback {
    position: absolute;
    right: 10px;
    top: 20%;
    color: red
}

.has-error.has-feedback {
    position: relative
}

.has-error .form-control {
    border-color: red
}

.pacakage__images-container {
    display: flex;
    justify-content: space-around
}

.package {
    margin-bottom: 50px
}

.popular__package .package__inner {
    position: relative
}

.popular__package .package__inner::before {
    content: "";
    height: 80px;
    width: 80px;
    position: absolute;
    right: -20px;
    top: -20px;
    display: block;
    background-image: url("../images/most-sold.webp")
}

.section__heding-small {
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-transform: uppercase
}

.section__heding-big {
    color: #000;
    font-weight: 700;
    text-transform: uppercase
}

.section__header {
    margin-bottom: 40px
}

.package__inner {
    padding: 30px 25px;
    border-radius: 20px;
    height: 100%
}

.package__title {
    color: #890456;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1
}

.package__price-now {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--bs-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px
}

.package__price {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 20px
}

.package__price-before {
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    margin: 0 0 0 23px
}

.package__price-before::before {
    content: "/";
    font-size: 40px;
    font-weight: 900;
    position: absolute;
    left: -30px;
    top: -10px
}

.package__price-before span {
    line-height: 1
}

.package__price-before-discount em {
    text-decoration: line-through;
    font-style: inherit
}

.package__body {
    position: relative
}

.package__body::before {
    content: "";
    display: block;
    margin: 20px 0;
    border-top: 1px solid rgb(var(--bs-primary-rgb), 60%)
}

.package__details {
    overflow: hidden
}

.package__details ul {
    height: 240px;
    scroll-behavior: smooth;
    overflow-y: scroll;
    padding: 0
}

.package__details ul li {
    position: relative;
    font-size: 20px;
    color: var(--bs-body-color);
    margin: 0 0 10px;
    position: relative;
    padding: 0 0 0 23px;
    line-height: 22px;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    list-style: none
}

.package__details ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--bs-primary);
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 100%;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out
}

.package__details ul li::after {
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    position: absolute;
    background: radial-gradient(ellipse at 50% -100%, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0) 100%);
}

.package__place-order-button {
    display: flex;
    justify-content: space-evenly;
    margin-top: 25px
}

.package__button-container {
    margin-top: 25px
}

.package__two-buttons .package__place-order-button {
    justify-content: space-evenly
}

.package__two-buttons .btn {
    width: 108%
}

.package__button-bottom {
    display: flex;
    justify-content: center
}

.package__button-bottom .btn {
    width: 100%
}

.package__back-content {
    display: none;
    position: relative
}

.package__footer {
    border-top: 1px solid #d4d4d4;
    border-bottom: none;
    padding-top: 15px;
    margin-top: 30px
}

.package__footer-title {
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px
}

.btn-package {
    padding: 0;
    width: 100%
}

.btn-package>p {
    margin-bottom: 5px;
    color: var(--bs-gray-100);
    text-align: center;
    font-weight: 300;
    text-shadow: 0 0;
    font-size: 14px
}

.btn-package>p>i {
    color: var(--bs-primary)
}

.package__close-section {
    position: absolute;
    right: 15px;
    top: 10px
}

.package__form-closer i {
    color: #fff;
    font-size: 20px
}

.package__form-header {
    text-align: center
}

.package__form-heading {
    font-size: 1.4rem
}

.package__form-description {
    font-size: .9rem;
    line-height: 1.2
}

.package__form textarea.form-control {
    resize: none;
    height: 70px
}

.gallery__inner {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
}

.gallery__image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.gallery__image-container::before {
    background-color: #8e055a;
    content: "";
    left: calc(var(--bs-gutter-x)*.5);
    right: calc(var(--bs-gutter-x)*.5);
    left: -15px;
    right: -15px;
    height: 100px;
    position: absolute;
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    top: -100px;
    height: 100px;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    transition: transform .1s
}

.gallery__image-container::after {
    background-color: rgba(var(--bs-primary-rgb), 40%);
    content: "";
    left: calc(var(--bs-gutter-x)*.5);
    right: calc(var(--bs-gutter-x)*.5);
    left: -15px;
    right: -15px;
    height: 100px;
    position: absolute;
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.gallery__image-container::after {
    bottom: -100px;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    transition: transform .1s
}

.gallery__image-container:hover::before {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg)
}

.gallery__image-container:hover::after {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg)
}

.gallery__image img {
    width: 100%
}

.big-cta {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 20px
}

.big-cta__icon {
    font-size: 3rem
}

.btn-big-cta {
    text-decoration: none
}

.big-cta__header {
    display: flex;
    flex-direction: column;
    margin-left: 10px
}

.section-with-big-image {
    padding: 50px 0;
    margin-bottom: 60px
}

.section-with-big-image__image {
    text-align: center
}

.section-with-big-image__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.section-with-big-image .section-with-big-image__buttons a {
    color: #ffffff;
}

.form-check-label a {
    color: #b3914e;
}

.reviews__slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.review__client-image {
    display: flex;
    justify-content: center
}

.review__client-rating {
    font-size: 30px;
    color: #ffd513
}

.hero-bottom-text i {
    color: #ffd513
}

.review__text {
    height: auto;
    background-color: var(--bs-primary);
    padding: 40px;
    margin-top: 50px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    line-height: 23px;
    position: relative
}

.review__text::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 45px solid rgba(0, 0, 0, 0);
    border-right: 45px solid rgba(0, 0, 0, 0);
    border-bottom: 65px solid var(--bs-primary);
    text-align: center;
    position: absolute;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    top: -40px
}

.review__text p {
    font-size: 1.2rem;
    line-height: 1.6rem
}

.review__client-name {
    margin: 20px 0
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    border: 0;
    outline: none;
    background: rgba(0, 0, 0, 0)
}

.slick-dots li button:hover {
    outline: none
}

.slick-dots li button:hover::before {
    opacity: 1
}

.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:focus::before {
    opacity: 1
}

.slick-dots li button::before {
    font-family: "slick";
    font-size: 30px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
    text-align: center;
    opacity: .25;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #b3914e;
    border-radius: 100px;
}

.slick-dots li.slick-active button::before {
    opacity: .75;
    color: #fff
}

.footer-section {
    /* background-image: url("../images/footer-bg.webp") !important; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.copy-right {
    padding: 15px 0
}

.copy-right p {
    margin-bottom: 0
}

.footer__heading {
    color: #000;
    font-weight: 700;
    text-align: center
}

.footer__header {
    color: #000;
    text-align: center
}

.floating-phone {
    position: fixed;
    left: 30px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50%;
    background-color: #58af36;
    z-index: 99992
}

.floating-phone a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff
}

[data-bs-theme=light].popup-coupon-container .form_msg.alert {
    color: #000
}

[data-bs-theme=light].footer-section .form_msg.alert {
    color: #000
}

.form_msg.alert {
    text-align: center
}

@media(max-width: 820px) {
    .navbar {
        padding: 0 !important;
    }

    .popup-coupon-main textarea.form-control {
        height: 130px !important;
    }

    .popup-coupon-main .form-control {
        margin-bottom: 0.4rem;
    }

    .popup-coupon-main .form-group {
        margin-bottom: 0 !important;
    }

    .popup-coupon-inner {
        top: 4% !important;
    }
}

@media(max-width: 768px) {

    .navbar-brand img {
        width: 50%;
    }

}

@media(max-width: 767px) {
    .package__details ul {
        height: auto
    }

    section#what-we-do .col-12.col-custom-5 {
        flex: 0 0 100%;
        width: 100%;
    }


    section.section-with-big-image.text-light.best-selling {
        text-align: center;
    }

    section.section-with-big-image.text-light.best-selling .section-with-big-image__image {
        display: none;
    }


    section.mid-form.image-with-text .image-with-text__inner {
        padding: 15px !important;
    }

    section.mid-form.image-with-text .image-with-text__inner .signup-from form#contactform .d-flex.justify-content-between.flex-wrap {}

    section.mid-form.image-with-text .image-with-text__inner .signup-from form#contactform .d-flex.justify-content-between.flex-wrap .check-parent {
        text-align: left;
    }

    section.image-with-text.image-on-left h3 {
        margin-top: 20px;
    }

    section.image-with-text.image-on-left {
        text-align: center;
    }

    .hero {
        text-align: center;
    }

    section#portfolio_sec .tabs-container .tab-content {
        margin-top: 30px;
    }

    section#what-we-do h2 br {
        display: none;
    }

    section#portfolio_sec .tabs-container {
        text-align: center;
    }

    #portfolio_sec .slick-dots {
        display: none !important;
    }

    .package__details ul li {
        line-height: 1.3
    }

    .navbar-brand img {
        max-width: 140px
    }

    .hero {
        padding-top: 90px;
        padding-right: 30px
    }

    .hero-h1 {
        font-size: 28px
    }

    .section-with-big-image {
        padding-right: 20px
    }

    .package__button-call {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid
    }

    .col-custom-5 {
        max-width: 80%
    }

    .popular__package .package__inner::before {
        right: 5px
    }

    .footer-section {
        background-image: none !important;
        background-color: #fff
    }

    .footer__form__button {
        display: flex;
        justify-content: center
    }

    .review__text {
        height: 300px;
        overflow-y: scroll;
        padding: 20px
    }

    .reviews__inner {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media (max-width: 415px) {
    .navbar-brand img {
        width: 36% !important;
    }

    .call-header-btn a.btn {
        font-size: 10px !important;
    }

    .image-with-text__inner ul {
        column-count: 1 !important;
    }

    .time-segment {
        font-size: 25px;
    }

    .countdown {
        gap: 5px !important;
    }

    .time-segment {
        width: 45px !important;
    }

    .segment-display {
        width: 45px !important;
    }

    .segment-overlay {
        width: 45px !important;
    }
}


@media (max-width: 480px) {
    .navbar-brand img {
        width: 80% !important;
    }

    .navbar-brand {
        width: 51% !important;
    }

    .col-custom-5 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        width: 50%
    }

    .image-with-text__inner li {
        width: 50%
    }

    .time-segment {
        width: 55px;
    }

    .segment-overlay {
        width: 55px;
    }

    .segment-display {
        width: 55px;
    }

    .popup-coupon-close {
        right: 5px !important;
        top: 5px !important;

    }

    .popup-coupon-main .form-control {
        height: 35px !important;
    }
}

@media(min-width: 768px) {
    .col-custom-5 {
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        width: 33.33%
    }

    .navbar-brand {
        width: 66% !important;
    }
}

@media(max-width: 820px) {
    .navbar-brand {
        width: 50%;
    }
}


@media(min-width: 991px) {
    .col-custom-5 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        width: 25%
    }

    .section-with-big-image__image {
        margin-top: -140px
    }

    .section-with-big-image {
        margin-top: 60px
    }
}

@media(min-width: 1200px) {
    .col-custom-5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        width: 20%
    }
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

.flipInY,
.flipOutX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.popup-coupon-container {
    background-color: rgba(0, 0, 0, .7);
    backdrop-filter: blur(5px);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: none;
    z-index: 9991;
    overflow-y: scroll
}

.popup-coupon-inner {
    margin: 0 auto;
    background-color: #121212;
    padding: 20px 40px;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    top: 8%;
    box-shadow: 0 0 40px 2px rgb(142 4 90 / 45%);
}

.popup-coupon-buttons [type=submit] {
    width: auto;
    line-height: 1;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, .75);
    background: #b3914e;
    border-color: #b3914e;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.popup-coupon-form label {
    color: #000
}

.popup-coupon-close {
    position: absolute;
    height: 40px;
    width: 40px;
    right: -13px;
    top: -8px;
    display: flex;
    justify-content: center;
    align-items: center
}

.popup-coupon-close .close-pop {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    border-width: 0;
    background: #cd1010;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: all .2s linear;
    box-sizing: border-box;
    z-index: 2;
    height: 40px;
    display: flex;
    width: 40px;
    justify-content: center;
    align-content: center
}

.popup-coupon-close .close-pop:hover {
    background: #fff;
    border-color: #cd1010;
    color: #cd1010
}

.popup-coupon-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0
}

.popup-coupon-activate {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    color: #fbfbfb;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: .5rem
}

.popup-coupon-activate:before {
    content: "";
    display: block;
    width: 5px;
    background-color: #b3914e;
    height: 100%;
    position: absolute;
    left: 0
}

.popup-coupon-last {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--bs-primary)
}

.popup-coupon-main .form-group {
    margin-bottom: 1rem
}

.popup-coupon-main .form-control {
    border: 1px solid rgba(0, 0, 0, .04);
    background: #f4f7fc;
    height: 50px;
    padding-left: 15px;
    border-radius: 10px
}

.popup-coupon-main .form-control::placeholder {
    color: #000
}

.popup-coupon-main .form-control:hover,
.popup-coupon-main .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: none
}

.popup-coupon-main textarea.form-control {
    resize: none;
    height: auto
}

@media(max-width: 767px) {
    .popup-coupon-close {
        height: 25px;
        width: 25px
    }

    .popup-coupon-close .close-pop {
        font-size: 18px;
        line-height: 15.5px
    }

    .popup-coupon-inner {
        padding: 20px 20px;
        max-width: calc(100% - 20px);
        margin-top: 0
    }

    .popup-coupon-last {
        font-size: 22px
    }

    .popup-coupon-activate {
        font-size: 20px;
        padding-right: 20px
    }

    .popup-coupon-main input.form-control {
        line-height: 1;
        font-size: 14px;
        height: 45px
    }

    .popup-coupon-main textarea.form-control {
        height: 80px
    }

    .popup-coupon-close {
        height: 25px;
        width: 25px
    }

    .popup-coupon-close a {
        font-size: 18px;
        line-height: 17.5px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .popup-coupon-buttons {
        flex-direction: column
    }

    .popup-coupon-buttons [type=submit] {
        margin-bottom: 10px;
        padding: 10px 15px;
        font-size: 16px;
        width: 100%
    }
}

@media(max-width: 500px) {
    .popup-coupon-inner {
        max-width: calc(100% - 20px)
    }

    .popup-coupon-main .form-control {
        font-size: 14px
    }

    .popup-coupon-main .form-controltextarea {
        height: 100px
    }

    .popup-coupon-main .form-controlinput {
        height: 40px
    }

    .popup-coupon-main .form-group {
        margin-bottom: 10px
    }

    .popup-coupon-last {
        font-size: 20px
    }

    .popup-coupon-activate {
        font-size: 16px
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ""
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0)
}

.slick-arrow.slick-hidden {
    display: none
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Poppins"), url(../fonts/Poppins-Regular.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local("Poppins"), url(../fonts/Poppins-Medium.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Poppins"), url(../fonts/Poppins-Bold.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

:root,
:host {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"
}

label:empty {
    display: none
}

label.error {
    color: red
}

.svg-icon svg {
    height: 1em;
    width: 1em;
    vertical-align: -0.125em
}

button .svg-icon,
a.btn .svg-icon {
    margin-left: 10px
}

:root {
    --theme-font-family: "Poppins", sans-serif
}

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

body {
    font-family: "DM Sans", sans-serif;
}

.navbar-brand img {
    width: 15%;
    filter: brightness(0) invert(1);
}

/*body.popup-open {*/
/*    overflow: hidden*/
/*}*/

.hero {
    padding: 60px 0;
    padding-top: 220px;
}

.hero-h1 {
    font-weight: 900
}

.hero-text-top {
    font-size: 14px;
    line-height: 1.6
}

/* video */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    display: none;
}

.video-thumbnail:hover .play-button-overlay {
    display: block;
}

.video-container {
    width: 100%;
    display: none;
}

/* video END*/


/*Counter_section*/
.counter-section {
    padding: 40px 0;
    color: white;
    border: 1px solid #b3914e;
}

.counter-value {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.counter-title {
    line-height: 26px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.section-heading {
    color: #000;
    font-weight: 600;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .counter-value {
        font-size: 2.5rem;
    }
}

/*Counter_section*/



/* SIGN_UP */
.signup-from {
    padding: 40px 30px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid #b3914e;
}

.signup-from textarea.form-control {
    height: 130px;
}

/* SIGN_UP */


/* CountDown */
.countdown {
    margin: 17px auto 0px auto;
    display: flex;
    gap: 10px;
    font-family: sans-serif;
    flex-wrap: wrap;
}

.time-section {
    text-align: center;
    font-size: 22px;
}

.time-section p {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
    margin: 10px 0;
}

.time-group {
    display: flex;
    gap: 5px;
}

.time-segment {
    display: block;
    font-size: 40px;
    font-weight: 900;
    width: 75px;
}

.segment-display {
    position: relative;
    height: 100%;
    width: 75px;
}

.segment-display__top,
.segment-display__bottom {
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 53%;
    position: relative;
}

.segment-display__top {
    line-height: 1.5;
    color: #ffffff;
    background-color: #176096;
}

.segment-display__bottom {
    line-height: 0;
    color: #ffffff;
    background-color: #4f9dd7;
}

.segment-overlay {
    position: absolute;
    top: 0;
    perspective: 400px;
    height: 100%;
    width: 75px;
}

.segment-overlay__top,
.segment-overlay__bottom {
    position: absolute;
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 50%;
}

.segment-overlay__top {
    top: 0;
    line-height: 1.5;
    color: #ffffff;
    background-color: #176096;
    transform-origin: bottom;
}

.segment-overlay__bottom {
    bottom: 0;
    line-height: 0;
    color: #ffffff;
    background-color: #4f9dd7;
    border-top: 2px solid black;
    transform-origin: top;
}

.segment-overlay.flip .segment-overlay__top {
    animation: flip-top 0.8s linear;
}

.segment-overlay.flip .segment-overlay__bottom {
    animation: flip-bottom 0.8s linear;
}

@keyframes flip-top {
    0% {
        transform: rotateX(0deg);
    }

    50%,
    100% {
        transform: rotateX(-90deg);
    }
}

@keyframes flip-bottom {

    0%,
    50% {
        transform: rotateX(90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}



/* CountDown */



.image-with-text__inner {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #b3914e;
}

.image-with-text__inner ul {
    display: inline-block;
    margin: 20px 0 0 0;
    list-style-type: none;
    padding: 0;
    column-count: 2;
}

.image-with-text__inner li {
    width: 100%;
    padding-left: 25px;
    line-height: 18px;
    float: left;
    color: #fff;
    position: relative;
    font-size: 14px;
    padding-bottom: 15px;
}

.image-with-text__inner li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/check.png);
    background-size: cover;
    height: 16px;
    width: 16px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(49%) saturate(412%) hue-rotate(2deg) brightness(90%) contrast(89%);
}

.services-box:hover {
    background: #b3914e;
    color: #fff;
}

.reviews__inner {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
    background: var(--bs-body-bg)
}

.info-boxes {
    background: #222 url(../images/bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.info-box {
    padding: 20px;
    transition: all 700ms;
    border-radius: 20px;
    background-color: var(--bs-body-bg);
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px
}

.info-box:hover {
    transform: scale(1.1);
    background: #fff;
}

.info-box__image {
    margin-bottom: 15px
}

.info-box__heading {
    margin-bottom: 15px
}

.info-box__heading h6 {
    font-weight: 700
}

.info-box__description {
    font-size: 14px
}

.services-box__image_1 .services-box__image__box {
    background-image: url("../images/services-icons.webp")
}

.services-box__image_2 .services-box__image__box {
    background-image: url("../images/services-icons2.webp")
}


.services-box:hover .services-box__image__box {
    background-position-y: -70px
}

.services-box__image__box {
    height: 80px;
    width: 75px;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    transition: all .7s ease;
    background-position-y: 10px
}

.services-box__1 .services-box__image__box {
    background-position-x: 10px
}

.services-box__6 .services-box__image__box {
    background-position-x: 10px
}

.services-box__2 .services-box__image__box {
    background-position-x: -75px
}

.services-box__7 .services-box__image__box {
    background-position-x: -75px
}

.services-box__3 .services-box__image__box {
    background-position-x: -150px
}

.services-box__8 .services-box__image__box {
    background-position-x: -150px
}

.services-box__4 .services-box__image__box {
    background-position-x: -230px
}

.services-box__9 .services-box__image__box {
    background-position-x: -230px
}

.services-box__5 .services-box__image__box {
    background-position-x: -310px
}

.services-box__10 .services-box__image__box {
    background-position-x: -320px
}

.packages {
    scrollbar-width: auto;
    scrollbar-color: #92035b;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.packages::-webkit-scrollbar {
    width: 10px
}

.packages::-webkit-scrollbar-track {
    background: #424242
}

.packages::-webkit-scrollbar-thumb {
    background-color: var(--bs-primary);
    border-radius: 10px;
    border: 1px solid #fff
}

.form-control-feedback {
    position: absolute;
    right: 10px;
    top: 20%;
    color: red
}

.has-error.has-feedback {
    position: relative
}

.has-error .form-control {
    border-color: red
}

.pacakage__images-container {
    display: flex;
    justify-content: space-around
}

.package {
    margin-bottom: 50px
}

.popular__package .package__inner {
    position: relative
}

.popular__package .package__inner::before {
    content: "";
    height: 80px;
    width: 80px;
    position: absolute;
    right: -20px;
    top: -20px;
    display: block;
    background-image: url("../images/most-sold.webp")
}

.section__heding-small {
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-transform: uppercase
}

.section__heding-big {
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
}

.section__header {
    margin-bottom: 40px
}

.package__inner {
    padding: 30px 25px;
    border-radius: 20px;
    height: 100%
}

.package__title {
    color: #b3914e;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1
}

.package__price-now {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--bs-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px
}

.package__price {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 20px
}

.package__price-before {
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    margin: 0 0 0 23px
}

.package__price-before::before {
    content: "/";
    font-size: 40px;
    font-weight: 900;
    position: absolute;
    left: -30px;
    top: -10px
}

.package__price-before span {
    line-height: 1
}

.package__price-before-discount em {
    text-decoration: line-through;
    font-style: inherit
}

.package__body {
    position: relative
}

.package__body::before {
    content: "";
    display: block;
    margin: 20px 0;
    border-top: 1px solid #c0af84;
}

.package__details {
    overflow: hidden
}

.package__details ul {
    height: 240px;
    scroll-behavior: smooth;
    overflow-y: scroll;
    padding: 0
}

.package__details ul li {
    position: relative;
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px;
    position: relative;
    padding: 0 0 10px 20px;
    line-height: 18px;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    list-style: none
}

.package__details ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 100%;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out
}

.package__details ul li::after {
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    position: absolute;
    background: radial-gradient(ellipse at 50% -100%, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0) 100%);
}

.package__place-order-button {
    display: flex;
    justify-content: space-evenly;
    margin-top: 25px
}

.package__button-container {
    margin-top: 25px
}

.package__two-buttons .package__place-order-button {
    justify-content: space-evenly
}

.package__two-buttons .btn {
    width: 108%
}

.package__button-bottom {
    display: flex;
    justify-content: center
}

.package__button-bottom .btn {
    width: 100%
}

.package__back-content {
    display: none;
    position: relative
}

.package__footer {
    border-top: 1px solid #d4d4d4;
    border-bottom: none;
    padding-top: 15px;
    margin-top: 30px
}

.package__footer-title {
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px
}

.btn-package {
    padding: 0;
    width: 100%
}

.btn-package>p {
    margin-bottom: 5px;
    color: var(--bs-gray-100);
    text-align: center;
    font-weight: 300;
    text-shadow: 0 0;
    font-size: 14px
}

.btn-package>p>i {
    color: var(--bs-primary)
}

.package__close-section {
    position: absolute;
    right: 15px;
    top: 10px
}

.package__form-closer i {
    color: #fff;
    font-size: 20px
}

.package__form-header {
    text-align: center
}

.package__form-heading {
    font-size: 1.4rem
}

.package__form-description {
    font-size: .9rem;
    line-height: 1.2
}

.package__form textarea.form-control {
    resize: none;
    height: 70px
}

.gallery__inner {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
}

.gallery__image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.gallery__image-container::before {
    background-color: rgb(137 6 87 / 64%);
    content: "";
    left: calc(var(--bs-gutter-x)*.5);
    right: calc(var(--bs-gutter-x)*.5);
    left: -15px;
    right: -15px;
    height: 100px;
    position: absolute;
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    top: -100px;
    height: 100px;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    transition: transform .1s
}

.gallery__image-container::after {
    background-color: rgb(128 8 82 / 57%);
    content: "";
    left: calc(var(--bs-gutter-x)*.5);
    right: calc(var(--bs-gutter-x)*.5);
    left: -15px;
    right: -15px;
    height: 100px;
    position: absolute;
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.gallery__image-container::after {
    bottom: -100px;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    transition: transform .1s
}

.gallery__image-container:hover::before {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg)
}

.gallery__image-container:hover::after {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg)
}

.gallery__image img {
    width: 100%
}

.big-cta {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 20px
}

.big-cta__icon {
    font-size: 3rem
}

.btn-big-cta {
    text-decoration: none
}

.big-cta__header {
    display: flex;
    flex-direction: column;
    margin-left: 10px
}

.section-with-big-image {
    padding: 50px 0;
    margin-bottom: 60px
}

.section-with-big-image__image {
    text-align: center
}

.section-with-big-image__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.reviews__slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.review__client-image {
    display: flex;
    justify-content: center
}

.review__client-rating {
    font-size: 30px;
    color: #ffd513
}

.hero-bottom-text i {
    color: #ffd513
}

.review__text {
    height: auto;
    background-color: #830753;
    padding: 40px;
    margin-top: 50px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    line-height: 23px;
    position: relative
}

.review__text::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 45px solid rgba(0, 0, 0, 0);
    border-right: 45px solid rgba(0, 0, 0, 0);
    border-bottom: 65px solid #830753;
    text-align: center;
    position: absolute;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    top: -40px
}

.review__text p {
    font-size: 1.2rem;
    line-height: 1.6rem
}

.review__client-name {
    margin: 20px 0
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    border: 0;
    outline: none;
    background: rgba(0, 0, 0, 0)
}

.slick-dots li button:hover {
    outline: none
}

.slick-dots li button:hover::before {
    opacity: 1
}

.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:focus::before {
    opacity: 1
}

.slick-dots li button::before {
    font-size: 30px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "";
    text-align: center;
    opacity: .25;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
    opacity: .75;
    color: #fff
}

.footer-section {
    /* background-image: url("../images/footer-bg.webp") !important; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 0 50px;
}

.copy-right {
    padding: 15px 0;
    border-top: 1px solid #b3914e;
    background: #b3914e;
}

.copy-right p {
    margin-bottom: 0
}

.footer__heading {
    color: #ffffff;
    font-weight: 700;
    text-align: center
}

.footer__header {
    color: #000;
    text-align: center
}

.floating-phone {
    position: fixed;
    left: 30px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50%;
    background-color: #b3914e;
    z-index: 99992
}

.floating-phone a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff
}

[data-bs-theme=light].popup-coupon-container .form_msg.alert {
    color: #000
}

[data-bs-theme=light].footer-section .form_msg.alert {
    color: #000
}

.form_msg.alert {
    text-align: center
}

@media(max-width: 820px) {
    .popup-coupon-main textarea.form-control {
        height: 130px !important;
    }

    .popup-coupon-main .form-control {
        margin-bottom: 0.4rem;
    }

    .popup-coupon-main .form-group {
        margin-bottom: 0 !important;
    }

    .popup-coupon-inner {
        top: 4% !important;
    }
}

@media(max-width: 767px) {
    .package__details ul {
        height: auto
    }

    .package__details ul li {
        line-height: 1.3
    }

    .navbar-brand img {
        max-width: 100%;
        width: 50%;
    }

    .hero {
        padding-top: 130px;
        padding-right: 0px;
    }

    .hero-h1 {
        font-size: 28px
    }
.sticky-holder.sticky__form{
    display:none;
}
    .section-with-big-image {
        padding-right: 20px
    }

    .package__button-call {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid
    }

    .col-custom-5 {
        max-width: 80%
    }

    .popular__package .package__inner::before {
        right: 5px
    }

    .footer-section {
        background-image: none;
        background-color: #fff
    }

    .footer__form__button {
        display: flex;
        justify-content: center
    }

    .review__text {
        height: 300px;
        overflow-y: scroll;
        padding: 20px
    }

    .reviews__inner {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media (max-width: 415px) {
    .image-with-text__inner ul {
        column-count: 1 !important;
    }

    .time-segment {
        font-size: 25px;
    }

    .countdown {
        gap: 5px !important;
    }

    .time-segment {
        width: 45px !important;
    }

    .segment-display {
        width: 45px !important;
    }

    .segment-overlay {
        width: 45px !important;
    }
}


@media (max-width: 480px) {
    .review__text p {
        font-size: 0.9rem;
        line-height: 1.3rem
    }

    .signup-from .form-check {
        padding: 0 0px 0 10px;
    }

    .signup-from {
        padding: 30px 15px;
        margin: 15px 0 0;
    }

    .image-with-text__inner ul {
        column-count: 1 !important;
    }

    .col-custom-5 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        width: 50%
    }

    .time-segment {
        width: 55px;
    }

    .segment-overlay {
        width: 55px;
    }

    .segment-display {
        width: 55px;
    }

    .popup-coupon-close {
        right: 5px !important;
        top: 5px !important;

    }

    .popup-coupon-main .form-control {
        height: 35px !important;
    }
}

@media(min-width: 768px) {
    .col-custom-5 {
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        width: 33.33%
    }
}

@media(min-width: 991px) {
    .col-custom-5 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        width: 25%
    }

    .section-with-big-image__image {
        margin-top: -140px
    }

    .section-with-big-image {
        margin-top: 60px
    }
}

@media(min-width: 1200px) {
    .col-custom-5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        width: 20%
    }
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

.flipInY,
.flipOutX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.popup-coupon-container {
    background-color: rgba(0, 0, 0, .7);
    backdrop-filter: blur(5px);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: none;
    z-index: 9991;
    overflow-y: scroll
}

.popup-coupon-inner {
    margin: 0 auto;
    background-color: rgb(0 0 0);
    padding: 20px 40px;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    top: 8%;
    box-shadow: 0 0 40px 2px rgb(142 4 90 / 45%);
}



.popup-coupon-buttons [type=submit]:hover {
    color: #fff;
}

.popup-coupon-form label {
    color: #000
}

.popup-coupon-close {
    position: absolute;
    height: 40px;
    width: 40px;
    right: -13px;
    top: -8px;
    display: flex;
    justify-content: center;
    align-items: center
}

.popup-coupon-close .close-pop {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    border-width: 0;
    background: #cd1010;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: all .2s linear;
    box-sizing: border-box;
    z-index: 2;
    height: 40px;
    display: flex;
    width: 40px;
    justify-content: center;
    align-content: center
}

.popup-coupon-close .close-pop:hover {
    background: #fff;
    border-color: #cd1010;
    color: #cd1010
}

.popup-coupon-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0
}

.popup-coupon-activate {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    color: #fbfbfb;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: .5rem
}


.popup-coupon-last {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--bs-primary)
}

.popup-coupon-main .form-group {
    margin-bottom: 1rem
}

.popup-coupon-main .form-control {
    border: 1px solid rgba(0, 0, 0, .04);
    background: #f4f7fc;
    height: 50px;
    padding-left: 15px;
    border-radius: 10px
}

.popup-coupon-main .form-control::placeholder {
    color: #000
}

.popup-coupon-main .form-control:hover,
.popup-coupon-main .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: none
}

.popup-coupon-main textarea.form-control {
    resize: none;
    height: auto
}

@media(max-width: 767px) {
    .popup-coupon-close {
        height: 25px;
        width: 25px
    }

    .popup-coupon-close .close-pop {
        font-size: 18px;
        line-height: 15.5px
    }

    .popup-coupon-inner {
        padding: 20px 20px;
        max-width: calc(100% - 20px);
        margin-top: 0
    }

    .popup-coupon-last {
        font-size: 22px
    }

    .popup-coupon-activate {
        font-size: 20px;
        padding-right: 20px
    }

    .popup-coupon-main input.form-control {
        line-height: 1;
        font-size: 14px;
        height: 45px
    }

    .popup-coupon-main textarea.form-control {
        height: 80px
    }

    .popup-coupon-close {
        height: 25px;
        width: 25px
    }

    .popup-coupon-close a {
        font-size: 18px;
        line-height: 17.5px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .popup-coupon-buttons {
        flex-direction: column
    }

    .popup-coupon-buttons [type=submit] {
        margin-bottom: 10px;
        padding: 10px 15px;
        font-size: 16px;
        width: 100%
    }
}

@media(max-width: 500px) {
    .popup-coupon-inner {
        max-width: calc(100% - 20px)
    }

    .popup-coupon-main .form-control {
        font-size: 14px
    }

    .popup-coupon-main .form-controltextarea {
        height: 100px
    }

    .popup-coupon-main .form-controlinput {
        height: 40px
    }

    .popup-coupon-main .form-group {
        margin-bottom: 10px
    }

    .popup-coupon-last {
        font-size: 20px
    }

    .popup-coupon-activate {
        font-size: 16px
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ""
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0)
}

.slick-arrow.slick-hidden {
    display: none
}

.ftr_link {
    display: flex;
    justify-content: end;
    gap: 13px;
    color: #000;
    margin-bottom: 0;
}

.ftr_link li {
    list-style: none;
}

.ftr_link li a {
    color: #ffffff;
    text-decoration: none;
}


section.info-boxes {}

section.info-boxes .info-box * {
    color: #000;
}

.services-box:hover .package__place-order-button {}

.services-box:hover .package__place-order-button a {
    background: #c0af84 !important;
    color: #000 !important;
}


.best-selling {
    background-image: url(../images/bestsellingbg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


.best-selling::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000000a8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.best-selling .container {
    position: relative;
}


section.testimonials {
    padding: 50px 0;
    background: #b3914e;
}

section.testimonials .chat_slider__item {
    border: 1px solid #ffffff;
    padding: 30px;
    border-radius: 15px;
    height: 200px;
}

section.testimonials .chat_slider__item p {
    font-size: 16px;
}

section.testimonials .chat_slider__item span {
    color: #ffffff;
}


section.info-boxes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a8;
    z-index: 0;
}


section.info-boxes,
section.info-boxes .container {
    position: relative;
}

section.counter-section {
    background: #b3914e;
}

section#portfolio_sec .row.galler_header * {
    color: #000;
}

section.image-with-text.image-on-left {}

section.image-with-text.image-on-left h3 {
    color: #000;
}

section.image-with-text.image-on-left p.text-1 {
    color: #000;
}


section#packages {
    background-color: #b3914e;
}

section#packages * {
    color: #fff;
}

button.btn.btn-primary.package__form-opener {
    background: #c0af84;
}


section#packages .package__form {}

section#packages .package__form button.btn.btn-primary {
    background: #c0af84;
}

section#packages .package__form button.btn.btn-primary.w-100.package__form-closer {
    background: #c0af84;
}


section.mid-form.image-with-text {}

section.mid-form.image-with-text .image-with-text__inner {}

section.mid-form.image-with-text .image-with-text__inner {}

section.mid-form.image-with-text .image-with-text__inner ul * {
    color: #000;
}

section.mid-form.image-with-text .image-with-text__inner .signup-from {
    background: #b3914e;
}

section.mid-form.image-with-text .image-with-text__inner .signup-from form#contactform {}

section.mid-form.image-with-text .image-with-text__inner .signup-from form#contactform * {}

section.mid-form.image-with-text .image-with-text__inner .signup-from button.btn.btn-primary {
    background: #c0af84;
}

.form-select:focus {
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

section.image-with-text.image-on-right {}

section.image-with-text.image-on-right .image-with-text__inner {}

section.image-with-text.image-on-right .image-with-text__inner h3,
section.image-with-text.image-on-right .image-with-text__inner p {
    color: #000;
}

section.image-with-text.image-on-right .image-with-text__inner ul * {
    color: #000;
}

section#what-we-do {
    padding-top: 50px;
}

section#what-we-do h2 {
    color: #000;
}



.footer-section * {
    color: #000;
}

.footer-section form input,
.footer-section form textarea {
    border: 1px solid #b3914e;
    padding: 15px;
}


.footer-section form {}

.footer-section form input,
.footer-section form textarea {
    border: 1px solid #b3914e;
    padding: 15px;
}

.footer-section form button.btn.btn-primary {
    color: #fff;
}

.footer-section form button.btn.btn-primary span.svg-icon * {
    color: #fff !important;
}

section#packages .package__form .form-control {
    color: #000;
}

/* ============== */

header#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navmenu>ul>li>a {
    color: #fff;
}

.navmenu>ul>li>ul {
    background: #fff !important;
    color: #000;
}

a.btn {
    background: #b3914e !important;
    border-color: #b3914e;
    color: #fff !important;
}

.header .logo img {
    filter: brightness(0) invert(1);
}

.myheader.scrolled {
    background: #0000008c;
    box-shadow: 0 0 40px 2px #343434;
}

.mobile-nav-active .navmenu>ul {
    background-color: #fff;
}
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
    color: #b3914e !important;
}

@media screen and (max-width: 1200px) {
    .navmenu>ul>li>a {
        color: #b3914e;
    }
    section.testimonials .chat_slider__item{
        height: auto;
    }
    i.bi.bi-chevron-down.toggle-dropdown {
    background: #b3914e;
    color: #fff;
}
    .mobile-nav-toggle {
    color: #b3914e !important;
        background: #fff;
        padding: 0px 7px !important;
        border-radius: 5px;
}
}


.offices-grid {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  border-bottom: 1px solid #b3914e;
  padding: 5vmin 0;
  border-top: 1px solid #b3914e;
  margin-top: 3rem;
}

@media(min-width: 576px) {
  .offices-grid {
      gap: 55px;
  }
}

.offices-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

@media(min-width: 1113px) {
  .offices-grid__item {
      -webkit-box-flex:0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 0
  }
}

@media(max-width: 575px) {
  .offices-grid__item {
      -ms-flex-preferred-size:50%;
      flex-basis: 50%;
      margin-bottom: 20px
  }
}

@media(max-width: 319px) {
  .offices-grid__item {
      -webkit-box-orient:vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding-bottom: 15px
  }
}

.offices-grid .office-address {
  padding-top: 5px;
  font-size: 20px;
}

@media(min-width: 321px) {
  .offices-grid .office-address {
      padding-top:8px
  }
}

@media(min-width: 1113px) {
  .offices-grid .office-address {
      white-space:nowrap
  }
}

@media(max-width: 767px) {
  .offices-grid .office-address {
      font-size:14px
  }
}

.offices-grid .city {
  font-weight: 600
}

.offices-grid .office-address * {
  /* color: #fff; */
}

.offices-grid .city-abbreviation {
  font-size: 4.3rem;
  line-height: 1;
  font-weight: 900;
  opacity: 1;
  padding-right: 12px;
  letter-spacing: -2px;
  background: #b3914e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #b3914e;
  color: red !important;
}

@media(max-width: 1112px) {
  .offices-grid .city-abbreviation {
      padding-right:6px
  }
}

@media(max-width: 767px) {
  .offices-grid .city-abbreviation {
      font-size: 6rem;
      padding-right: 2px;
      text-indent: -5px;
      -ms-flex-preferred-size: 68px;
      flex-basis: 68px
  }
}

@media(max-width: 319px) {
  .offices-grid .city-abbreviation {
      -ms-flex-preferred-size:0;
      flex-basis: 0%
  }
}

.copy-privacy {
  font-size: 14px;
  padding-top: 40px;
  position: relative;
  gap: 6vmin;
  padding-bottom: 20px
}

@media(max-width: 1111px) {
  .copy-privacy .privacy-button {
      display:block;
      width: 100%
  }
}

.footer-section .copyright .social-icons {
    float: right;
    right: 50%;
    top: -10px
}

.footer-section .copyright .social-icons ul {
    margin-bottom: 0;
    display: flex
}

.footer-section .copyright .social-icons ul li .social-networks {
    font-size: 16px;
    color: var(--colorWhite);
    border-radius: 100px;
    text-align: center;
    transition: .3s ease-in-out;
    width: 40px!important;
    height: 40px!important;
    line-height: 40px;
    display: block
}

.footer-section .copyright .social-icons ul li a:hover i {
    background: var(--colorRed);
    color: var(--colorWhite);
    transform: translate(0,-5px);
    width: 40px;
    height: 40px;
    padding: 0
}

.footer-section .middle-portion .icons p {
    margin-bottom: 12px;
    color: var(--colorWhite)
}

.footer-section .middle-portion .icons input::placeholder {
    color: var(--colorWhite)
}

.footer-section .middle-portion .icons input {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 8px;
    padding: 16px 25px;
    overflow: visible;
    outline: 0;
    border-right: 0;
    width: 85%
}

.footer-section .middle-portion .icons .subscribe_now {
    border: 1px solid var(--colorBlack2);
    background: var(--colorBlack2);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    border-radius: 30px;
    padding: 11px 25px;
    text-align: center;
    display: inline-block;
    transition: .3s ease-in-out;
    width: 96%
}

.footer-section .middle-portion .icons .subscribe_now:hover {
    border: 1px solid var(--colorBlack2);
    background: var(--colorWhite);
    color: var(--colorBlack2)!important
}

.footer-section .middle-portion .icons .subscribe_now .circle:before {
    font-size: 20px;
    margin-left: 16px;
    font-family: FontAwesome;
    transition: .3s;
    color: var(--e-global-color-white)
}
ul.social_detail {
    display: flex
}
ul.social_detail li {
    margin-bottom: 0!important
}

ul.social_detail li:not(last-child) {
    margin-right: 20px
}

ul.social_detail li a i {
    color: var(--colorWhite);
    font-size: 14px!important
} .lower {
    display: flex;
    flex-direction: column
}

 .lower .icon {
    position: relative;
    top: 5px;
    transition: .3s ease-in-out;
    width: 40px;
    background: #b3914e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.lower .content {
    padding-left: 1rem;
    width: 80%
}

.lower .icon i {
    font-size: 30px
}

.lower .content span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    display: block;
    margin-bottom: -3px;
    color: var(--colorPurpleDark)
}

.icons h4,.links h4 {
    margin-bottom: 30px;
    color: var(--colorWhite)!important;
    font-family: Inter,sans-serif;
    font-size: 28px;
    font-weight: 600
}

 .links li {
    margin-bottom: 5px;
    color: var(--colorWhite)
}
.lower-content {
    display: flex;
}
.links li a {
    color: var(--colorWhite);
    position: relative
}
h4.heading.text-dark {
    color: #b3914e !important;
}
.icons p {
    margin-bottom: 12px;
    color: var(--colorWhite)
}

.icons input::placeholder {
    color: var(--colorWhite)
}
 .icons input {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 8px;
    padding: 16px 25px;
    overflow: visible;
    outline: 0;
    border-right: 0;
    width: 85%
}
.newsBtn {
    background: #b3914e;
    color: #fff !IMPORTANT;
    border-radius: 8px;
    width: 15%;
    outline: 0;
    border-style: none;
    margin-left: -5px
}
 .subscribe-form{
    display: flex
;
}
.newsBtn i.bi.bi-chevron-right {
    color: #fff;
}
.footer-logo img {
  filter: brightness(0);
}
.subscribe-form .newsBtn:hover,ul.social_detail li a:hover {
    /* background: var(--colorgradient2); */
}
.icons .subscribe_now {
    border: 1px solid var(--colorBlack2);
    background: var(--colorBlack2);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    border-radius: 30px;
    padding: 11px 25px;
    text-align: center;
    display: inline-block;
    transition: .3s ease-in-out;
    width: 96%
}

.icons .subscribe_now:hover {
    border: 1px solid var(--colorBlack2);
    background: var(--colorWhite);
    color: var(--colorBlack2)!important
}

 .icons .subscribe_now .circle:before {
    font-size: 20px;
    margin-left: 16px;
    font-family: FontAwesome;
    transition: .3s;
    color: var(--e-global-color-white)
}