@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Sora, sans-serif;
}

body {
    overflow-x: hidden;
}

:root {
    --primary-color: #7bc8ea;
    --secondary-color: #ff9a68;
}
main {
    overflow-x: hidden;
}
a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}


figure {
    margin: 0px;
}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    line-height: 28px;
    text-transform: unset;
    font-weight: 400;
    margin: 0;
}

p::first-letter {
    text-transform: capitalize;
}

.head.text-left {
    text-align: left;
}

.go-top {
    position: fixed;
    bottom: 7%;
    right: 1%;
    padding: 0px;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    z-index: 10000;
}

.go-top::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f077";
    color: rgb(255, 255, 255);
    font-size: 25px;
    transition: 0.2s ease-in-out;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(1, 130, 181);
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    background: rgb(255, 194, 51);
    position: fixed;
    bottom: 88px;
    right: 40px;
    z-index: 99;
    text-align: center;
    transition: 0.4s;
    display: none;
    border-radius: 50%;
    cursor: pointer;
}

.scroll-to-top i {
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 50px;
    transition: 0.4s;
}

/* button */
.btn {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row;
    gap: 12px;
}

.btn-box .btn-primary {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--secondary-color);
    padding: 13px 25px;
    border-radius: 7px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    border: 0;
}

.btn-box .btn-secondary {
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--primary-color);
    padding: 13px 25px;
    border-radius: 7px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    border: 0;
}

/* hvr-bounce-to-right */
.hvr-bounce-to-right {
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0px;
    background: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
}

.hvr-bounce-to-right:hover {
    color: var(--primary-color) !important;
    background: rgb(255, 255, 255) !important;
    border-radius: 7px;
    transform: translateY(-5px);
}

.hvr-bounce-to-right:hover::after {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    border-radius: 7px;
}

/* hvr-bounce-to-right */

/* .hvr-bounce-to-left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0px;
    background: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover {
    color: var(--secondary-color) !important;
    background: rgb(255, 255, 255) !important;
    border-radius: 7px;
    transform: translateY(-5px);
    border: 0;
}

.hvr-bounce-to-left:hover::after {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    border-radius: 7px;
    background: rgb(255, 255, 255) !important;
}

/* button */

.form-control::-webkit-input-placeholder {
    color: rgb(49, 55, 71);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

select:focus,
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgb(0, 0, 0) !important;
}

.form-check {
    margin: 0px;
}

.form-check .form-check-input:checked {
    background-color: rgb(255, 87, 34);
    border-color: rgb(255, 87, 34);
}

