/* blog */
h1 {
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
}

h2 {
    font-size: 36px;
    font-weight: 400;
}

h3 {
    font-size: 30px;
    font-weight: 400;
}

p {
    color: var(--third-white);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.custom-container2 {
    width: 80%;
    margin: auto;
}

.blogpage .custom-container2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-inner-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1000px;
}

.blog-inner-content p {
    color: var(--third-white);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.blog-flex {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 4rem 0;
}

.blogpage-flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 0;
}

.logo-design .blogpage-flex {
    gap: 0;
    padding: 5rem 0 0 0;
}

.blogpage-flex .custom-container2 {
    gap: 1rem;
}

.blog-content-container .custom-container2 {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1370px;
}

.header-content span {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
}

.blog-inner-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    width: 90%;
}

.blog-inner-flex div {
    width: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-inner-flex div img {
    width: 100%;
}

.blog-footer-content {
    padding: 8rem 0;
    background-color: var(--bg-dark-grey);
}

.blog-footer-content .custom-container2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo-design-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo-design-page {
    padding: 6rem 0;
}

.logo-bg-color {
    background-color: var(--bg-dark-grey);
}

.logo-design-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6rem;
}

.logo-design-section {
    width: calc(50% - 3rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-design-section img {
    max-width: 600px;
}

.logo-design-section p {
    max-width: 600px;
}

.logo-design-page .logo-container-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-design .blog-inner--banner {
    padding-top: 4rem;
    line-height: 0;
}

/*Blog*/

.blog-positions-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem;
}

.blog-positions-sec {
    width: calc(33.33% - 2rem);
    box-sizing: border-box;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: space-between;
}

.blog--text-c {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.blog-image-container {
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.blog-image:hover {
    transform: scale(1.5);
}


.blog-arrow {
    display: flex;
    margin-top: 1.5rem;
    position: relative;
    width: max-content;
}

img.arrow-b {
    width: 5rem;
    height: 4rem;
    transition: all 0.5s cubic-bezier(.075, .82, .165, 1);
    margin-right: 1.5rem;
}

.blog-arrow:hover img.arrow-b {
    width: 6rem;
}

.blog-arrow p {
    color: red;
    font-size: 20px !important;
    font-weight: 500;
    padding-top: 1rem;
    text-decoration: none;
}

.blog--link {
    text-decoration: none;
}

.blog-link {
    text-decoration: none;
}

.example {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}



.myBlog {
    width: 80%;
    margin: 6rem auto;
    position: relative !important;
}

.blog-swiper--container {
    position: relative;
}

img.arrow-bb {
    width: 5rem;
    height: 4rem;
    transition: all 0.5s cubic-bezier(.075, .82, .165, 1);
    margin-right: 1.5rem;
    transform: rotate(180deg);
}

.blog-arrow:hover img.arrow-bb {
    width: 6rem;
}

.blog-inner--banner img {
    width: 100%;
}


.g-recaptcha {
    margin-top: 28px;
}

.video-section video {
    cursor: pointer;
}

.video-section img {
    cursor: pointer;
}

/* CODE */

@media(max-width:1280px) {

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 34px;

    }

    .blogpage {
        padding-bottom: 4rem;
    }

    .blog-footer-content {
        padding: 4rem 0;
    }

    .blog-inner-flex {
        width: 100%;
    }
}

@media(max-width:768px) {

    h3 {
        font-size: 25px;
    }

    .blog-inner-flex {
        flex-direction: column;
    }

    .blog-inner-flex div {
        width: 100%;
    }

    .logo-design-section {
        width: 100%;
    }

    .logo-design-page {
        padding: 4rem 0
    }

    .logo-design-flex {
        gap: 3rem;
    }

}

@media(max-width:567px) {

    h2 {
        font-size: 24px;
    }

    .blog-flex {
        gap: 2rem;
    }

    .blog-content-container .custom-container {
        gap: 2rem;
    }

}