* {
    box-sizing: border-box;
}

.Section {
    max-width: 1200px;
    width: 95%;
    margin: 0px auto;
}

.FullSection {
    width: 100%;
}

.clear {
    clear: both;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: IRANSans;
    direction: rtl;
}

.Container {
    width: 100%;
}

.HeaderArea {
    position: relative;
}

.Logo img {
    height: 72px;
}

.HeaderArea.NotHome .TopHeader {
    position: unset;
    background: rgba(0, 0, 0, 0.7);
}

.TopHeader {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    gap: 30px;
    padding: 0px 5%;
    align-items: center;
    height: 110px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.MainMenu {
    flex-grow: 1;
    display: flex;
}

    .MainMenu a {
        font-size: 18px;
        color: white;
        padding: 20px;
        position: relative;
    }

        .MainMenu a:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            border-radius: 4px;
            background-color: #EE7D07;
            bottom: 5px;
            left: 0;
            transform-origin: right;
            transform: scaleX(0);
            transition: transform .3s ease-in-out;
        }

        .MainMenu a:hover:before {
            transform-origin: left;
            transform: scaleX(1);
        }

.HeaderActions {
    display: flex;
    align-items: center;
}
    /* .HeaderActions .Btn {
    background: white;
    color: #3F3F3F;
    text-align: center;
    padding: 10px 30px;
    border-radius: 100px;
} */

    .HeaderActions .Btn {
        position: relative;
        margin: 0;
        padding: 14px 28px;
        outline: none;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        text-transform: uppercase;
        background-color: #fff;
        border-radius: 100px;
        color: #3F3F3F;
        font-weight: 500;
        font-family: inherit;
        z-index: 0;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    }

        .HeaderActions .Btn span {
            color: #164ca7;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.7px;
        }

        .HeaderActions .Btn:hover {
            animation: rotate624 0.7s ease-in-out both;
        }

            .HeaderActions .Btn:hover span {
                animation: storm1261 0.7s ease-in-out both;
                animation-delay: 0.06s;
            }

@keyframes rotate624 {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(3deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

@keyframes storm1261 {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }

    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }

    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }

    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }

    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}

.btn-shine {
    border: 1px solid;
    overflow: hidden;
    position: relative;
}

    .btn-shine span {
        z-index: 20;
    }

    .btn-shine:after {
        background: #EE7D07;
        content: "";
        height: 155px;
        left: -75px;
        opacity: 0.4;
        position: absolute;
        top: -50px;
        transform: rotate(35deg);
        transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
        width: 50px;
        z-index: -10;
    }

    .btn-shine:hover:after {
        left: 120%;
        transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    }

.HeaderActions .loginBtn {
    color: white;
    margin-right: 35px;
    font-weight: 500;
}

/* -------------- Slider -------------- */

.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.SliderContent {
    position: absolute;
    top: 50%;
    left: 10%;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.8s ease;
    text-align: center;
}

    .SliderContent.active {
        opacity: 1;
        transform: translateY(calc(-50% - 20px));
    }

    .SliderContent h1 {
        font-size: 48px;
        margin: 0;
        text-align: center;
    }

    .SliderContent p {
        font-size: 30px;
        margin-top: 10px;
        text-align: center;
    }

    .SliderContent a.SliderBtn {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 25px;
        border: 2px solid white;
        color: white;
        text-decoration: none;
        font-size: 16px;
        border-radius: 30px;
        transition: all 0.8s ease;
    }

    .SliderContent .SliderAction {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease 0.4s;
    }

    .SliderContent.active .SliderAction {
        opacity: 1;
        transform: translateY(0);
    }

    .SliderContent a.SliderBtn:hover {
        background: white;
        color: black;
    }

.swiper {
    overflow-y: hidden;
}



/* تغییر استایل دات‌های نویگیشن */
.UnderHeader .swiper-pagination-bullets {
    right: 7% !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    top: 50% !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.UnderHeader .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #929292 !important;
    opacity: 1 !important;
}

.UnderHeader .swiper-pagination-bullet-active {
    background: white !important;
    border: 2px solid white;
}