.form-check .form-check-input:focus {
    border-color: rgb(255, 87, 34);
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin: 0px;
    color: rgb(49, 55, 71);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* header */
header {
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

header .header-btm {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

header .sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    background: rgb(21, 28, 34);
}

header .header-btm .navbar>.container-fluid {
    align-items: center;
}

header .header-btm .navbar {
    padding: 20px 0px;
    transition: 0.3s ease-in-out;
    background: transparent;
    position: relative;
}

header .header-btm.sticky .navbar {
    border-bottom: none !important;
}

header .header-btm .navbar .navbar-nav {
    background: rgb(61, 55, 70);
    width: 75%;
    border-radius: 12px;
    gap: 9%;
    display: flex;
    padding: 15px 25px;
    align-items: baseline;
    position: relative;
    justify-content: center;
}

header .header-btm .navbar .navbar-nav .nav-item {
    position: relative;
}

header .header-btm .navbar .navbar-nav .nav-item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 15px 0px;
    top: 100%;
    transform: translateY(50px);
    left: 0px;
    width: 190px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s;
    display: flex;
    flex-flow: column;
    gap: 2px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    letter-spacing: 0px;
    word-spacing: 0px;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.5s ease-in-out;
    padding: 12px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item:hover {
    background: var(--secondary-color);
    color: rgb(255, 255, 255);
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.5s ease-in-out;
    padding: 0px;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--secondary-color) !important;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

header .header-btm .navbar .navbar-brand {
    margin: 0px;
    padding: 0px;
}

header .header-btm .navbar .navbar-brand .logo {
    width: 190px;
}

header.sticky .header-btm .navbar .navbar-brand .logo {
    height: 70px;
}

/* header */
/* footer */
.footer {
    background-color: rgb(0, 0, 0);
    padding: 100px 0px 50px;
}

.footer .logo {
    display: flex;
    justify-content: center;
}

.footer .logo img {
    width: 200px;
}

.footer .head h1 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.footer .box a i {
    font-size: 25px;
    color: white;
}

.footer .box .txt {
    text-decoration: none;
    color: white;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
}

.footer .box .txt span {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.footer .blue-background {
    background-color: rgb(8, 11, 24);
    margin-top: 64px;
    padding: 45px 0px;
    border-radius: 10px;
}

.footer .case {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 40px 0px 20px;
}

.footer .case a {
    color: rgb(102, 102, 102);
    font-size: 18px;
    text-decoration: none;
}

.footer .icons {
    display: flex;
    justify-content: center;
    gap: 0px;
    align-items: center;
}

.footer .icons i {
    font-size: 30px;
    color: white;
}

.footer .last-text {
    text-align: center;
    margin-top: 26px;
    line-height: 1;
    margin-bottom: 0px;
}

.footer .last-text p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
}

.footer .head img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.footer .blue-background .button-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer .blue-background .button-container button {
    padding: 0px 0px;
    font-size: 22px;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer .blue-background .box {
    width: 100%;
    height: auto;
    background-color: transparent;
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.footer .blue-background .box2 {
    background-color: transparent;
}

.footer .last-text a {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.footer .last-text span {
    color: rgb(102, 102, 102);
    font-size: 20px;
}
/* footer */

/* home-banner-wrap */
.home-banner-wrap {
    padding: 200px 0px 0px;
    overflow: hidden;
    position: relative;
    background-image: url("../images/banner-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 130vh;
}

.home-banner-wrap .content h1 {
    font-size: 20px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    line-height: 28px;
    margin: 0px 0px 10px;
}

.home-banner-wrap .content h2 {
    color: rgb(255, 255, 255);
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin: 0px 0px 15px;
}

.home-banner-wrap .content p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0px 0px 30px;
}

.home-banner-wrap .banner-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 70px;
    margin: 0px 0px 30px;
}

.Section-01 h2.ml10 {
    color: rgb(255, 255, 255);
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    margin: 0px 0px 40px;
}

.home-banner-wrap .banner-logo img {
    min-width: 86px;
    max-width: 86px;
    min-height: 80px;
    max-height: 80px;
    object-fit: cover;
}
.talk-btn {
    display: flex;
}

.box-btn {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    gap: 10px;
    background: #000000;
    padding: 12px 25px;
    border-radius: 7px;
    line-height: 26px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    border: 0;
}

.home-banner-wrap .form-box {
    background-color: rgb(61, 55, 70);
    padding: 30px 25px 70px;
    text-align: center;
    border-radius: 15px;
}

.home-banner-wrap .form-box h2 {
    color: rgb(255, 255, 255);
    font-size: 55px;
    font-weight: 700;
}

.home-banner-wrap .form-box h2 span {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0px 15px;
    display: block;
}

.home-banner-wrap .form-box .input-main .form-group {
    margin: 0px 0px 15px;
}

.home-banner-wrap .form-box .input-main .form-group .input-box {
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

.home-banner-wrap .form-box .input-main .form-group textarea {
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

.home-banner-wrap .form-box .input-main .form-btn {
    margin: 25px 0px 0px;
}

.home-banner-wrap .form-box .input-main .form-btn .submit {
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.home-banner-wrap .form-box .input-main .form-group textarea::placeholder,
.home-banner-wrap .form-box .input-main .form-group .input-box::placeholder {
    color: rgb(162, 162, 164);
    font-size: 13px;
    font-weight: 400;
}
.home-banner-wrap .talk-btn .box-btn {
    background: var(--secondary-color);
}

.Imagebanner figure.image-01 img {
    width: 100% !important;
    height: 560px;
    object-fit: cover;
}
/* home-banner-wrap */
/* different-sec */
.different-sec {
    overflow: hidden;
    padding: 0px 0px 70px;
}

.different-sec .head h3 {
    color: var(--secondary-color);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0px 0px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
}

.different-sec .head h3 span {
    height: 1px;
    width: 60px;
    background: var(--secondary-color);
    display: block;
}

.head h2 {
    font-size: 40px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    line-height: 50px;
    margin: 0px 0px 15px;
}

.head p {
    color: rgb(102, 102, 102);
    margin: 0px 0px 25px;
}

.different-sec .result {
    margin: 16px 0px 20px;
}

.different-sec .result figure {
    background: rgba(123, 200, 234, 0.35);
    margin: 0px 0px 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.different-sec .result h3 {
    font-size: 26px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    line-height: 36px;
    margin: 0px 0px 15px;
}

.different-sec .result p {
    color: rgb(102, 102, 102);
    font-weight: 400;
    text-align: justify;
}
/* different-sec */
/* willing-sec */
.willing-sec {
    background: var(--primary-color);
    text-align: center;
    padding: 70px 0px;
    position: relative;
}

.willing-sec .head {
    position: relative;
    z-index: 1;
}

.willing-sec .head p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    margin: 0px 0px 30px;
    line-height: 25px;
}

.seo-sec .research ul {
    height: 393px;
    overflow: auto;
}

.bussines-sec-02 .free-btn,
.willing-sec .free-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bussines-sec-02 .free-btn h6,
.willing-sec .free-btn h6 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.free-btn .get-btn {
    background: rgb(0, 0, 0);
    border: 0px;
    font-size: 16px;
}

.willing-sec .free-btn .call-btn {
    background: var(--secondary-color);
}

.willing-sec .main-img {
    position: absolute;
    right: 3%;
    top: -20%;
}

.willing-sec .main-img img {
    width: 100%;
    animation: 4s ease-out 0s infinite normal none running zoom-in-zoom-out;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1);
    }
}
/* willing-sec */
/* seo-sec */
.seo-sec {
    padding: 100px 0px;
    overflow: hidden;
}

.seo-sec .head {
    text-align: center;
}

.seo-sec .head h2 {
    /* width: 80%; */
    margin: 0px auto 20px;
}

.seo-sec .research {
    border: 1px solid rgb(120, 120, 120);
    border-radius: 18px;
    padding: 25px 22px;
    margin: 30px 0px 0px;
    height: 561px;
    transition: 0.5s;
    position: relative;
}

.seo-sec .research::after {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    height: 0%;
    width: 0%;
    top: 50%;
    right: 50%;
    border-radius: 487px;
    z-index: -1;
    transition: 0.5s;
}

.seo-sec .research:hover::after {
    top: 0px;
    transition: 0.5s;
    width: 100%;
    height: 100%;
    right: 0px;
    border-radius: 18px;
}

.seo-sec .research .main-img {
    width: 60px;
    height: 60px;
    background: rgba(255, 154, 104, 0.23);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0px 0px 18px;
    transition: 0.5s;
}

.seo-sec .research:hover .main-img {
    background: rgba(2, 2, 2, 0.17);
}

.seo-sec .research .main-img img {
    width: 35px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(59%) saturate(1368%) hue-rotate(314deg) brightness(102%) contrast(101%);
}

.seo-sec .research:hover .main-img img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(59deg) brightness(89%) contrast(111%);
}

.seo-sec .research h3 {
    font-size: 17px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0px 0px 16px;
}

.seo-sec .research ul li {
    color: rgb(102, 102, 102);
    font-size: 17px;
    font-weight: 400;
    position: relative;
    margin: 0px 0px 14px 17px;
}

.seo-sec .research:hover ul li {
    color: rgb(255, 255, 255);
}

.seo-sec .research:hover ul li::before {
    background: rgb(255, 255, 255);
}

.seo-sec .research ul li::before {
    background: var(--secondary-color);
    width: 8px;
    height: 8px;
    display: math;
    border-radius: 50%;
    content: "";
    position: absolute;
    margin: 0px;
    top: 6px;
    left: -16px;
}
/* seo-sec */
/* growth-sec */
.growth-sec {
    overflow: hidden;
    background: var(--secondary-color);
    padding: 70px 0px;
    position: relative;
}

.growth-sec .head h2 {
    color: rgb(0, 0, 0);
}

.growth-sec .tabs-growth .main-tabs {
    gap: 10%;
}

.growth-sec .tabs-growth .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: transparent;
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 500;
    text-decoration: underline;
    border-radius: 0px;
    text-align: start;
}

.growth-sec .tabs-growth .nav-pills .nav-link {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 400;
    text-align: start;
}

.growth-sec .tabs-growth div#v-pills-tabContent {
    width: 47%;
}

.growth-sec .content p,
.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane p {
    color: rgb(0, 0, 0);
    margin: 0px 0px 33px;
}

.growth-sec .content .Work-btn,
.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane .Work-btn {
    display: flex;
}

.growth-sec .content .Work-btn .get-btn,
.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane .Work-btn .get-btn {
    background: rgb(0, 0, 0);
    border: 0px;
    font-size: 18px;
    padding: 20px 40px;
    font-weight: 600;
}

.growth-sec .main-img {
    position: absolute;
    right: 0px;
    top: 18%;
}

.growth-sec .content p {
    text-align: center;
}

.growth-sec .content .Work-btn {
    justify-content: center;
}
/* growth-sec */
/*choose-sec */
.choose-sec {
    background-color: rgb(248, 248, 248);
    padding: 100px 0px;
}

.choose-sec .head h2 {
    margin: 0px 0px 60px;
}

.choose-sec .head p {
    margin: 0px 0px 50px;
    font-size: 16px;
    color: rgb(102, 102, 102);
    font-weight: 400;
}

.choose-sec .process {
    margin: 0px 0px 40px;
    padding: 0px 35px 0px 0px;
}

.choose-sec .process h2 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin: 0px 0px 18px;
}

.choose-sec .process p {
    margin: 0px 0px 0px 45px;
}
/*choose-sec */
/* campaigns-sec */
.campaigns-sec {
    background: var(--secondary-color);
    padding: 100px 0px;
    overflow: hidden;
}

.campaigns-sec .head {
    text-align: center;
}

.campaigns-sec .head p {
    color: rgb(0, 0, 0);
}

.campaigns-sec .head .every-call {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.campaigns-sec .free-btn {
    margin: 30px 0px 0px;
    display: flex;
    justify-content: center;
}
/* campaigns-sec */
/* service-sec */
.Service-sec {
    overflow: hidden;
    padding: 100px 0px;
    background: url("../images/img17.png") center center / cover no-repeat;
    position: relative;
}

.Service-sec::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 218px;
    background: url("../images/img18.png") right center / contain no-repeat;
    top: 0px;
    right: 0px;
    filter: grayscale(1);
    z-index: -1;
}

.Service-sec .head {
    text-align: center;
    position: relative;
}

.Service-sec .head .customheading {
    font-size: 50px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin: 0px 0px 25px;
}

.Service-sec .head .customheading span {
    color: var(--primary-color);
}

.Service-sec .head p {
    margin: 0px auto 40px;
}

.Service-sec .ElimateBox {
    border-radius: 18px;
    border: 1px solid rgba(120, 120, 120, 0.34);
    padding: 50px 35px 30px;
}

.Service-sec .DOminatemain h2 {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 30px;
    margin: 0px 0px 24px;
}

.Service-sec .DOminatemain h6 {
    font-size: 18px;
    color: rgb(7, 7, 7);
    font-weight: 400;
    margin-bottom: 24px;
}

.Service-sec .ElimateBox .DOminatemain ul {
    padding-left: 0px;
    list-style: none;
}

.Service-sec .ElimateBox .DOminatemain .flexitem {
    display: flex;
    gap: 20px;
}

.Service-sec .ElimateBox .DOminatemain .flexitem .contenttext p {
    margin: 0px 0px 20px;
}

.Service-sec .ElimateBox .DOminatemain .flexitem .contenttext h5 {
    font-size: 22px;
    color: rgb(24, 29, 35);
    font-weight: 600;
    margin: 0px 0px 7px;
}

.Service-sec .flexitem .iconbar {
    margin-bottom: 0px;
}

.Service-sec .flexitem .iconbar a {
    z-index: 0;
    position: relative;
    transition: 0.6s;
    background: var(--secondary-color);
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.Service-sec .flexitem .iconbar a img {
    width: 25px;
}

.Service-sec .flexitem .iconbar a::after {
    transition: 0.6s;
    border-radius: 0px;
    position: absolute;
    content: "";
    background: black;
    height: 0%;
    width: 0%;
    z-index: -1;
}

.Service-sec .flexitem .iconbar a:hover::after {
    border-radius: 80px;
    transition: 0.4s;
    width: 100%;
    height: 100%;
}
.DOminatemain ul::before {
    position: absolute;
    content: "";
    background: rgb(0, 0, 0);
    height: 76%;
    width: 3px;
    top: 0px;
    left: 25px;
    z-index: -1;
}

.DOminatemain ul {
    position: relative;
}

.DOminatemain ul::after {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    height: 76%;
    width: 3px;
    top: 0px;
    left: 25px;
    z-index: -1;
    transition: 0.6s;
}

.DOminatemain ul:hover::after {
    height: 0%;
    transition: 0.6s;
}

.Service-sec .ElimateBox-2 {
    border-radius: 18px;
    border: 1px solid rgba(120, 120, 120, 0.34);
    padding: 55px 30px 53px;
    height: 603px;
}

.Service-sec .ElimateBox-2 .DOminatemain .man-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Service-sec .ElimateBox-2 .DOminatemain .texts {
    text-align: center;
    padding-top: 18px;
}

.Service-sec .ElimateBox-2 .DOminatemain .texts h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0px 20px;
}

.Service-sec .ElimateBox-2 .DOminatemain .texts p {
    width: 60%;
    margin: 0px auto 68px;
}

.Service-sec .ElimateBox-2 .DOminatemain .Minute {
    border: 1px solid rgba(26, 26, 26, 0.1);
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.Service-sec .ElimateBox-2 .DOminatemain .cir {
    width: 26px;
    height: 26px;
    background-color: rgb(23, 232, 133);
    border-radius: 50%;
}

.Service-sec .ElimateBox-2 .DOminatemain .Minute h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}

.Service-sec .ElimateBox-2 .DOminatemain .cir-1 {
    width: 26px;
    height: 26px;
    background-color: rgb(255, 79, 0);
    border-radius: 50%;
    padding-bottom: 10px;
}
/* service-sec */
/* frequently-sec */
.frequently-sec {
    padding: 100px 0px;
    position: relative;
}

.frequently-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 218px;
    background-image: url("../images/img19.png");
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    background-size: contain;
    background-position: unset;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    filter: grayscale(1);
}

