.button_cb43 {
    width: 56px !important;
    height: 56px !important;
}

.label_b7aa._bottom_ca5a, .label_b7aa._left_d55d, .label_b7aa._right_ddf9 {
    right: 0 !important;
}

.pop-up__container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

    .pop-up__container.active {
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 10000
    }

.pop-up {
    width: 600px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    z-index: 100000;
    padding: 35px 25px;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.pop-up__close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 2
}

.pop-up__recentagle {
    position: absolute;
    right: 0;
    top: 0;
    width: 139px;
}

.pop-up__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.pop-up__subtitle {
    display: block;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 20px;
}

.pop-up__contacts {
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .pop-up__contacts li a {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        color: var(--color-blue)
    }



#send-callback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: .7;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* Loader */

.ripple__rounds {
    border: 0 solid transparent;
    border-radius: 50%;
    position: relative;
}

    .ripple__rounds:before, .ripple__rounds:after {
        content: '';
        border: 0.6em solid rgb(255, 255, 255);
        border-radius: 50%;
        width: inherit;
        height: inherit;
        position: absolute;
        top: 0;
        left: 0;
        animation: ripple__rounds 1s linear infinite;
        opacity: 0;
    }

    .ripple__rounds:before {
        animation-delay: .5s;
    }

    .ripple__rounds:after {
        animation-delay: 0;
    }

@keyframes ripple__rounds {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

[class*=ripple__rounds] {
    display: inline-block;
    width: 12em;
    height: 12em;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
}

.box {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9e9e9ab;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000000;
}

.not-show {
    display: none;
}
/* Loader end */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #12244080;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    z-index: 9999;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 100;
}

.header__logo {
    width: 178px;
    height: 77px;
}

    .header__logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.header__navigation {
    margin-left: auto;
}

.navbar__list {
    display: flex;
    align-items: center;
}

.navbar__link {
    padding: 0 20px;
    font-size: 16px;
    font-weight: 700;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    color: var(--color-white);
}

    .navbar__link.basket-icon {
        position: relative;
    }

        .navbar__link.basket-icon:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            height: 43px;
            width: 2px;
            opacity: 0.30000001192092896;
            background: #d9d9d9;
            transform: translateY(-50%);
        }

    .navbar__link.active {
        border-bottom: 1px solid var(--color-white);
    }

.menu-mobile {
    display: none;
}

.header__burger {
    display: none;
}

.navbar__link.basket-icon .count {
    position: absolute;
    top: 6px;
    right: 22px;
    height: 10px;
    border-radius: 50%;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    z-index: 10;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
}

    .navbar__link.basket-icon .count.limit {
        width: 25px;
        height: 25px;
        font-size: 10px;
        top: 4px;
    }


.faq {
    max-width: 1360px;
    margin: 100px auto;
    clear: both;
}

.faq__title {
    margin-bottom: 40px;
}

.accordion__item {
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    transition: background 0.3s ease;
    cursor: pointer;
}

    .accordion__item:hover {
        background: #f8f8f8;
    }

    .accordion__item .item__label {
        font-size: 24px;
        font-weight: 600;
        position: relative;
        padding-right: 60px;
        padding: 30px 45px 30px 20px;
    }

        .accordion__item .item__label::before {
            content: "+";
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
            font-size: 40px;
            opacity: 0.6000000238418579;
        }

    .accordion__item.active {
        border-bottom: 0
    }

        .accordion__item.active .item__label::before {
            transform: rotate(45deg) translate(-35%, -50%);
        }

    .accordion__item .item__content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s ease, opacity .6s ease, padding .8s ease;
        padding: 0 10px 0 20px;
        opacity: 0;
        font-size: 20px;
        font-weight: 400;
        line-height: 130%;
    }

    .accordion__item.active .item__content {
        padding-bottom: 20px;
        max-height: 150px;
        overflow: auto;
        opacity: 1
    }