.UnderHeader{
    position:relative;
    padding-top:45%;
    overflow:hidden;
}

    .UnderHeader video {
        position: absolute;
        z-index: 2;
        top: 0px;
        width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.AboutInHome {
    width: 95%;
    max-width: 1200px;
    border-radius: 35px;
    z-index: 1000;
    position: relative;
    background: #DBDBDB;
    background: linear-gradient(180deg, rgba(219, 219, 219, 1) 0%, rgba(255, 255, 255, 1) 100%);
    margin: -50px auto 0px auto;
    display: flex;
    padding: 40px 60px;
    gap: 20px;
}

    .AboutInHome .Section1 {
        width: calc(100% - 300px);
    }

    .AboutInHome .Section2 {
        width: 300px;
        display: flex;
        align-items: center;
    }

        .AboutInHome .Section2 img {
            width: 100%;
        }

    .AboutInHome h2 {
        font-size: 22px;
        color: #242424;
    }

    .AboutInHome p {
        color: #4C4C4C;
    }

.ActionBtn {
    background: #D6D6D6;
    text-align: center;
    padding: 10px 30px;
    border-radius: 100px;
    color: #3F3F3F;
    display: inline-block;
    transition: all ease-in-out 0.6s;
    border: none;
}

    .ActionBtn:hover, .ActionBtn.active {
        background: #21418E;
        color: white;
    }

.AboutInHome .ActionBtn {
    margin-top: 10px;
}

.ProductInHomeWrapper {
    margin: 100px auto;
}

.ProductInHome {
    display: flex;
}

    .ProductInHome .Column1,
    .ProductInHome .Column3 {
        width: calc(50% - 250px);
        position: relative;
    }

    .ProductInHome .Column2 {
        width: 500px;
        display: flex;
    }

.column2Img {
    display: flex;
    align-items: center;
    height: 100%;
}

.ProductInHome .Column2 img {
    width: 100%;
}

.ProductInHome .VerticalLine {
    position: absolute;
    width: 30px;
    height: 100%;
    border-radius: 100px;
    background-color: #21418E;
}

.ProductInHome .Column1 .VerticalLine {
    right: 3.5px;
    top: 0;
}

.ProductInHome .Column3 .VerticalLine {
    left: 3.5px;
    top: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    justify-content: space-evenly;
    height: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
}

    .feature-item .circle {
        background: white;
        width: 37px;
        height: 37px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-item .InnerCircle {
        width: 100%;
        height: 100%;
        border-radius: 100px;
        /*border: 1px solid #21418E;*/
    }

    .feature-item p {
        margin: 0;
        margin-right: 30px;
        width: calc(100% - 60px);
    }

.ProductInHome .Column3 p {
    margin-right: 0;
    margin-left: 30px;
    text-align: left;
}

.ProductInHomeTitle {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

    .ProductInHomeTitle img {
        width: 240px;
    }

    .ProductInHomeTitle h2 {
        color: #3F3F3F;
        font-size: 22px;
        margin: 0px;
    }

.HalfBorder {
    border-bottom: 1px solid #21418E;
    height: 150px;
    border-radius: 100px;
    width: calc(100% - 35px);
    margin: -55px auto 0px auto;
    position: relative;
}

    .HalfBorder .ActionBtn {
        position: absolute;
        bottom: -23px;
        left: 50%;
        transform: translateX(-50%);
    }

.ProductInHomeWrapper.Orange {
    margin: 150px auto;
}

    .ProductInHomeWrapper.Orange .VerticalLine,
    .ProductInHomeWrapper.Orange .ActionBtn:hover {
        background: #EE7D07;
    }

    .ProductInHomeWrapper.Orange .feature-item .InnerCircle,
    .ProductInHomeWrapper.Orange .HalfBorder {
        border-color: #EE7D07;
    }

.ProductInHomeWrapper .feature-item span {
    color: #21418E;
    font-weight: 500;
    font-size: 16px;
    display: block;
}

.ProductInHomeWrapper.Orange .feature-item span {
    color: #EE7D07;
}

.TabArea {
    margin: 70px auto 150px auto
}

.TabTitles {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

    .TabTitles span {
        color: #242424;
        font-weight: 500;
        font-size: 20px;
        margin-left: 30px;
    }

.TabTitle {
    background: #D6D6D6;
    color: #717171;
    font-weight: 500;
    padding: 4px 25px;
    text-align: center;
    border-radius: 100px;
    cursor: pointer;
    margin-left: 10px;
    box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
    transition: all ease-in-out 0.6s;
}

    .TabTitle:hover,
    .TabTitle.active {
        color: #003894;
        box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    }

.TabContantWrapper {
    display: none;
}

    .TabContantWrapper.active {
        display: block;
    }

.TabContent {
    width: 100%;
    border-radius: 35px;
    background: #003894;
    display: flex;
    padding: 30px 50px;
    margin-top: 20px;
}

.TabText {
    width: calc(100% - 320px);
    color: white;
}

.TabImg {
    width: 320px;
    position: relative;
}

    .TabImg img {
        position: absolute;
        top: -150px;
        right: -210px;
        width: 900px;
    }

.TabText a {
    background: white;
    text-align: center;
    padding: 10px 30px;
    border-radius: 100px;
    color: #003894;
    margin-top: 20px;
    display: inline-block;
}

.blog-slider {
    width: 100%;
    position: relative;
    margin: 20px 0px;
    background: #fff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 400px;
    transition: all 0.3s;
    direction: ltr;
}

@media screen and (max-width: 992px) {
    .blog-slider {
        /*max-width: 680px;*/
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 150px auto;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
        height: 350px;
    }
}

.blog-slider__item {
    display: flex !important;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .blog-slider__item {
        flex-direction: column;
    }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
}

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
        transition-delay: 0.3s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
        transition-delay: 0.4s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
        transition-delay: 0.5s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
        transition-delay: 0.6s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
        transition-delay: 0.7s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
        transition-delay: 0.8s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
        transition-delay: 0.9s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
        transition-delay: 1s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
        transition-delay: 1.1s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
        transition-delay: 1.2s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
        transition-delay: 1.3s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
        transition-delay: 1.4s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
        transition-delay: 1.5s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
        transition-delay: 1.6s;
    }

    .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
        transition-delay: 1.7s;
    }

.blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    background-image: linear-gradient(147deg, #fe8a39 0%, #EE7D07 74%);
    /* box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2); */
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}

    .blog-slider__img:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        opacity: 0.8;
    }

    .blog-slider__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0;
        border-radius: 20px;
        transition: all 0.3s;
    }