.frequently-sec .head {
    text-align: center;
    margin: 0px 0px 51px;
    position: relative;
}

.frequently-sec .head h2 {
    font-size: 50px;
    font-weight: 700;
    margin: 0px 0px 50px;
    color: rgb(0, 0, 0);
    line-height: 60px;
}

.frequently-sec .head h2 span {
    color: var(--primary-color);
}

.frequently-sec .accordion-flush .accordion-item h2 .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.frequently-sec .accordion-flush .accordion-item {
    border: 1px solid rgb(205, 203, 203);
    border-radius: 10px;
    margin: 0px 0px 15px;
}

.frequently-sec .accordion-flush .accordion-item h2 .accordion-button:hover {
    background-color: var(--primary-color);
}

.frequently-sec .accordin .accordion-item .accordion-header .accordion-button:hover::after {
    color: rgb(0, 0, 0);
}

.frequently-sec .accordin .accordion-item .accordion-header .accordion-button::after {
    content: "\2b";
    font-family: "Font Awesome 6 pro";
    background: transparent;
    color: var(--primary-color);
    font-size: 22px;
    border-radius: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: 0.4s ease-in-out;
}

.frequently-sec .accordin .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    transform: rotate(0deg);
    color: var(--secondary-color);
}
/* frequently-sec */
/* florida-web-sec */
.florida-web-sec {
    padding: 100px 0px;
    overflow: hidden;
    background-image: url("../images/img12.png");
    background-position: right center;
    background-size: cover;
}

.florida-web-sec .head h2 {
    width: 90%;
}

.florida-web-sec .head h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 20px;
}

.florida-web-sec .main-img img {
    width: 470px;
}

.florida-web-sec .florida-btn ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.florida-web-sec .florida-btn ul li {
    background: rgb(255, 255, 255);
    box-shadow: rgba(50, 50, 93, 0.11) 0px 4px 6px, rgba(0, 0, 0, 0.08) 0px 1px 3px;
    border-radius: 4px;
    padding: 10px;
    color: rgb(102, 102, 102);
    transition: 0.4s ease-in-out;
}

