@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --primary-color: #555555;
    --secondry-color: #1783FF;
    --white: #FFFFFF;
    --light-blue: #E7F2FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: "Poppins", sans-serif; */
    background-color: var(--white);
}

header ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.fs-20 {
    font-size: 20px;
}

.fs-18 {
    font-size: 18px;
}

.fs-14 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

.fs-16 {
    font-size: 16px;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fs-22 {
    font-size: 22px;
}

.fs-15 {
    font-size: 15px;
}

header a {
    color: var(--primary-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.active-link {
    color: var(--secondry-color);
}

header a:hover {
    color: var(--secondry-color);

}

.text-blue {
    color: var(--secondry-color);
}

.text-primery {
    color: var(--primary-color);
}

.title h1 {
    font-size: 54px;
}

.border-btn {
    background-color: transparent;
    border: 2px solid var(--secondry-color);
    color: var(--secondry-color);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.white-border-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.white-border-btn:hover {
    background-color: var(--white);
    color: var(--secondry-color);
}

.bg-btn {
    background-color: var(--secondry-color);
    border: 2px solid var(--secondry-color);
    color: var(--white);
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bg-btn:hover {
    background-color: transparent;
    color: var(--secondry-color);
}

.border-btn:hover {
    background-color: var(--secondry-color);
    color: var(--white);

}

.hero-sec-main {
    min-height: 100vh;
    padding-top: 120px;
}

.buliding-imag img {
    /* height: 510px; */
}

.buliding-imag {
    margin-left: -120px;
    right: 50px;
    bottom: 0px;
    height: 74%;
    margin-bottom: 0;
    margin-top: auto;
    position: absolute;
}

.video-sec {
    background: linear-gradient(179.44deg, #2A46D9 2.1%, #162573 99.52%);
    padding: 80px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-sec .container {
    padding: 0px !important;
    width: 100%;
    aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
    position: relative;
    max-width: 1280px; /* Optional: Limit the maximum width */
}

.video-sec .container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* or 'contain' depending on your preference */
}

@media (max-width: 768px) {
    .video-sec {
        padding: 40px 0px; /* Adjust padding for smaller screens */
    }
}

video::-internal-media-controls-overlay-cast-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-seek-back-button,
video::-webkit-media-controls-seek-forward-button,
video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper #circle-play-b svg {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 50%;
}

.title-fs {
    font-size: 36px;
    line-height: 55px;
}

.drop-shadows {
    box-shadow: 2px 4px 30px 0px #00000026;
}

.solution-inner-content {
    box-shadow: 0px 4px 10px 0px #00000026;
    background: #FFFFFF4D;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin-bottom: 32px;
}

.s-icon {
    width: 50px;
}

.s-icon1 {
    width: 60px;
}

.sol-banner {
    right: 50px;
    width: 425px;
    height:fit-content;
    bottom: 50px;
    top: 50px;
    position: absolute;
}
.most-popular-tag p{
    color: #1783FF !important;
}

.most-popular-tag {
    transform: rotate(45deg);
    position: absolute;
    right: 0w;
    width: 220px;
    right: -55px;
    top: 40px;
}
.fw-900 {
    font-weight: 900;
}

.smart-icon {
    width: 40px;
}

.check-icon {
    width: 50px;
}
.pb-22 {
    padding-bottom: 22px;
}
.pb-lg-22 {
    padding-bottom: 22px;
}
.banner-image-shadow {
    box-shadow: 0px 4px 20px 0px #00000040;
}

.banner-image-2 {
    right: 0;
    top: 214px;

}

.banner-iamge-1,
.banner-image-2 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.banner-iamge-1:hover {
    z-index: 100;
    position: relative;
    transform: scale(1.02);
}

.banner-iamge-1:hover .banner-image-2 {
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.banner-image-2:hover {
    z-index: 10;
    transform: scale(1.02);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.pb-120 {
    padding-bottom: 280px;
}


.custom-list {
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 40px;
}

.custom-list li::before {
    content: '';
    width: 25px;
    height: 25px;
    background: url('../images/liststyle.png') no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.why-choose-box {
    box-shadow: 2px 4px 20px 0px #00000026;
}

.choose-plane {
    background-color: var(--light-blue);
}

.active-plane {
    background-color: var(--secondry-color) !important;
    color: var(--white) !important;
}

.active-plane .plan-price,
.active-plane p,
.active-plane .plan-title,
.active-plane h5 {
    color: var(--white);
}

.active-plane .bg-btn {
    border: 2px solid var(--white);
}

.active-plane .bg-btn:hover {
    background-color: var(--white);
}

.toggle-btn {
    border: 2px solid var(--secondry-color);
    border-radius: 15px;
    width: fit-content;
    background-color: var(--white);
    padding: 2px;
    gap: 2px;

}

.toggle-btn .active {
    background-color: var(--secondry-color);
    color: var(--white);
    border-radius: 12px;
    border: transparent;
}

.toggle-btn button {
    border: transparent;
    background-color: transparent;
    color: var(--secondry-color);
}

.plane-box {
    background-color: var(--white);
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.plane-box:hover {
    transform: scale(1.03);
}

.toggle-content .plan-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.plan-price {
    font-size: 55px;
}


.active-plane .custom-list li::before {
    content: '';
    width: 25px;
    height: 25px;
    background: url('../images/whiteliststyle.png') no-repeat center center !important;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.Revolutionizing-main {
    /* background-image: url('../images/conrtacts.png');
    background-repeat: no-repeat;
    background-size: top bottom;
    background-position: center; */
    min-height: 748px;
    background: #1783FF;
    overflow: hidden;
}


.imageLarge img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.imageSmall img {
    aspect-ratio: 6 / 5;
    object-fit: cover;

}

.rotate-sec {
    transform: rotate(20deg);
    margin-top: -39px;
    margin-bottom: 50px;
}

.leading-para {
    line-height: 28px;
}

form input,
textarea {
    border: 2px solid var(--secondry-color) !important;
    padding: 12px 15px !important;
    resize: none;
}

/* For Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* For Internet Explorer 10+ */
input[type="number"] {
    -ms-appearance: textfield;
}

::placeholder {
    color: #AEAEAE !important;
}

.contact-sec {
    gap: 120px;
}

.inputs-group {
    gap: 25px;
}

.submitBtn {
    margin-top: 25px;
}

.info-group {
    gap: 45px;
}

.contact-info-box {
    background: #1783FF;
    box-shadow: 2px 2px 30px 0px #00000026;
    position: absolute;
    right: 0;
    bottom: 44px;
    width: 45%;
}

.form-section {
    width: 40%;
}

.contact-info-box .icon img {
    width: 25px;
}

.sign-up-sec {
    background-image: url('../images/signupbg.png'), linear-gradient(#1783FF, #1783FF);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    min-height: 500px;
}


.singUp-title {
    font-size: 45px;
    color: var(--white);
    font-weight: 600;

}

.sign-up-sec form {
    width: 35%;
}

.sign-up-sec form ::placeholder {
    color: var(--secondry-color) !important;
}

.sign-up-sec form input {
    outline: none;
}

footer {
    background-color: var(--secondry-color);
}

.footer-nav-link p {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.footer-nav-link ul {
    list-style: none;
}

.footer-nav-link ul li {
    font-weight: 500;
    font-size: 15px;
    width: fit-content;
}

.footer-nav-link ul a {
    color: var(--white);
    width: fit-content;
}

a,
a>span {
    position: relative;
    color: inherit;
    text-decoration: none;
    line-height: 24px;
}

a:before,
a:after,
a>span:before,
a>span:after {
    content: '';
    position: absolute;
    transition: transform .5s ease;
}

.hover-1:before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
}

.hover-1:hover:before {
    transform: scaleX(1);
}


.hover-2:before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--secondry-color);
    transform: scaleX(0);
}

.hover-2:hover:before {
    transform: scaleX(1);
}

.navbar {
    background: var(--white);
    transition: all .6s;
    backface-visibility: hidden;
    /* box-shadow: 0 2px 5px 1px rgba(51, 51, 51, 0.5); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.navbar-dark .navbar-nav {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    color: rgba(255, 255, 255, 0.8);
    border: 0;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link:focus {
    color: #fff;
    outline: 0;
}

.navbar-dark .navbar-toggler {
    border-color: #ffffff;
}

.navbar-dark .navbar-toggler:focus {
    background: none;
    outline: 0;
}

.navbar-dark .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: var(--secondry-color);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-dark .navbar-toggler:hover span,
.navbar-dark .navbar-toggler:focus span {
    background: var(--secondry-color);
}

/* rotate first span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-dark .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

.navbar-brand {
    width: 162px;
    /* height: 44px; */
    /* background: url(../img/logo.png) left center no-repeat; */
    border: 0;
}
#navbarNav .text-blue {
    color: var(--secondry-color) !important;
}

.navbar-dark .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: var(--secondry-color);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

/* rotate first span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-dark .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

.blog-tags .singleTag {
    background-color: #E3EFFD;
    padding: 4px 15px;
    border-radius: 15px;
    color: #1783FF;
    width: fit-content;
    min-width: 100px;
    text-align: center;
    font-size: 14px;
}
.singleBlog .blog-title {
    font-size: 20px;
    font-weight: 500;
}

.singleBlog {
    box-shadow: 2px 2px 20px 0px #00000026;
    background-color: var(--white);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 26px;

}
.singleBlog .blogBanner img {
    border-radius: 22px;
    object-fit: cover;
}
.large-banner {
    /* aspect-ratio: 16 / 13.3; */
    height: 532px;
}
.small-banner {
    /* aspect-ratio: 16 / 5; */
    height: 200px;
}
.logo {
    width: 70px;
}
.Details {
    width: 35px;
    height: 35px;
    background-color: var(--secondry-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    transition: all 0.3s ease-in-out;
}
.Details:hover svg{
    transform: scale(1.06);
}
.footer-logo {
    width:30%;
}

.footer-logo img {
    width: 140px;
}

.blog-pt {
    padding-top: 130px;
}

.blog-large-banner {
    height: 500px;
}
.blog-large-banner img {
    object-fit: cover;
}

.blog-detail-title {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 600;
}

.active-pagi {
    background-color: var(--secondry-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paginate-btn {
    width: 25px;
    height: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.paginate-btn:hover {
    background-color: var(--secondry-color);
    color: var(--white);
}


/* testimonial style   */

.testimonial-main {
    background: linear-gradient(182.18deg, #1783FF 1.84%, #FFFFFF 209.87%);

}

.testimonials{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    overflow-y: scroll;
    max-height: 800px;
    scrollbar-width: none; 
}
.testimonials::-webkit-scrollbar {
    display: none; /* Hides scrollbar */
}

.single-testimonial {
    box-shadow: 2px 2px 16px 0px #00000033;
    background-color: white;
}

.clinet-info-sec .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid gray;
}


.testimonial-para p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
            line-clamp: 5; 
    -webkit-box-orient: vertical;
}

.fs-26 {
    font-size: 26px;
}

.footer-logo {
    left: 0;
}
.singleBlog .blogBanner img {
    border-radius: 22px;
    object-fit: cover;
    object-position: top;
}
.blog-center-img {
    aspect-ratio: 12 / 7;
    object-fit: cover;
}

.blog-center-img img {
    object-fit: cover;
}
.blog-large-banner img {
    object-fit: cover;
    object-position: top;
}
.singleBlog .blog-title {
    font-size: 20px;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.clinet-info-sec .profile-img img {
    object-fit: contain;
}

@media (max-width: 766px) and (min-width: 220px) {
    .footer-logo {
        top: 10px;
    }
    .footer-nav-link {
        margin-top: 40px;
    }
    .testimonials{
        grid-template-columns: 1fr;
        gap: 20px;
        max-height: 100%;
    }
    .pb-22 , .pb-lg-22 {
        padding-bottom: 0px;
    }
    
    .logo {
        width: 55px;
    }
    .blog-pt {
        padding-top: 70px;
    }
    .blog-large-banner {
        height: 200px;
    }
    .blog-detail-title {
        font-size: 18px;
    }
    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .large-banner {
        height: 200px;
    }
    .singleBlog .blog-title {
        font-size: 16px;
    }
    .blog-tags .singleTag {
        padding: 4px 8px;
        font-size: 12px;
    }
    .rotate-sec {
        transform: rotate(20deg);
        margin-top: 80px;
        margin-bottom: 0px;
    }

    .title h1 {
        font-size: 35px;
    }

    .fs-22 {
        font-size: 18px;
    }

    .buliding-imag {
        margin-left: 0px;
        margin-top: 20px;
        position: unset;
    }

    .hero-sec-main {
        padding-top: 90px;
        min-height: unset;
    }

    .video-sec .container {
        height: auto;
    }

    .video-sec {
        padding: 25px 0px;
    }

    .play-button-wrapper #circle-play-b svg {
        width: 50px;
        height: 50px;
    }

    .title-fs {
        font-size: 28px;
        line-height: 40px;
    }

    .sol-banner {
        position: unset;
    }

    .fs-18 {
        font-size: 16px;
    }

    .singleContent p {
        text-align: center;
    }

    .singleContent {
        margin-bottom: 20px;
    }

    .banner-image-2 {
        top: 125px;
    }

    .pb-120 {
        padding-bottom: 140px;
    }

    .custom-list li::before {
        width: 20px;
        height: 20px;
    }


    .custom-list li {
        padding-left: 30px;
    }

    .why-choose-box .fs-18 {
        font-size: 15px;
    }

    .toggle-content .plan-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .active-plane .custom-list li::before {
        width: 20px;
        height: 20px;
        border-radius: 100%;
    }

    .form-section {
        width: 100%;
    }

    .contact-info-box {
        position: unset;
        width: 100%;
    }

    .contact-sec {
        gap: 70px;
    }

    .info-group {
        gap: 25px;
    }

    .contact-info-box .icon img {
        width: 20px;
    }

    .singUp-title {
        font-size: 35px;
    }

    .sign-up-sec form {
        width: 100%;
    }

    .sign-up-sec {
        min-height: auto;
    }

    .footer-nav-link {
        gap: 20px;
    }

}

@media (max-width: 1023px) and (min-width: 767px) {
    .footer-logo {
        top: 20px;
        left: unset;
        margin: auto;
    }
    .footer-nav-link {
        margin-top: 90px;
    }
    .testimonials{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .pb-lg-22 {
        padding-bottom: 0px;
    }
    .logo {
        width: 55px;
    }
    .blog-pt {
        padding-top: 85px;
    }
    .blog-large-banner {
        height: 330px;
    }
    .blog-detail-title {
        font-size: 30px;
    }
    .small-banner {
        height: 150px;
    }
    .rotate-sec {
        margin-top: 170px;
        margin-bottom: 39px;
    }
    .large-banner {
        height: 480px;
    }
    .footer-logo {
        width: 18%;
    }
    .buliding-imag {
        margin-left: -120px;
        right: 12px;
        bottom: 0px;
        height: 68%;
        position: absolute;
    }

    .hero-sec-main {
        min-height: unset;
        padding-top: 110px;
    }

    .buliding-imag {
        position: unset;
        margin-left: 0;
    }

    .title h1 {
        font-size: 40px;
    }

    .video-sec .container {
        height: unset;
    }

    .video-sec {
        padding: 45px 0px;
    }

    .sol-banner {
        right: 19px;
        width: 315px;
        height: fit-content;
        bottom: 50px;
        top: 24px;
        position: absolute;
    }

    .singleContent .fs-18 {
        font-size: 14px;
    }

    .singleContent .fs-15 {
        font-size: 14px;
    }

    .smart-icon {
        width: 34px;
    }

    .check-icon {
        width: 38px;
    }

    .s-icon {
        width: 44px;
    }

    .fs-18 {
        font-size: 16px;
    }

    .title-fs {
        font-size: 30px;
        line-height: 38px;
    }

    .pb-120 {
        padding-bottom: 50px;
    }

    .why-choose-box img {
        height: 100% !important;
        object-fit: cover;
    }

    .toggle-content .plan-group {
        grid-template-columns: 1fr 1fr;
    }

    .form-section {
        width: 48%;
    }

    .contact-info-box {
        right: 0;
        bottom: 44px;
        width: 48%;
    }

    .info-group {
        gap: 30px;
    }

    .sign-up-sec form {
        width: 70%;
    }

    .singUp-title {
        font-size: 38px;
    }




}

@media (max-width: 1280px) and (min-width: 1024px) {
    .footer-nav-link ul li {
        font-weight: 500;
        font-size: 12px;
        width: fit-content;
    }
    .business-solution {
        font-size: 20px;
    }
    .pb-lg-22 {
        padding-bottom: 0px;
    }
    .rotate-sec {
        margin-bottom: 0px;
    }

    .buliding-imag {
        position: unset;
        margin-left: 0;
    }

    .hero-sec-main {
        min-height: auto;
    }

    .video-sec .container {
        height: auto;
    }

    .sol-banner img {
        object-fit: cover;
    }

    .singleContent .fs-18 {
        font-size: 16px;
    }

    .title-fs {
        font-size: 36px;
        line-height: 50px;
    }

    .why-choose-box img {
        height: 100% !important;
        object-fit: cover;
    }

    .toggle-content .plan-group {
        gap: 16px;
    }

    .form-section {
        width: 45%;
    }

    .contact-info-box {
        width: 48%;
    }

    .pb-120 {
        padding-bottom: 170px;
    }

}

@media (max-width: 1490px) and (min-width: 1281px) {
    .business-solution {
        font-size: 20px;
    }
    .rotate-sec {
        margin-bottom: 36px;
    }
}