.back-call {
    background: linear-gradient(151deg, #3b5597 0%, #7790cf 100%);
    padding: 100px 40px;
    color: var(--color-white);
}

.back-call__wrapper {
    display: flex;
}

.back-call__content {
    flex: 0 0 47%;
    margin-right: 60px;
}

    .back-call__content .content__title,
    .back-call__content .content__subtitle {
        max-width: 700px;
    }

    .back-call__content .content__title {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .back-call__content .content__subtitle,
    .content-consultation__list li {
        font-size: 20px;
        font-weight: 300;
    }

.content-consultation {
    margin-top: 95px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-consultation__list li {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 131%;
}

    .content-consultation__list li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border: 1px solid var(--color-white);
    }

.back-call__form {
    flex: 0 0 44%;
}

    .back-call__form .container {
        padding: 0 190px;
    }

    .back-call__form .form__field {
        margin-bottom: 40px;
    }

        .back-call__form .form__field sup {
            opacity: .7;
            font-size: 12px;
        }

        .back-call__form .form__field:hover input, .back-call__form .form__field:hover textarea {
            box-shadow: 2px 4px #1224405e;
        }

        .back-call__form .form__field label {
            display: block;
            font-size: 20px;
            font-weight: 600;
        }

        .back-call__form .form__field input, .back-call__form .form__field textarea {
            width: 100%;
            margin-top: 10px;
            padding: 18px 20px;
            border-radius: 3px;
            border-bottom: 1px solid rgba(18, 36, 64, 0.3);
            background: #f7f7f9;
            font-size: 20px;
            transition: all 0.4s ease;
            color: var(--color-blue);
        }

    .back-call__form button {
        border-radius: 8px;
        background: var(--color-green);
        backdrop-filter: blur(10px);
        font-size: 20px;
        font-weight: 700;
        color: var(--color-white);
        width: 100%;
        display: block;
        padding: 15px 0;
        transition: background 0.3s ease;
    }

        .back-call__form button:hover {
            background: #39c940;
        }

.msg__textarea {
    width: 100%;
    min-height: 150px;
    border: 1px solid #e5e5e5;
    padding: 10px 15px;
    line-height: 200%;
    overflow: hidden;
    resize: none
}

.captcha-label {
    display: flex;
    flex-direction: column;
    margin-bottom: 23px;
}

.captcha-text {
    font-size: 16px;
    line-height: 145%;
    margin-bottom: 10px;
    text-align: center;
}

.captcha-img {
    max-width: 120px;
    max-height: 120px;
    margin: 10px auto;
    padding: 10px 0 0px 20px;
    background: #000;
    border-radius: 40px;
}

.captcha-label input {
    max-width: 110px;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    font-size: 15px;
    line-height: 22px;
    background: transparent;
    color: var(--color-white);
    border-bottom: 1px solid #AEBBDD;
}

.captcha-error {
    text-align: center;
    margin-top: 10px;
    color: red;
}

.captcha-label input::placeholder {
    font-size: 15px;
    color: #AEBBDD;
}

.captcha-label input:focus {
    border-color: var(--color-white);
}

.call__menu {
    position: fixed;
    bottom: 20px;
    left: 37px;
    transition: all 1s ease;
    transform: rotate(0deg);
    z-index: 1000;
}

    .call__menu.start {
        animation: rotatePhone 1s linear;
    }

    .call__menu.active {
        animation: none;
    }

@keyframes rotatePhone {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(20deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.call__toggle {
    position: relative;
    cursor: pointer;
}

    .call__toggle .toggle {
        display: block;
        z-index: 1;
        position: relative;
        width: 56px;
        height: 56px;
    }

    .call__toggle li {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.5s ease;
        background: #fff;
        border-radius: 50%;
    }

        .call__toggle li a img {
            width: 40px;
            height: 40px;
        }

.call__menu.active .call__toggle li a img {
    width: 50px;
    height: 50px;
}

.call__menu.active li {
    transition: all 0.5s;
}

    .call__menu.active li:nth-child(1) {
        top: -20px;
        left: -3px;
    }

    .call__menu.active li:nth-child(2) {
        top: -30px;
        right: 50px;
    }

    .call__menu.active li:nth-child(3) {
        top: 17px;
        left: 90px;
       
    }



.footer {
    background-color: var(--color-blue);
    padding: 50px 0 0px 0;
    position: relative;
    z-index: 2
}




.footer__wrapper {
    display: flex;
    justify-content: space-between;
}

.footer__columns {
    margin: 0 -20px;
    padding: 0 10px;
}

    .footer__columns.mobile {
        display: none;
    }


.footer__items {
    height: 100%;
    display: flex;
}

.footer__item a, .footer__item {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 700;
}



    .footer__item .item__label:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #fff;
        transition: transform .3s linear;
    }

    .footer__item .item__label.active:after {
        transform: translateY(-50%) rotate(-180deg);
    }

    .footer__item .item__content {
        max-height: 0;
        overflow: hidden;
    }

        .footer__item .item__content li {
            margin-bottom: 10px;
        }

            .footer__item .item__content li a {
                font-size: 14px;
                font-weight: 400
            }

    .footer__item .item__label.active ~ .item__content {
        max-height: max-content;
        margin-top: 10px;
    }

    .footer__item ul li {
        margin-bottom: 20px;
        line-height: 135%
    }

    .footer__item .item__label {
        display: inline-block;
        position: relative;
        padding-right: 20px;
        margin-bottom: 0px;
    }

    .footer__item ul li:last-child {
        margin-bottom: 0;
    }

    .footer__item .item__img {
        display: block;
    }

    .footer__item .item__title {
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 30px;
        opacity: .5
    }

    .footer__item.fl {
        display: flex;
        flex-direction: column;
        text-align: right;
        max-width: 300px;
    }

        .footer__item.fl a {
            display: block;
            font-weight: 700;
            margin-bottom: 23px;
        }

    .footer__item address {
        font-size: 14px;
        margin-bottom: 23px;
    }

    .footer__columns .item__contacts span {
        font-size: 24px;
        display: block;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .footer__item address {
        font-style: inherit;
    }

    .footer__item.fl .item__contacts address {
        font-size: 15px;
        font-weight: 400;
        line-height: 130%;
    }

    .footer__item.fl .item__year {
        font-size: 14px;
        font-weight: 400;
        line-height: 130%;
    }

    .footer__item.fl .item__contacts .item__mail {
        font-size: 18px;
        margin-top: 15px;
    }
.poweredBy {
    display: flex;
    align-items: end;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
    color: #fff;
    padding: 100px 0 40px 0;
}
.to-techmind {
    display: inline-block;
    width: 93px;
    height: 22px;
    margin-bottom: 1px;
}

    .to-techmind img {
        width: 100%;
        height: 100%;
    }
.item__mail {
    font-weight: 400 !important;
}


@media (min-width: 1024.99px) {
    .navbar__link:hover {
        border-bottom: 1px solid var(--color-white);
    }

    .accordion__item.active .item__content::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
}



@media (max-width: 1439.99px) {
    .header__logo {
        width: 139px;
        height: 57px;
    }
}

@media (max-width: 1300px) {

    .navbar__link {
        padding: 0 13px;
    }
        .navbar__link.basket-icon .count {
            right: 15px;
        }
}

@media (max-width: 1199.99px) {

    .back-call__content {
        margin-right: 30px;
    }

        .back-call__content .content__title {
            font-size: 25px;
        }

        .back-call__content .content__subtitle,
        .content-consultation__list li {
            font-size: 17px;
        }

    .back-call__form {
        flex: 0 0 48%;
    }


    .footer__item .item__img {
        width: 140px;
        height: 60px;
    }

        .footer__item .item__img img {
            width: 100%;
            height: 100%;
        }



    .footer__item a, .footer__item, .footer__item.fl .item__year {
        font-size: 15px;
    }

        .footer__item .item__content li a {
            font-size: 12px;
        }

        .footer__item .item__label {
            padding-right: 15px;
        }

        .footer__item .item__content li a {
            font-size: 10px;
        }
}

@media (max-width: 1024.99px) {
    .header {
        background: var(--color-blue);
    }

        .header::before {
            display: none;
        }

    .header__wrapper {
        height: 65px;
    }

    .header__logo {
        width: 130px;
        height: 56px;
    }

    .navbar__link.basket-icon img {
        width: 34px;
        height: 34px;
    }


    .navbar__link.basket-icon {
        margin-left: auto;
    }

        .navbar__link.basket-icon:before {
            display: none;
        }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: radial-gradient( 67.55% 47.23% at 20.42% 21.94%, #1b3052 0%, #0d1e38 100% );
        padding: 65px 20px 0 20px;
        z-index: 100;
        overflow: auto;
        display: flex;
        flex-direction: column;
        transition: right 0.7s ease;
    }

        .navbar.active {
            right: 0;
        }

    .navbar__list {
        display: block;
        padding-bottom: 30px;
    }

        .navbar__list .navbar__item {
            width: 100%;
        }

            .navbar__list .navbar__item.tel {
                display: none;
            }

            .navbar__list .navbar__item .navbar__link {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                justify-content: center;
            }

    .navbar__link.basket-icon {
        height: 65px;
    }

    .menu-mobile {
        display: block;
        color: #fff;
        text-align: right;
        margin-top: auto;
        padding-bottom: 70px;
    }

        .menu-mobile .footer__columns:last-child {
            display: none;
        }

        .menu-mobile .item__mail {
            display: none !important;
        }

        .menu-mobile a {
            display: block;
            color: #fff;
            font-size: 20px;
            font-weight: 600;
        }

        .menu-mobile strong {
            display: block;
            font-size: 12px;
            line-height: 130%;
            margin: 16px 0;
            font-weight: 300;
        }

        .menu-mobile img {
            width: 120px;
            max-width: 100%;
        }

    .header__burger {
        width: 35px;
        height: 35px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 100;
    }

        .header__burger span {
            position: absolute;
            background-color: var(--color-white);
            width: 22px;
            height: 1.7px;
            transition: 0.3s;
        }

        .header__burger:after,
        .header__burger:before {
            content: "";
            position: absolute;
            background-color: var(--color-white);
            width: 22px;
            height: 1.7px;
            transition: 0.3s;
        }

        .header__burger:before {
            top: 10px;
        }

        .header__burger:after {
            bottom: 10px;
        }

        .header__burger.active span {
            width: 0;
        }

        .header__burger.active:before {
            transform: rotate(-45deg);
            top: 40%;
        }

        .header__burger.active:after {
            transform: rotate(45deg);
            bottom: 54%;
        }

    .header__logo {
        width: 118px;
        height: 45px;
    }

    .navbar__link {
        padding: 0 15px;
        font-size: 17px;
        font-weight: 600;
    }

        .navbar__link.basket-icon .count {
            font-size: 9px;
            right: 13px;
            top: 6px;
            width: 17px;
            height: 17px;
            font-weight: 400;
        }

            .navbar__link.basket-icon .count.limit {
                width: 22px;
                height: 20px;
                font-size: 9px;
                top: 2px;
                right: 9px;
            }

        .navbar__link.basket-icon img {
            width: 32px;
            height: 32px;
        }


    .back-call {
        padding: 45px 0;
    }

    .back-call__wrapper {
        flex-direction: column;
    }

    .content-consultation {
        margin-top: 40px;
    }

    .back-call__content {
        margin-bottom: 40px;
    }

    .back-call__form .form__field, .captcha-label {
        max-width: 100%;
    }


    .footer {
        padding: 30px 0 0 0 
    }
    .poweredBy {
        padding: 10px 0 81px 0;
    }
    .footer .container {
        padding: 0;
    }

    .footer__columns {
        margin: 0;
        padding: 0;
    }

        .footer__columns:nth-child(1) {
            order: 4;
            display: none;
        }

        .footer__columns:nth-child(2) {
            order: 2;
        }

        .footer__columns:nth-child(3) {
            order: 3;
        }

        .footer__columns:nth-child(4) {
            order: 1;
        }

        .footer__columns:nth-child(5) {
            order: 5;
        }

    .footer__wrapper {
        flex-direction: column;
    }

    .footer__items {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        margin-bottom: 30px;
    }

    .footer__item a, .footer__item, .footer__item.fl .item__year {
        font-size: 12px;
    }

        .footer__item .item__title {
            font-size: 16px;
        }


    .footer__columns:last-child .footer__items, .footer__columns:first-child .footer__items {
        border: none;
    }

    .footer__columns:last-child .footer__items {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .footer__columns.mobile {
        display: block;
    }

        .footer__columns.mobile .footer__items {
            justify-content: flex-end;
            margin-bottom: 12px;
            border: none;
        }

    .footer__item {
        padding: 0 50px;
    }

        .footer__item.fl {
            max-width: 100%;
            width: 100%;
            text-align: center;
        }

    .footer__items .item__contacts {
        display: none;
    }



    .footer__columns.mobile .item__contacts {
        display: block;
        text-align: right;
        max-width: 300px;
    }
       

        .footer__item .item__img {
            width: 178px;
            height: 78px;
        }

    .footer__columns.mobile .item__contacts a {
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 400
    }

        .footer__columns.mobile .item__contacts a.item__mail {
            font-size: 14px;
        }

    .footer__columns.mobile .item__contacts address {
        margin-bottom: 16px;
        font-size: 12px;
        font-weight: 400;
        line-height: 130%;
    }

    .footer__item .item__img {
        margin-left: auto;
    }
}

@media (max-width: 991.99px) {
    .pop-up {
        width: 500px;
    }

    .pop-up__title {
        font-size: 17px;
    }

    .pop-up__subtitle {
        font-size: 24px;
    }

    .pop-up__contacts li a {
        font-size: 14px;
    }


    .call__menu img {
        width: 50px;
        height: 50px;
    }

    .call__toggle li a img {
        width: 40px;
        height: 40px;
    }

}

@media (max-width: 767.99px) {
    .pop-up {
        width: 270px;
    }

    .pop-up__title {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .pop-up__subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .pop-up__contacts {
        flex-direction: column;
    }

        .pop-up__contacts li {
            margin-bottom: 20px;
        }

            .pop-up__contacts li a {
                font-size: 16px;
            }

    #send-callback img {
        max-width: 360px;
    }

   

    .faq {
        margin-bottom: 10px;
        margin-top: 30px;
    }

        .faq .container {
            padding: 0;
        }

    .faq__title {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    .accordion__item.active .item__content {
        padding-bottom: 10px;
    }

    .accordion__item .item__label {
        font-size: 16px;
        padding: 20px 45px 16px 0px;
    }

        .accordion__item .item__label::before {
            font-size: 30px;
            right: 0;
        }
    .accordion__item .item__content {
        padding-left: 0;
    }

    .accordion__item {
        padding: 0 20px;
        border-width: 2px;
    }

        .accordion__item .item__content {
            font-size: 12px;
        }

    .back-call {
        padding: 30px 0;
    }

    .back-call__content .content__title {
        font-size: 20px;
    }

    .back-call__content .content__subtitle,
    .content-consultation__list li {
        font-size: 14px;
    }

    .captcha-text {
        font-size: 13px;
    }

    .captcha-img {
        max-width: 100px;
    }

    .content-consultation,
    .back-call__form .form__field label {
        font-size: 16px;
    }

    .back-call__form .form__field input, .back-call__form .form__field textarea {
        font-size: 12px;
    }

    .back-call__form .form__field {
        margin-bottom: 8px;
    }

    .back-call__form button {
        margin-top: 16px;
    }

    .captcha-error {
        font-weight: 800;
        display: inline-block;
        padding: 12px;
        margin: 0 auto;
        width: fit-content;
        border-radius: 5px;
    }

        .captcha-error.active {
            background: #fff;
            margin-top: 10px;
        }

    .footer__item {
        padding: 0 20px;
    }

    .footer__columns .item__contacts span {
        font-size: 20px;
    }
    .poweredBy {
        padding-left: 20px;
        padding-right: 20px;
        gap: 7px;
    }
    .button_f1de {
        width: 56px !important;
        height: 56px !important; 
    }
    
}


@media (max-width: 476.99px) {
    .to-techmind {
        width: 55px;
        height: 16px;
        margin-bottom: 0px;
    }
    .poweredBy span {
        font-size: 9px;
    }
    .poweredBy {
        margin-top:0
    }
}