.florida-web-sec .florida-btn ul li:hover {
    background: var(--secondary-color);
    color: rgb(0, 0, 0);
}

.florida-web-sec .lets-get {
    margin: 140px 0px 0px;
    text-align: center;
}

.florida-web-sec .lets-get h2 {
    color: var(--secondary-color);
    font-size: 38px;
    font-weight: 600;
    line-height: 50px;
    position: relative;
    width: 80%;
    margin: 0px auto 20px;
}

.florida-web-sec .lets-get h2::before {
    content: "";
    position: absolute;
    background-image: url("../images/img14.png");
    top: -40px;
    left: -2%;
    width: 200px;
    height: 243px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.florida-web-sec .lets-get h2::after {
    content: "";
    position: absolute;
    background-image: url("../images/img15.png");
    top: -40px;
    right: -1%;
    width: 200px;
    height: 243px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}

.florida-web-sec .lets-get p {
    color: rgb(51, 51, 51);
    font-size: 22px;
    line-height: 30px;
    margin: 0px 0px 25px;
    font-weight: 400;
}

.florida-web-sec .lets-get p span {
    font-weight: 600;
}

.florida-web-sec .free-btn {
    display: flex;
    justify-content: center;
}

.florida-web-sec .free-btn .box-btn {
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
}
/* florida-web-sec */
/* TestimonialSec */
.TestimonialSec {
    background-color: rgb(248, 248, 248);
    padding: 70px 0px;
    overflow: hidden;
}

.TestimonialSec .owl-nav.owl-nav {
    display: none;
}

.TestimonialSec .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--button-color);
}

.TestimonialSec .owl-theme .owl-dots .owl-dot span {
    border: 1px solid rgb(174, 174, 174);
    width: 20px;
    height: 20px;
    margin: 5px 8px;
    display: block;
    backface-visibility: visible;
    transition: opacity 0.2s;
    border-radius: 30px;
    background: rgb(237, 234, 234);
}

.TestimonialSec .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 44px;
    position: relative;
}

.TestimonialSec .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: rgb(123, 200, 234);
}
.TestimonialSec .owl-stage-outer {
    padding: 11px 0px;
}
section.TestimonialSec .owl-dots::after {
    left: 889px;
    width: 147px;
}
section.TestimonialSec .ecommerce_text h5 {
    color: rgb(0, 0, 0);
    padding-bottom: 10px;
    text-align: center;
    font-size: 50px;
    width: 100%;
    font-weight: 700;
    margin: 0px;
}
section.TestimonialSec .ecommerce_text h5 span {
    font-weight: 700;
    color: rgb(123, 200, 234);
}

/* section.TestimonialSec .ecommerce_text h6 {
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
} */

section.TestimonialSec .Testibox {
    box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 6px 2px;
    background: rgb(245, 247, 252);
    padding: 50px 30px;
    border-radius: 20px;
    margin-top: 36px;
    height: 365px;
}

section.TestimonialSec .toptesti figure img {
    width: unset !important;
}
section.TestimonialSec .flexitm .text h6 {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: 600;
    margin: 0px;
}
section.TestimonialSec .flexitm {
    display: flex;
    align-items: center;
    gap: 12px;
}
section.TestimonialSec .flexitm .text span {
    font-size: 16px;
    font-weight: 400;
    color: rgb(70, 70, 70);
    line-height: 24px;
}

section.TestimonialSec .toptesti .Testicenter ul {
    list-style: none;
    padding: 10px 0px;
    margin-bottom: 0px;
    display: flex;
}

section.TestimonialSec .toptesti .Testicenter p {
    transition: 0.6s;
    color: rgb(70, 70, 70);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

section.TestimonialSec .toptesti .Testicenter ul li i {
    color: rgb(235, 180, 0);
    font-size: 16px;
    margin-right: 3px;
}
/* TestimonialSec */
.Section-01 .shapeBanner .Shapeleft {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(-15%, -8%);
    animation: 16s linear 0s infinite normal none running rotation;
    transform-origin: center center;
}

.Section-01 .shapeBanner .Shaperight {
    position: absolute;
    top: 0px;
    right: 0px;
}

.Section-01 {
    position: relative;
    display: flex;
    height: 1140px;
    background: url("../images/banner.png") 0% 0% / cover no-repeat;
    padding-top: 11rem;
    overflow: hidden;
}

.Section-01::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: url("../images/main-banner.png") 0% 0% / cover no-repeat;
    overflow: hidden;
}

.Section-01 .Content .ml9 {
    padding-bottom: 0px;
    position: relative;
    font-weight: 600;
    font-size: 60px;
    color: rgb(255, 255, 255);
    margin: 0px 0px 15px;
    line-height: 70px;
}

.Section-01 h2 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin: 0px 0px 50px;
}

.flexbutton {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 0;
}

.Imagebanner {
    position: relative;
}

.Imagebanner .image-02 {
    margin: 0px;
    animation: 10s ease-in-out 0s infinite normal none running card-shift;
    left: 110px;
    position: absolute;
    bottom: 46px;
}

figure.image-03 {
    right: -175px;
    position: absolute;
    bottom: -159px;
}

figure.image-02 img {
    width: 100%;
}

.lasticon ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.corecontent h6 {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 16px;
}

.corecontent {
    padding-left: 5rem;
    padding-top: 120px;
}

.corecontent h2 {
    font-size: 46px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin: 10px 0px;
    line-height: 60px;
}

.corecontent h2 span {
    color: var(--primary-color);
    display: block;
}

.corecontent p {
    line-height: 30px;
}

.corecontent h6 span {
    background: var(--secondary-color);
    display: block;
    width: 55px;
    height: 1.3px;
}

.BoxS::after {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    height: 0%;
    width: 0%;
    top: 50%;
    right: 50%;
    /* border-radius: 487px; */
    z-index: -1;
    transition: 0.5s;
}

.BoxS:hover::after {
    top: 0px;
    transition: 0.5s;
    /* border-radius: 0px; */
    width: 100%;
    height: 100%;
    right: 0px;
}

.BoxS:hover p {
    color: rgb(255, 255, 255);
}

.BoxS:hover img {
    filter: brightness(0) invert(1);
    transition: 0.6s;
}

.BoxS img {
    transition: 0.6s;
}

.BoxS:hover h3 {
    color: rgb(255, 255, 255);
    transition: 0.5s;
}

.BoxS:hover a {
    color: rgb(255, 255, 255);
    transition: 0.6s;
}

.BoxS:hover {
    /* border-radius: 0px; */
    transition: 0.5s;
}

.MainService {
    display: flex;
    gap: 22px;
}

.Fit img {
    width: 100%;
}

.Section-02 {
    margin-top: -20rem;
}