@media screen and (max-width: 768px) {
    .blog-slider__img {
        transform: translateY(-50%);
        width: 90%;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__img {
        width: 95%;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
        height: 270px;
    }
}

.blog-slider__content {
    padding-right: 50px;
    direction: rtl;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .blog-slider__content {
        margin-top: -80px;
        text-align: center;
        padding: 0 30px;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__content {
        padding: 0;
    }
}

.blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}

.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}

.blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
}

.blog-slider__button {
    display: inline-flex;
    background: #D6D6D6;
    padding: 10px 35px;
    border-radius: 50px;
    color: #3F3F3F;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    float: left;
}

@media screen and (max-width: 576px) {
    .blog-slider__button {
        width: 100%;
    }
}

.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
}



    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 8px 0 !important;
    }

    .blog-slider__pagination .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
        display: block;
        border-radius: 10px;
        background: #062744;
        opacity: 0.2;
        transition: all 0.3s;
    }

    .blog-slider__pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #EE7D07;
        height: 30px;
        /* box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3); */
    }

@media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px !important;
    }
}



@media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }

    .blog-slider__content {
        padding-right: 0px !important;
    }
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 205px !important;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



.StatisticSection {
    margin-block: 100px;
    background-image: url(../assets/statisticBackground.jpg);
    background-position: center;
    background-size: cover;
    padding-block: 80px;
    padding-inline: 10px;
}

    .StatisticSection .Section {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .StatisticSection .column1 {
        width: 320px;
        display: flex;
        flex-direction: column;
        color: white;
    }

.PlayArea {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

    .PlayArea img {
        width: 70px;
    }

    .PlayArea span {
        font-weight: 600;
        font-size: 18px;
    }

.StatisticSection .column1 p {
    font-weight: 600;
    font-size: 33px;
    margin-bottom: 0px;
}

.StatisticSection .column2 {
    width: calc(100% - 320px);
    padding-inline: 40px;
    box-sizing: border-box;
}

.Numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    ;
}

.Number {
    width: 23%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all .8s;
    -moz-transition: all .8s;
    -webkit-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    overflow: hidden;
    min-height: 200px;
}

    .Number span {
        font-weight: 600;
        font-size: 45px;
        color: white;
        line-height: 1;
    }

    .Number .Seprator {
        width: 40%;
        height: 2px;
        background: white;
        transition: all .8s;
        -moz-transition: all .8s;
        -webkit-transition: all .8s;
        -ms-transition: all .8s;
        -o-transition: all .8s;
    }

    .Number p {
        color: white;
        font-weight: 500;
        margin: 0px;
        text-align: center;
    }

    .Number:after {
        content: "";
        height: 0;
        width: 100%;
        background-color: #003894;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        -webkit-transform-origin: top;
        -o-transform-origin: top;
        transition: all .8s;
        -moz-transition: all .8s;
        -webkit-transition: all .8s;
        -ms-transition: all .8s;
        -o-transition: all .8s;
    }

    .Number:hover:after {
        height: 100%;
        top: auto;
        bottom: 0;
        transform-origin: bottom;
        -moz-transform-origin: bottom;
        -ms-transform-origin: bottom;
        -webkit-transform-origin: bottom;
        -o-transform-origin: bottom;
    }

    .Number:hover {
        transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        border-color: #003894;
    }

        .Number:hover .Seprator {
            background: white;
        }

.VideoWrapper {
    display: none;
}

.VideoModalBack {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 49;
    top: 0px;
}

.VideoModal {
    position: fixed;
    max-width: 95%;
    background: black;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    z-index: 100;
    overflow: hidden;
    padding: 10px;
}

.CloseModal img {
    width: 30px;
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 5px;
    background: #003894;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.VideoModal .Video {
    border-radius: 24px;
    overflow: hidden;
}

.h_iframe-aparat_embed_frame {
    position: relative;
}

    .h_iframe-aparat_embed_frame .ratio {
        display: block;
        width: 100%;
        height: auto;
    }

    .h_iframe-aparat_embed_frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.h_iframe-aparat_embed_frame {
    position: relative;
}

    .h_iframe-aparat_embed_frame .ratio {
        display: block;
        width: 100%;
        height: auto;
    }

    .h_iframe-aparat_embed_frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.BlogInHome {
    margin: 70px auto;
}

    .BlogInHome .ActionBtn {
        float: left;
        margin-top: 33px;
        margin-left: 10px;
        margin-bottom: 40px;
    }

    .BlogItemsInHome {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
    }

.BlogItemInHome {
    width: 19%;
    margin: 0px 0.5%;
    border-radius: 35px;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 26%;
    overflow: hidden;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.25);
    transition: all ease-in-out 0.3s;
}

    .BlogItemInHome:hover {
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    }