.contents h3 {
    font-size: 21px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

.Section-02 .Service-Right {
    margin-top: 50px;
    width: 100%;
}

.Section-02 {
    overflow: hidden;
    padding: 0px 0px 100px;
}

.clickbutton {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 17px;
}

.BoxS {
    z-index: 0;
    border-radius: 9px;
    padding: 35px 14px 42px 30px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 0px 4px 1px;
    margin-bottom: 33px;
    position: relative;
    overflow: hidden;
}

.Section-02 .row {
    align-items: center;
}

.websiteinputs h5 {
    font-size: 25px;
    display: flex;
    gap: 9px;
    align-items: center;
}

.inputflex .form-group {
    display: flex;
    align-items: center;
    position: relative;
}

.inputflex .form-control {
    height: 53px;
    position: relative;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 12px;
    width: 100%;
    padding: 20px 38px;
}

.inputflex form {
    margin-top: 25px;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
}

.inputflex label {
    top: 13px;
    position: absolute;
    left: 14px;
    z-index: 1;
    margin: 0px;
}

.websiteinputs {
    border-top: 1px solid rgb(193, 193, 193);
    margin-top: 35px;
}

.buttonres a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    margin-top: 22px;
    padding: 15px;
}

.buttonres .get-result {
    border: 2px solid var(--primary-color);
    width: 100%;
}

.buttonres .get-result:hover {
    border: 2px solid var(--primary-color);
}

.helpsec {
    background-color: rgb(247, 249, 252);
    padding: 70px 0px 40px;
    overflow: hidden;
}

.helpsec h2 {
    text-align: center;
    font-size: 50px;
    width: 100%;
    font-weight: 700;
    margin: 0px 0px 50px;
}

.helpsec .img-container {
    margin: 0px auto;
    padding-top: 24px;
    background-repeat: no-repeat;
    padding-left: 10px;
    padding-right: 0px;
    width: 414px;
    height: 865px;
    overflow: hidden;
}

.helpsec .img-container figure.abs {
    right: 0px;
    top: -6px;
    position: absolute;
    z-index: 9;
    left: 23px;
    text-align: center;
    overflow: hidden;
}

.helpsec .img-container .cs-slider img {
    height: 647px;
}
.helpsec .img-container .iphone_side img {
    width: 418px;
}
.hlpwrap {
    padding-left: 0px;
    margin: 60px 0px;
}

.hlpwrap li {
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    align-items: self-start;
    gap: 30px;
    justify-content: end;
}

.hlpwrap li .lft {
    float: left;
}

.hlpwrap li .lft figure {
    margin: 0px auto 0px;
    display: table;
}

.hlpwrap li .lft figure img {
    height: 100px;
}

.hlpwrap li .rht {
    width: 70%;
    float: right;
    padding: 10px 0px;
}

.hlpwrap li .rht h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

@keyframes bouncy {
    0% {
        margin-top: 0px;
    }

    25% {
        margin-top: 5px;
    }

    50% {
        margin-top: 0px;
    }

    75% {
        margin-top: 5px;
    }

    100% {
        margin-top: 0px;
    }
}

.helpsec h2 span {
    color: var(--primary-color);
}

.marketing-bshbard {
    padding: 100px 0px 180px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.marketing-bshbard {
    background-image: url("../images/marketing-bg.webp");
    overflow: hidden;
}

.visible {
    visibility: visible !important;
}

.marketing-bshbard article h3 {
    margin-bottom: 25px;
}

.heading p {
    margin-top: 35px;
    font-size: 18px;
}

.marketing-bshbard .text-center img {
    margin: 0px 0px 90px;
}

.marketing-bshbard .heading p {
    margin: 18px 0px 40px;
}

.readmore a,
.readmore a::before {
    transition-duration: 0.5s;
}

.readmore a {
    background-color: var(--primary-color);
    padding: 7px 40px;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    font-size: 20px;
    margin-top: 14px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0px);
    box-shadow: transparent 0px 0px 1px;
    position: relative;
    transition-property: color;
}

.readmore a::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0px;
    background: rgb(153, 207, 114);
    transform: scaleX(0);
    transform-origin: 0px 50%;
    transition-property: transform;
    transition-timing-function: ease-out;
}

.services-item {
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding: 15px 10px;
    border: 2px solid rgb(204, 204, 204);
    border-radius: 5px;
}

.ready-info ul li a.get,
.services-item:hover {
    background-color: rgb(0, 0, 0);
    text-decoration: none;
}

.services-item:hover svg {
    fill: rgb(255, 255, 255);
    transition: none;
}

.services-item:hover img {
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(306deg) brightness(108%) contrast(101%);
}

.services-item img {
    margin: 15px auto 20px;
    width: inherit !important;
    height: 65px;
    object-fit: contain;
}

.services-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.services-item svg {
    margin: 15px auto 20px;
    width: 60px;
    height: 60px;
    transition: none;
}

.marketing-bshbard .owl-carousel button.owl-next,
.owl-carousel button.owl-prev {
    width: 40px;
    height: 40px;
    color: rgb(255, 255, 255);
    border-radius: 100%;
    background: var(--primary-color) !important;
}

.marketing-bshbard .owl-carousel button.owl-prev span {
    outline: 0px;
}

.marketing-bshbard .owl-carousel button.owl-next span,
.owl-carousel button.owl-prev span {
    color: rgb(255, 255, 255);
    font-size: 30px;
    position: relative;
    top: -4px;
}

.marketing-bshbard .owl-carousel button.owl-next {
    margin-left: 10px;
}

.marketing-bshbard .owl-carousel .owl-nav {
    position: absolute;
    right: 0px;
    bottom: -60px;
    outline: 0px;
}

.marketing-bshbard .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: 0px;
    border-radius: 50%;
}

.services-slider.owl-carousel .owl-item,
.services-slider.owl-carousel .owl-stage {
    display: flex;
}

.services-slider.owl-carousel .services-item {
    height: 100%;
    width: 313px;
}

.services-item {
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding: 15px 10px;
    border: 2px solid rgb(123, 200, 234);
    border-radius: 5px;
}

.services-item p {
    text-align: -webkit-center;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
    padding: 0px 4px;
    height: 210px;
    overflow-y: scroll;
}

.services-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.agency-sec article p,
.marketing-bshbard article p {
    margin-bottom: 24px;
    color: rgb(102, 102, 102);
}


.marketing-bshbard article h3 {
    padding-top: 8px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 25px;
    color: rgb(0, 0, 0);
}

.article h2 {
    margin: 0px 0px 14px;
    color: rgb(0, 0, 0);
    font-size: 36px;
    font-weight: 700;
}

.marketing-bshbard .heading h2 {
    color: rgb(0, 0, 0);
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
}

.services-item:hover h4 {
    color: rgb(255, 255, 255);
}

.services-item:hover p {
    color: rgb(255, 255, 255);
}

.bussines-sec {
    background-color: var(--primary-color);
    padding: 60px 0px;
    position: relative;
}

.bussines-sec::after,
.bussines-sec::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.bussines-sec::before {
    width: 324px;
    height: 279px;
    left: 0px;
}

.bussines-sec::before {
    background-size: 100%;
}

.bussines-sec::after {
    width: 422px;
    top: -45px;
    height: 429px;
    background-size: cover;
    right: 0px;
    animation: 4s ease-out 0s infinite normal none running zoom-in-zoom-out;
}

.bussines-sec::after {
    background: url("../images/bus-af.webp") no-repeat;
}

.bussines-sec h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 37px;
}

.bussines-sec p {
    color: rgb(0, 0, 0);
    text-align: center;
    margin-bottom: 0px;
}

.bussines-sec a {
    padding: 12px 25px;
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    background: var(--orange-color);
    border-color: var(--orange-color);
    color: rgb(255, 255, 255);
}

.ready-info {
    text-align: center;
}

.ready-info ul li a.get {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0px);
    box-shadow: transparent 0px 0px 1px;
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
    background: rgb(0, 0, 0);
}

.ready-info ul li a.get,
.services-item:hover {
    background-color: rgb(0, 0, 0);
    text-decoration: none;
}

.ready-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding-left: 0px;
    list-style: none;
    position: relative;
    z-index: 1;
}

.iyt {
    display: inline-block;
    text-align: center;
    margin: 0px 25px;
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
    color: rgb(0, 0, 0);
}

.centerCol {
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.faqnew h5 {
    font-size: 44px;
    line-height: 55px;
}

.faqnew p {
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 18px;
    margin: 0px 0px 40px;
}

.faqnew .corecontent {
    padding-left: 0px;
    padding-top: 0px;
}

.faqnew .mb-0>a {
    display: block;
    position: relative;
}

.FaqSec .accordion-button:not(.collapsed) {
    background: transparent;
}

.FaqSec .accordion-button::after {
    left: 3%;
    position: absolute;
}

.FaqSec .accordion-button {
    padding: 20px 0px 20px 54px;
    font-size: 22px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    background: transparent;
    border: 0px !important;
    box-shadow: none !important;
}

.FaqSec .accordion-body {
    color: rgb(102, 102, 102);
    font-size: 18px;
    line-height: 30px;
}

.FaqSec .accordion-item {
    border-radius: 9px 9px 0px 0px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(195, 195, 195) rgb(195, 195, 195) rgb(255, 255, 255);
    border-image: initial;
    margin: 0px 0px 7px;
}

.FaqSec .accordion-button::after {
    content: "\2b";
    font-family: "Font Awesome 6 pro";
    background: transparent;
    color: black;
    font-size: 22px;
    border-radius: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.FaqSec .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    transform: rotate(0deg);
    color: rgb(0, 0, 0);
}

.FaqSec .card a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 17px 15px 8px 34px;
    font-size: 1rem;
    color: rgb(0, 0, 0);
    text-align: left;
    background-color: rgb(255, 255, 255);
    border: 0px;
    border-radius: 0px;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s;
    font-weight: 700;
    text-decoration: none !important;
}

.FaqSec .card-header {
    padding: 0px 15px 8px 20px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-color: rgba(153, 153, 153, 0.333) rgba(153, 153, 153, 0.333) transparent;
    margin: 0px;
    position: relative;
    background: rgb(255, 255, 255);
    border-bottom-width: initial;
    border-bottom-style: initial;
}

.accordion-item.after-effect::after {
    position: absolute;
    content: "";
    left: -1px;
    bottom: -1px;
    width: calc(100% + 2px);
    height: 100%;
    background-image: linear-gradient(to top, rgb(255, 255, 255), transparent);
}

img.mainImage {
    animation: 100s linear 0s infinite normal both running rotate-center;
}

.rotateimage {
    margin-left: 36px;
    position: relative;
}

.customimage {
    left: -44px;
    position: absolute;
    top: -16px;
}

figure.Centerimage {
    position: absolute;
    top: 40%;
    right: 29%;
    animation: 6s ease-out 0s infinite normal none running zoom-in-zoom-out;
}

.Seo_service {
    background: rgb(248, 248, 248);
    padding-top: 100px;
    padding-bottom: 30px;
}

.content_service h6 {
    font-size: 17px;
    color: var(--secondary-color);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 16px;
}

.content_service h5 {
    font-size: 36px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

.content_service p {
    margin-bottom: 15px;
    color: rgb(102, 102, 102);
}

.content_service h6 span {
    background-color: var(--secondary-color);
    display: block;
    width: 55px;
    height: 1.3px;
}

.Seo_service .serviceBox figure {
    background: rgba(123, 200, 234, 0.35);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.Seo_service .serviceBox figure img {
    width: 25px;
}

.content_service {
    margin-bottom: 35px;
}


.customheading {
    font-size: 40px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px;
}

.StragryLeft {
    margin-top: 112px;
}

.serviceBox {
    margin: 0px 0px 80px;
}

.servicetext p {
    width: 95%;
    text-align: justify;
}

.servicetext h5 {
    font-size: 26px;
    line-height: 36px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin: 25px 0px 15px;
}

.servicetext p a {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    text-decoration: none !important;
}

.Business_Sec {
    background: var(--orange-color);
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 50px;
}

.Business_content {
    text-align: center;
}

.Business_content p {
    padding-bottom: 27px;
    margin: auto;
    width: 68%;
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
}

.call {
    display: block;
    font-size: 21px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin-bottom: 19px;
    text-decoration: none !important;
}

.Business_content .btnBlue {
    border-color: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.awards-Content {
    text-align: center;
}

.Frequently h1 {
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-weight: 700;
    padding: 60px 3px 6px 232px;
}

.Frequently h1 span {
    color: rgb(123, 200, 234);
}

.Frequently-box {
    border: 1px solid rgba(26, 26, 26, 0.1);
    padding: 21px;
    border-radius: 10px;
    margin-top: 47px;
}

.Frequently-box p {
    font-size: 16px;
    font-weight: 400;
}

.icon {
    display: flex;
    justify-content: space-between;
}

.icon i {
    color: rgb(255, 154, 104);
    font-size: 22px;
}

.icon h6 {
    font-size: 20px;
    font-weight: 600;
    padding-top: 9px;
    padding-bottom: 10px;
}

.select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    margin-top: 10px;
}

.select i {
    font-size: 22px;
    color: rgb(123, 200, 234);
}

.select h6 {
    font-size: 16px;
    font-weight: 600;
}

.bussines-sec-02 {
    background-color: var(--primary-color);
    position: relative;
    padding: 70px 0px;
}

.bussines-sec-02 h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
}

.bussines-sec-02 p {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 22px;
    margin: 0px 0px 30px;
    line-height: 33px;
}

.bussines-sec-02 .box-btn.call-btn {
    background: var(--secondary-color);
}

.Featured-text {
    text-align: center;
    transition: 0.6s;
}

.Featured-text h1 {
    color: rgb(0, 0, 0);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin: 0px 0px 8px;
}

.Featured-text p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.Featured-box {
    background-color: rgb(243, 247, 255);
    margin-top: 50px;
    border-radius: 10px;
    transition: 0.5s;
}

.Featured-box:hover {
    background-color: var(--secondary-color);
    transition: 0.5s;
}

.Featured-box:hover p {
    color: white;
    transition: 0.5s;
}

.box-text {
    padding: 47px 36px;
    height: 320px;
}

.Featured-box h5 {
    font-size: 21px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    padding-top: 17px;
    margin: 0px 0px 20px;
}

.Featured-box p {
    font-weight: 400;
    transition: 0.5s;
    font-size: 10px;
    color: rgb(102, 102, 102);
    line-height: 30px;
}

.box-para {
    font-size: 33px;
}

.foot {
    background-color: rgb(0, 0, 0);
    padding: 100px 10px 10px;
    margin-top: 108px;
}

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

.logo h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.blue-background {
    background-color: rgb(8, 11, 24);
    padding: 7px 0px;
    margin-top: 64px;
}

.plus-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 25px 0px;
}