.BlogItemInHomeTitle {
    position: absolute;
    width: 100%;
    padding: 30px 15px 20px 15px;
    bottom: 0px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.77) 100%);
}

    .BlogItemInHomeTitle h3 {
        color: white;
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 3px;
        line-height: 27px;
    }

.BlogItemInHome span {
    color: white;
    font-size: 10px;
}

.Footer {
    width: 100%;
    margin: 100px auto 0px auto;
    background-color: #4A4A4A;
    display: flex;
    padding: 30px 30px;
    color: white;
    position: relative;
}

.FooterLogo {
    position: absolute;
    top: -35px;
    right: 0px;
    width: 300px;
}

.Footer .Column {
    padding: 0px 20px;
}

.Footer .Column1 {
    width: 200px;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Footer .Column2 {
    width: calc(100% - 700px);
}

.Footer .Column3 {
    width: 200px;
    border-right: 1px solid #C1C1C1;
    border-left: 1px solid #C1C1C1;
    align-items: center;
}

.Footer .Column4 {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Social {
    display: flex;
    gap: 10px;
}

    .Social img {
        height: 25px;
    }

.Footer .Column {
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
}

    .Footer .Column p {
        border-bottom: 1px solid #C1C1C1;
        margin-top: 0px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

.ContactInFooter {
    display: flex;
    flex-direction: column;
}

.Footer .Title {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
}

.ContactLine {
    display: flex;
    margin: 5px 0px;
    align-items: center;
}

    .ContactLine img {
        width: 25px;
    }

    .ContactLine span {
        width: calc(100% - 45px);
        margin-right: 20px;
    }

.Footer ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding:0px;
    padding-top: 35px;
}
    .Footer ul li{
        padding-right:10px;
    }
    .Footer ul li a {
        color: white;
    }

.AppIcons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

    .AppIcons img {
        height: 60px;
    }

.Certificates {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

    .Certificates img {
        height: 100px;
    }

.ProductsArchive {
    margin: 100px auto;
}

    .ProductsArchive .TabTitles {
        margin-bottom: 40px;
    }

.ProdcutItems {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ProdcutItem {
    width: 32%;
    border: 1px solid #DBDBDB;
    border-radius: 20px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
}

.ProductImg {
    background-position: center;
    background-size: cover;
    width: 95%;
    margin: 10px auto;
    padding-top: 95%;
    border-radius: 20px;
}

.ProdcutItem h2 {
    color: #242424;
    font-size: 18px;
    font-weight: 500;
    padding-inline: 20px;
    margin-top: 40px;
}

.ProductCardSpecs {
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.ProductCardSpec {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 300;
    font-size: 15px;
}

.ProductCardActions {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 10px auto
}

.ProdcutItem .ActionBtn {
    padding-inline: 20px;
}

    .ProdcutItem .ActionBtn:first-child {
        background-color: #EE7D07;
        color: white;
    }

        .ProdcutItem .ActionBtn:first-child:hover {
            background-color: #344D95;
        }

.GuaranteePage {
    margin-block: 50px;
}

    .GuaranteePage h2 {
        color: #4C4C4C;
        font-size: 32px;
        font-weight: bold;
        text-align: center;
        padding-inline: 10px;
    }

    .GuaranteePage > p {
        font-size: 20px;
        color: #3F3F3F;
        text-align: center;
        margin-top: 20px;
        padding-inline: 10px;
    }

.sperator {
    width: 100%;
    background-color: #929292;
    height: 1px;
    margin-block: 50px;
}

.GuaranteeActions {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.GuaranteeProduct {
    width: 100%;
    background: #003894;
    padding: 60px 5%;
    margin-block: 50px;
    display: none;
}

    .GuaranteeProduct#p2 {
        background: #EE7D07;
    }

    .GuaranteeProduct.active {
        display: flex;
    }

    .GuaranteeProduct .part1 {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        color: white;
    }

        .GuaranteeProduct .part1 img {
            width: 420px;
            max-width: 100%;
            align-self: center;
            display:none;
        }

    .GuaranteeProduct .part2 {
        width: 50%;
    }

        .GuaranteeProduct .part2 .imgHolder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .GuaranteeProduct .part2 img {
            width: 350px;
            max-width: 90%;
        }

.GuaranteeForm {
    margin-block: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

    .GuaranteeForm form {
        margin-bottom: 50px;
    }

    .GuaranteeForm > span {
        color: #3F3F3F;
    }

    .GuaranteeForm > form {
        display: flex;
        flex-direction: column;
        width: 400px;
        max-width: 95%;
        gap: 10px;
    }

    .GuaranteeForm .SerialInput {
        background: #D6D6D6;
        border-radius: 14px;
        border: none;
        box-shadow: inset 0px 4px 4px 0px rgba(0,0,0,0.25);
        height: 60px;
        text-align: center;
        font-size: 22px;
        line-height: 0;
        text-transform: uppercase;
    }

    .GuaranteeForm .ActionBtn {
        background: #21418E;
        width: 180px;
        align-self: center;
        color: white;
    }

    .GuaranteeForm .desc {
        background-color: #ECECEC;
        border-radius: 25px;
        padding: 30px;
        width: 1000px;
        max-width: 95%;
    }

#resultGurantee {
    width: 1000px;
    max-width: 95%;
}

.warningMsg {
    background-color: rgba(255, 186, 0, 0.05);
    text-align: center;
    border-radius: 20px;
    padding: 10px;
}

    .warningMsg p {
        color: #ffba00;
        font-size: 22px;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .warningMsg span {
        color: #555555;
    }

.successMsg {
    background-color: #b5ffd2;
    text-align: center;
    border-radius: 20px;
    padding: 10px;
}

    .successMsg p {
        color: #008635;
        font-size: 22px;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .successMsg span {
        color: #555555;
    }

.GuaranteeMainForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .GuaranteeMainForm .holder {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

.GuaranteeForm .holder .FormGroup {
    flex-grow: 1;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .GuaranteeForm .holder .FormGroup label {
        width: 100px;
    }

    .GuaranteeForm .holder .FormGroup input {
        flex-grow: 1;
    }

.GuaranteeMainForm .SerialInput {
    height: 50px;
}

#loadingElement {
    display: none;
}

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000000000;
    background: rgba(0,0,0,0.8);
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

    .loader::before, .loader::after {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border: 5px solid #FFF;
        animation: prixClipFix 2s linear infinite;
    }

    .loader::after {
        border-color: #FF3D00;
        animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
        inset: 6px;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
    }
}