.plus-text h6 {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
}

.plus-text i {
    color: white;
    font-size: 22px;
}

.case {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}

.case a {
    color: rgb(102, 102, 102);
    font-size: 16px;
    text-decoration: none;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 7px;
    align-items: center;
}

.icons i {
    font-size: 35px;
    color: white;
}

.last-text {
    text-align: center;
    margin-top: 26px;
    line-height: 1;
    margin-bottom: 0px;
}

.last-text p {
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-weight: 400;
}

.slider_testi .owl-carousel .owl-stage {
    margin: 17px 11px;
}

.bussines-sec {
    overflow: unset !important;
}

.card-block {
    padding: 18px;
}

.card-block p {
    font-size: 15px;
    width: 100%;
    text-align: justify;
}

.icons a {
    transition: 0.4s;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    border-radius: 50px;
    font-size: 17px;
    text-decoration: none;
}

.icons a i {
    font-size: 30px;
}

.icons a:hover {
    background-color: rgb(255, 154, 104);
    transition: 0.4s;
}

.box a {
    color: white;
    font-size: 25px;
    text-decoration: none;
    list-style: none;
}

.box a {
    border: 1.5px solid white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 0px;
    gap: 15px;
}

.txt {
    text-decoration: none;
    color: white;
    margin-bottom: 0px;
    font-size: 18px;
}

.txt span {
    display: block;
}

.align-items-center {
    align-items: center !important;
    justify-content: center;
}

#button {
    display: inline-block;
    background-color: rgb(123, 200, 234);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

#button::after {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: rgb(255, 255, 255);
}

#button:hover {
    cursor: pointer;
    background-color: rgb(51, 51, 51);
}

#button:active {
    background-color: rgb(85, 85, 85);
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.services-slider .owl-theme .owl-dots {
    display: none;
}

section.FaqSec {
    overflow: hidden;
    padding: 0px 0px 100px;
}

section.Featured {
    padding: 100px 0px;
}

section.Seo_Campaigh .serviceBox figure {
    background: transparent;
    display: block;
}

.helpsec .img-container figure.abs img {
    width: 470px;
}

.Seo_Campaigh figure.Newimage {
    margin: 0px 0px 80px;
}

section.Seo_Campaigh {
    padding: 100px 0px;
}

.campaigns-sec .head h3 {
    font-size: 23px;
    font-weight: 500;
    margin: 0px 0px 15px;
    color: rgb(0, 0, 0);
}

.blue-background .two-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    outline: none;
}


.blue-background a.btn.foot-btn {
    color: rgb(102, 102, 102);
    font-size: 18px;
    gap: 10px;
}

.blue-background a.btn.foot-btn i {
    color: rgb(255, 255, 255);
}

.blue-background .card-body {
    background: transparent;
    color: rgb(255, 255, 255);
}

.blue-background .card-body ul {
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    text-align: center;
    gap: 10px;
}

.blue-background a.btn.foot-btn:hover {
    color: rgb(255, 255, 255);
}

.blue-background .maib-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.blue-background a.btn.foot-btn:active {
    border: 0px;
}

.Section-02 .Service-left {
    width: 100%;
}

.marketing-bshbard article h2 {
    line-height: 45px;
    font-weight: 700;
    font-size: 36px;
    color: rgb(0, 0, 0);
    margin: 0px 0px 20px;
}

.growth-sec .tabs-growth div#v-pills-tabContent .tab-pane ul {
    display: flex;
    align-items: self-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    margin: 0px 0px 25px;
    list-style: disc;
}

.seo-sec .research.new-box {
    height: 350px;
}

.seo-sec .research.new-box li {
    height: 169px;
    overflow-y: scroll;
}

.Service-sec .ElimateBox-2 .DOminatemain .man-img img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.Section-01.privacy-sec {
    height: 460px;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/min-banner.png) 0% 0% / cover no-repeat
}

.Section-01.privacy-sec .Content h1 {
    color: #fff;
    text-align: center;
    font-size: 50px;
    FONT-WEIGHT: 700;
}

/* .privacy-contact-sec */
.privacy-contact-sec {
    padding: 80px 0px 30px;
}

.privacy-contact-sec .head {
    text-align: left;
}

.privacy-contact-sec .head h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0px 0px 10px;
}

.privacy-contact-sec .head h3 span {
    font-size: 20px;
    color: #555;
}

.privacy-contact-sec .head ul {
    display: flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
    margin: 0px 0px 25px 40px;
}

.privacy-contact-sec .head ul li {
    font-size: 16px;
    color: #000;
}

.privacy-contact-sec .head p a {
    color: rgb(102, 102, 102);
    text-decoration: underline;
    font-weight: 500;
}

.blue-background .card-body ul li a {
    border: 0;
    font-size: 20px;
}

/* .privacy-contact-sec */
/* about-page */
.about-contact {
    padding: 70px 0px;
}

.about-contact .txt h2 {
    color: #000;
    margin: 0px 0px 25px;
    font-size: 30px;
    font-weight: 600;
}

.about-contact .txt p {
    margin: 0px 0px 20px;
}

.about-contact .main-img img {
    width: 100%;
    height: 500px;
    object-fit: contain
}

/* about-contact */
/* expect-sec */
.expect-sec {
    padding: 90px 0;
    position: relative;
}

.expect-sec .heading h2 {
    font-weight: 700;
    font-size: 40px;
    margin-left: auto;
    margin-right: auto;
}

.expect-sec .heading p {
    margin: 0;
    padding: 30px 0px 70px;
}

.expect-sec:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 218px;
    background: url(../images/img16.png);
    background-size: contain;
    background-position: unset;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    filter: grayscale(1);
}

.expect-sec.visible:before {
    background: url(../images/shap03.webp) no-repeat;
}

.expect-sec:after {
    bottom: 0;
    right: 0;
}

.expect-sec.visitor:after {
    background: url(../images/shap04.webp) no-repeat;
}

.heading h4 {
    padding: 5px 25px;
    margin: 0 auto 1px;
    color: #000;
    border-radius: 6px;
    display: table;
    text-transform: capitalize;
}

.hideme img,
.hideme svg {
    position: absolute;
    right: 45px;
    top: 0;
}

.slider,
.slider:before {
    position: absolute;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch {
    z-index: 2;
    top: 0;
    position: relative;
}

.slider {
    top: -3px;
    bottom: 0;
    left: -42px;
    right: 0;
    border-radius: 20px;
    background: var(--primary-color);
    cursor: pointer;
    overflow: visible;
    width: 70px;
    height: 34px;
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.slider:before {
    content: "";
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 100px;
    top: 4px;
    -webkit-transform: translateX(0);
    transform: translateX(42px);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.hideoff {
    position: absolute;
    left: 0;
    opacity: 0.3;
}

.switch input:checked+.slider:before {
    -webkit-transform: translateX(20px);
    transform: translateX(5px);
    background: #fff;
}

.off,
.on {
    position: absolute;
    right: -185px;
    top: 2px;
    color: #000;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    width: 150px;
    font-size: 20px;
}

.on {
    right: 65px;
    top: 3px;
    color: #d3d3d3;
}

.switch input:checked~.off {
    color: #ccc;
}

.switch input:checked~.on {
    color: #000;
}

.seo-switch {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.seo-switch img.img-before {
    top: 0;
    left: -165px;
    position: relative;
}

.seo-switch .img-after img {
    right: -195px;
    position: relative;
    top: 0;
}

.rank {
    text-align: center;
    padding-top: 220px;
}

.rank span {
    -webkit-text-stroke: 1px var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 41px;
}

.rank p {
    font-size: 20px;
    margin-bottom: 0;
}

.counter {
    display: none;
}

.head {
    text-align: center;
}

/* expect-sec */

/* modal-form */
.modal-form .modal-dialog {
    margin: 0px auto;
    max-width: 100%;
    height: 100%;
}
.modal-form {
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: url(../images/modal-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.modal-form .modal-content::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
}
.modal-form .modal-content {
    background: transparent;
    border-radius: 0;
    max-width: 100%;
}

.modal-form .modal-content .modal-header {
    border: 0;
    padding: 0;
    margin: 0px 0px 0px;
}

.modal-form .modal-content .modal-header .btn-close {
    opacity: 1;
    background: var(--secondary-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    padding: 0;
    position: relative;
    top: 24px;
    left: -24px;
    z-index: 99999;
}

.modal-form .modal-content .modal-header .btn-close span {
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
}

.modal-form .modal-content .form-box {
    padding: 20px 70px 20px;
}

.modal-form .modal-content .form-box h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 40px;
    margin: 0px 0px 40px;
    color: #ffffff;
}

.modal-form .modal-content .form-box h2 span {
    font-size: 25px;
    font-weight: 400;
    display: block;
}

.modal-form .modal-content .form-box .input-main {}

.modal-form .modal-content .form-box .input-main .form-group {
    margin: 0px 0px 15px;
}
.modal-form .modal-content .form-box .input-main .form-group label {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    margin: 0px 0px 5px;
}
.modal-form .modal-content .form-box .input-main .form-group .input-box {
    height: 60px;
    background: #fff;
    border: 0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 18px;
    color: #000;
    line-height: 28px;
}

.modal-form .modal-content .form-box .input-main .form-group textarea.input-box {
    height: 171px;
}

.modal-form .modal-content .form-box .input-main .form-btn {
    display: flex;
    width: 300px;
}

.modal-form .modal-content .form-box .input-main .form-btn .submit {
    padding: 16px;
    background: var(--primary-color);
    color: #000000;
    border-radius: 7px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.modal-form .modal-content .form-box .input-main .question-box{
    margin: 10px 0px 30px;
}
.modal-form .modal-content .form-box .input-main .question-box .options {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
}
.modal-form .modal-content .form-box .input-main .question-box h3{
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin: 0px 0px 14px;
}
.modal-form .modal-content .form-box .input-main .question-box .options .option {
  display: block;
  padding: 11px 32px;
  border: 2px solid #fff;
  margin: 0px 0;
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.modal-form .modal-content .form-box .input-main .question-box .options .option input[type="checkbox"],
.modal-form .modal-content .form-box .input-main .question-box .options .option input[type="radio"] {
  display: none;
}

.modal-form .modal-content .form-box .input-main .question-box .options.options .option:has(input:checked),
.modal-form .modal-content .form-box .input-main .question-box .options .option input[type="checkbox"]:checked+* {
  background-color: #ffffff !important;
  color: #000000;
}

.modal-form .modal-content .form-box .input-main .question-box .options .option-btnS,
.modal-form .modal-content .form-box .input-main .question-box .options .option-btn {
  padding: 22px 38px;
  border: 2px solid #ffffff;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  line-height: 0;
  font-size: 18px;
  font-weight: 400;
}

.modal-form .modal-content .form-box .input-main .question-box .options .option-btnS.active,
.modal-form .modal-content .form-box .input-main .question-box .options .option-btn.active {
  background-color: #ffffff;
  color: #000000;
}


/* modal-form */


/* formArea */
.formArea {
    background: #F5F6F7;
    padding: 3rem;
    border-radius: 13px;
}

.formArea h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    padding: 0px 0 20px 0;
}

.formArea form input,
.formArea form select,
.formArea form textarea {
    border: 1px solid #ab9a9a;
    background: #ffffff;
    padding: 15px 20px;
    margin: 8px 0;
    border-radius: 8px;
    width: 100%;
    color: #000;
    font-size: 16px;
}
.formArea form input::placeholder,
.formArea form select::placeholder,
.formArea form textarea::placeholder{
    color: #777;
}
.formArea form textarea {
    height: 200px;
}

.formArea form button {
    margin-top: 10px;
    width: 100%;
}
/* formArea */



/*thank-you*/
    .thankyou_page2 span{
      display: inline-block;
      overflow: hidden;
      animation: .3s swift-up ease-in-out forwards;	
    }
    
    .thankyou_page2 i{
      font-style: normal;
      position: relative;
      top: 55px;
      animation: .8s swift-up ease-in-out forwards;
    }
    
    @keyframes swift-up {
      to {
        top: 0;
      }
    }
    .thankyou_page2 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 670px;
        text-align: center;
        position: relative;
        background: #000000;
        z-index: 1;
        padding: 11rem 0px 0px;
    }
    .thankyou_page2::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 10%;
        left: 0;
        background: url(../images/main-banner.png) 0% 0% / cover no-repeat;
        opacity: 1;
    }
    .thankyou_page2 h1 {
        color: #ffffff;
        font-size: 57px;
        padding: 20px 0 20px;
        position: relative;
        z-index: 2;
    }
    .thankyou_page2 p {
        font-size: 20px;
        color: #ffffff;
        padding: 0px 0 45px;
        z-index: 2;
        position: relative;
        width: 45%;
        margin: 0 auto;
        line-height: 1.5;
    }
    .thankyou_page2 img {
        width: 177px;
        position: relative;
        z-index: 2;
        animation: 4s ease-in-out infinite triangleUpDown;
    }
    @keyframes triangleUpDown {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    .thankyou_page2 a {
        width: 333px;
        display: block;
        margin: 0 auto;
        background: 0 0;
        color: #ffffff;
        padding: 14px 0;
        font-size: 18px;
        border-radius: 74px;
        border: 2px solid #ffffff;
        position: relative;
        font-weight: 600;
        z-index: 2;
    }
    .thankyou_page2 a:hover {
        background: #ffffff;
        color: #000000;
    }
/*thank-you*/

