:root {
    --primary-color: #ed1c24;
    --title-font: "Unbounded", sans-serif;
}

* {
    font-family: Poppins, sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
    scroll-margin-top: 90px;
}

body {
    font-size: 16px;
}

a,
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.fas, fa {
    font-weight: lighter;
}

.wow {
    visibility: hidden;
}

h1, h2, h3, h4, h5, h6, .title-font {
    font-family: var(--title-font);
}

body {
    padding-top: 112px;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 26px 36px;
    transition: 300ms;
    z-index: 99;
}

.main-header.fixed-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 15px 36px;
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .logo {
    width: 86px;
}

.main-header .logo img {
    user-select: none;
}

.main-header .menu {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.main-header .menu > ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    gap: 5px;
}

.main-header .menu > ul > li {
    overflow: hidden;
}

.main-header .menu > ul > li > a {
    font-family: var(--title-font);
    text-transform: uppercase;
    padding: 0 20px;
    transition: 300ms;
    color: #000;
    display: block;
    position: relative;
    font-weight: 500;
    line-height: 1;
    font-size: 14px;
}

.main-header .menu > ul > li > a:After {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    transform: translateY(20px);
}

.main-header .menu > ul > li > a:Hover {
    transform: translateY(-20px);
    color: var(--primary-color);
}

.main-header .menu-toggle-btn {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    background: transparent;
    transition: 300ms;
    font-size: 23px;
    color: #000;
}

.main-header .menu-toggle-btn:Hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 30px #ff5d5d;
}

.main-hero {
    position: relative;
    padding: 85px 0 80px;
}

.main-hero .hero-content h1 {
    font-size: 100px;
    font-weight: 600;
    letter-spacing: -3.6px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 125px;
}

.main-hero .hero-content h1 span:first-child {
    font-family: inherit;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: 1200ms;
}

.main-hero .hero-content h1.wowed span:first-child {
    width: 100%;
}


.main-hero .hero-content h1 span:last-child {
    font-family: inherit;
    width: 100%;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    transition: 1200ms;
    position: absolute;
    right: 0;
    top: 120px;
    width: 0;
}

.main-hero .hero-content h1.wowed span:last-child {
    width: 100%;
}


.main-hero .hero-content .hero-body {
    padding-left: 50%;
}

.main-hero .hero-content .hero-body .hero-description {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}

.main-hero .hero-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-hero .hero-footer img {
    width: 40px;
}

.main-hero .hero-footer p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: var(--title-font);
    line-height: 1.5;
    max-width: 20ch;
}

.main-hero .hero-content .hero-body {
    position: relative;
}

.main-hero .hero-content .hero-body:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background: #fff;
    transform: translateX(100%);
    transition: 900ms;
    z-index: 99;
}

.main-hero .hero-content .hero-body.wowed:before{
    transform: translateX(0);
}

.main-hero .hero-footer {
    position: relative;
    transition: 900ms;
    margin-left: -50px;
    overflow: hidden;
}

.main-hero .hero-footer:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffff;
    z-index: 9;
    transition: 900ms;
}


.main-hero .hero-footer.wowed{
    margin-left: 0;
}

.main-hero .hero-footer.wowed:before{
    transform: translateX(100%);
}


.cta-button {
    padding: 10px 30px;
    display: inline-block;
    background: #0a0c00;
    font-size: 14px;
    font-weight: 600;
    padding: 21.5px 40px;
    text-transform: uppercase;
    color: #fff;
    transition: 300ms;
    font-family: var(--title-font);
    line-height: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    left: 0%;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: 600ms;
    z-index: -1;
}

.cta-button:Hover {
    color: #fff;
}

.cta-button:hover:before {
    width: 100%;
}

.main-about {
    position: relative;
    background: var(--primary-color);
    color: #fff;
    padding: 140px 0 120px;
    margin-top: 100px;
}

.main-about .section-image {
    position: absolute;
    left: 0;
    top: -117px;
    width: 0;
    height: 100%;
    transition: 900ms;
}

.main-about .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-about .section-content {
    padding-left: 50%;
}

.main-about .section-content h2 {
    font-size: 45px;
    margin-bottom: 30px;
}

.main-about .section-content p {
    font-size: 18px;
    margin-bottom: 35px;
}

.liner-btn {
    display: inline-flex;
    transition: 300ms;
    font-family: var(--title-font);
    color: #fff;
    transition: 300ms;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 10px;
    align-items: center;
}

.liner-btn > i {
    font-weight: 500;
    margin-left: 5px;
    font-size: 16px;
    transition: 300ms;
}

.liner-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    left: 0;
    background: #fff;
    transition: 600ms;
}

.liner-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 10%;
    background: #fff;
    left: -5px;
    transform: translateX(-100%);
    transition: 800ms;
}

.liner-btn:Hover {
    color: #fff;
}

.liner-btn:Hover:before {
    transform: translateX(100%);
}

.liner-btn:Hover:after {
    transform: translateX(0);
    width: 100%;
}

.liner-btn.dark {
    color: #000;
}

.liner-btn.dark:before,
.liner-btn.dark:after {
    background: #000;
}

.main-services {
    position: relative;
    padding: 120px 0;
}

.main-services .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-services .section-header h3 {
    font-size: 45px;
    margin: 0;
}

.main-services .section-header h3 span {
    font-family: inherit;
    display: block;
}

.accordion > .card {
    border-radius: 0;
    border: 0;
    background: transparent;
    border-block: 2px solid #000;
    margin-bottom: -1px;
}

.accordion > .card > .card-header {
    background: transparent;
    padding: 0;
    border: 0;
}

.accordion > .card > .card-header .accordion-toggle-btn {
    width: 100%;
    text-align: left;
    white-space: nowrap;
    background: transparent;
    border: 0;
    font-family: var(--title-font);
    font-weight: 500;
    line-height: 1;
    transition: 300ms;
    padding: 30px 50px 30px 30px;
    position: relative;
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

.accordion > .card > .card-header .accordion-toggle-btn:After {
    content: '\f067';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
}

.accordion > .card > .card-header .accordion-toggle-btn:not(.collapsed):after {
    content: '\f068';
}

.accordion > .card .card-body {
    padding: 0 30px 30px 30px;
    font-size: 18px;
}

.main-services .section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.main-services .section-content > div {
    width: calc(50% - 15px);
}

.main-services .section-content .accordion-toggle-btn .number {
    margin-right: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transform: translateY(-4px);
}

.main-posts {
    margin: 120px 0;
}

.main-posts .posts-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main-posts .posts-content > .header {
    width: 40%;
    position: sticky;
    top: 120px;
}

.main-posts .posts-content > .header h3 {
    font-size: 45px;
    font-weight: 600;
}

.main-posts .posts-content > .posts {
    width: 60%;
    position: relative;
}

.main-posts .posts-content .post {
    display: flex;
    background: #f6f5f3;
    margin-bottom: 30px;
    justify-content: space-between;
    position: sticky;
    top: 120px;
}

.main-posts .posts-content .post > div {
    width: 50%;
}

.main-posts .posts-content .post > div img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.main-posts .posts-content .post > .content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.main-posts .posts-content .post > .content .date {
    font-size: 18px;
}

.main-posts .posts-content .post > .content .title {
    font-family: var(--title-font);
    font-size: 24px;
    color: #000;
    font-weight: 600;
    transition: 300ms;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-posts .posts-content .post:last-child {
    margin: 0;
}

.main-footer {
    background: #f6f5f3;
}

.main-footer .footer-content-container {
    padding: 140px 0;
    display: flex;
    justify-content: space-between;
}

.main-footer .footer-content-container > .title {
    font-size: 50px;
    font-family: var(--title-font);
    font-weight: 600;
    max-width: 14ch;
}

.main-footer .footer-content-container > .footer-action .description {
    font-size: 18px;
    margin-bottom: 30px;
}

.main-footer .footer-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 21px 0;
    margin: 0;
    border-block: 2px solid #0a0c00;
}

.main-footer .footer-menu:nth-child(3) ul {
    justify-content: flex-end;
    gap: 20px;
}

.main-footer .footer-menu ul:first-child {
    margin-bottom: -2px;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.main-footer .footer-menu ul li a {
    display: block;
    font-size: 10px;
    font-weight: 600;
    font-family: var(--title-font);
    color: #000;
    text-transform: uppercase;
    transition: 300ms;
    white-space: nowrap;
}

.main-footer .footer-menu ul li a:Hover {
    color: var(--primary-color);
}

.main-footer .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
}

.main-footer .footer-copyright .socials {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
    gap: 20px;
}

.main-footer .footer-copyright .socials a {
    font-size: 18px;
    color: #000;
    display: block;
    transition: 300ms;
}

.main-footer .footer-copyright .socials a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.main-footer .footer-copyright > div {
    display: flex;
    align-items: center;
    gap: 50px;
}

.main-footer .footer-copyright > div p {
    margin: 0;
    font-size: 14px;
}

.main-footer .footer-copyright > div a {
    color: #000;
    transition: 300ms;
    opacity: .5;
    transition: 300ms;
}

.main-footer .footer-copyright > div .links {
    display: flex;
    gap: 20px;
}

.main-footer .footer-copyright > div a:Hover {
    opacity: 1;
}

.page-top-header {
    display: flex;
    width: 100%;
    height: 320px;
    background-image: url('../images/breadcrumb.webp');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center center;
}

.page-top-header:Before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    opacity: .5;
}

.page-top-header h1 {
    color: #fff;
    font-size: 70px;
}

.breadcrumb-wrapper {
    background: #f4f4f4;
    margin-bottom: 60px;
    padding: 30px 0;
}

.breadcrumb-wrapper ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.breadcrumb-wrapper ul a {
    display: block;
    color: #000;
    transition: 300ms;
    font-weight: 500;
}

.breadcrumb-wrapper ul a:hover {
    color: var(--primary-color);
}

.breadcrumb-wrapper ul a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin: 0 10px;
    color: #000;
}

.posts-page-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}

.posts-page-container .posts-container {
    width: calc(100% - 300px);
    padding-right: 50px;
}

.posts-page-container > .posts-page-sidebar {
    width: 300px;
    position: sticky;
    top: 120px;
}

.posts-page-container > .posts-page-sidebar .search-card form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background: #f4f4f4;
    padding: 5px 10px;
    margin-bottom: 30px;
}

.posts-page-container > .posts-page-sidebar .search-card form input {
    width: calc(100% - 40px);
    background: transparent;
    border: 0;
}

.posts-page-container > .posts-page-sidebar > .popular-posts-card h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.posts-page-container > .posts-page-sidebar > .popular-posts-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.posts-page-container > .posts-page-sidebar > .popular-posts-card ul li {
    margin-bottom: 30px;
}

.posts-page-container > .posts-page-sidebar > .popular-posts-card ul a {
    display: block;
    color: #000;
    transition: 300ms;
}

.posts-page-container > .posts-page-sidebar > .popular-posts-card ul a .title {
    font-family: var(--title-font);
    display: block;
    margin-bottom: 5px;
    transition: 300ms;
}

.posts-page-container > .posts-page-sidebar > .popular-posts-card ul a .title:Hover {
    color: var(--primary-color);
}

.posts-page-container > .posts-page-sidebar > .popular-posts-card ul a .date {
    font-size: 14px;
    display: block;
}

.posts-page-container > .posts-page-sidebar .search-card form button {
    width: 40px;
    aspect-ratio: 1;
    transition: 300ms;
    border: 0;
    background: transparent;
}

.posts-page-container > .posts-container .post {
    width: 100%;
    display: flex;
    margin-bottom: 60px;
}

.posts-page-container > .posts-container .post .image {
    width: 300px;
    overflow: hidden;
}

.posts-page-container > .posts-container .post .image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: 300ms;
}

.posts-page-container > .posts-container .post .content {
    width: calc(100% - 300px);
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.posts-page-container > .posts-container .post .content .date {
    font-size: 18px;
    margin-bottom: 5px;
    color: #7a7a7a;
}

.posts-page-container > .posts-container .post .content .title {
    font-size: 24px;
    font-family: var(--title-font);
    color: #000;
    transition: 300ms;
    font-weight: 600;
}

.posts-page-container > .posts-container .post:Hover .image img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.posts-page-container > .posts-container .post .title:Hover {
    color: var(--primary-color);
}

.pagination {
    gap: 10px;
    margin: 30px 0;
}

.pagination .page-link {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    aspect-ratio: 1;
    transition: 300ms;
    border-radius: 100% !important;
    font-family: var(--title-font);
    color: #000;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
}

.pagination .page-item.disabled .page-link {
    opacity: .5;
}

.page-link:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.post-details {
    width: 100%;
}

.post-details .cover {
    margin-bottom: 30px;
}

.post-details .post-header {
    margin-bottom: 40px;
}

.post-details .post-header .date {
    font-size: 18px;
    margin-top: 15px;
}

.contacts-page .contacts-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contacts-page .contacts-card > .contact-item {
    position: relative;
    display: flex;
    background: #f6f5f3;
    flex: 1;
    height: 300px;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.contacts-page .contacts-card > .contact-item:nth-child(2) {
    height: 320px;
}

.contacts-page .contacts-card > .contact-item .icon i {
    font-size: 35px;
    font-weight: normal;
}

.contacts-page .contacts-card > .contact-item .title {
    display: block;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contacts-page .contacts-card > .contact-item .value {
    margin-bottom: 20px;
    display: block;
}

.contacts-page .contacts-card > .contact-item .action {
    font-weight: 600;
}

.contact-actions {
    position: relative;
    margin-top: 200px;
    background: var(--primary-color);
    padding: 120px 0;
}

.contact-actions .map {
    position: absolute;
    left: 0;
    top: -110px;
    width: 0;
    height: 100%;
    transition: 900ms;
}

.contact-actions .map iframe {
    width: 100%;
    height: 100%;
}

.contact-actions .form {
    padding-left: calc(50% + 30px);
}

.contact-actions .form h2 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 30px;
}

.contact-actions .form input,
.contact-actions .form textarea {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 20px;
}

.contact-actions .form input::placeholder,
.contact-actions .form textarea::placeholder {
    color: #fff;
    opacity: .8;
}

.contact-actions .form button {
    margin-top: 40px;
    margin-bottom: 0;
}

.clients-container {
    margin: 120px auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 880px;
}

.clients-container .client {
    width: 25%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    transition: 300ms;
    margin-top: -2px;
    margin-left: -2px;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.clients-container .client img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 600ms;
    position: absolute;
    left: 0;
    top: 0;
    padding: 30px;
}

.clients-container .client img:nth-child(2) {
    transform: translateY(100%);
}

.clients-container .client:Hover img:nth-child(1) {
    transform: translateY(-100%);
}

.clients-container .client:Hover img:nth-child(2) {
    transform: translateY(0);
}

.posts-page:not(:has(.posts-page-sidebar)) .posts-page-container .posts-container {
    width: 100%;
    padding-right: 0;
}

.post-gallery {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.post-gallery > div {
    width: calc(33.3% - 10px);
    margin: 5px;
    overflow: hidden;
}

.post-gallery > div img {
    transition: 300ms;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.post-gallery > div:Hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.menu-wrapper {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    width: 560px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(2px);
    padding: 120px 80px 80px;
    overflow: auto;
    color: #fff;
    transition: 800ms;
    transform: translateX(100%);
    opacity: 0;
}

.menu-wrapper .phone a{
    color: #fff;
}

.menu-wrapper .menu-close-btn {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    background: transparent;
    transition: 300ms;
    font-size: 23px;
    color: #fff;
    position: absolute;
    right: 30px;
    top: 30px;
}

.menu-wrapper .menu-close-btn:Hover {
    background: #fff;
    color: #000;
}

.menu-wrapper .logo {
    margin-top: 60px;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}

.menu-wrapper .logo img {
    width: 140px;
    margin-bottom: 30px;
}

.menu-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: none;
    margin-top: 130px;
}

.menu-wrapper ul a {
    font-size: 25px;
    display: block;
    color: #fff;
    font-family: var(--title-font);
    padding: 15px 0;
    margin-bottom: -2px;
}

.open-menu .menu-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.liner-btn .arrow-icon {
    display: inline-block;
    width: 13px;
    height: 15px;
    background-image: url('http://rogo.tr/images/icons/arrow-right.svg');
    background-size: contain;
    margin-left: 8px;
    position: relative;
    background-repeat: no-repeat;
}

.liner-btn:has(.arrow-icon) {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.liner-btn:not(.dark) .arrow-icon {
    filter: brightness(0) invert(1);
}

.works-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.works-container .work {
    width: calc(45% - 30px);
    margin: 15px;
}

.works-container .work .cover {
    overflow: hidden;
}

.works-container .work .cover img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: 300ms;
}

.works-container .work .category {
    margin-top: 20px;
    display: block;
    font-size: 18px;
    color: #000;
}

.works-container .work .title a {
    font-size: 36px;
    font-family: var(--title-font);
    color: #000;
    transition: 300ms;
    font-weight: 600;
    display: block;
}

.works-container .work .title:Hover a {
    color: var(--primary-color);
}

.works-container .work:hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.post-table-of-contents {
    border: 1px solid #eee;
    display: inline-block;
    padding: 15px;
    margin-bottom: 30px;
    max-height: 10000vh;
    overflow: hidden;
}

.post-table-of-contents.closed {
    max-height: 90px;
}

.post-table-of-contents .toc-header {
    padding: 15px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.post-table-of-contents .toc-header p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.post-table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-table-of-contents ul a {
    display: block;
    color: #000;
    font-weight: 500;
    padding: 10px 10px;
    transition: 300ms;
}

.post-table-of-contents ul li:last-child a {
    padding-bottom: 0;
}

.post-table-of-contents ul a:hover {
    color: var(--primary-color);
}

.post-table-of-contents .toggle {
    position: relative;
    cursor: pointer;
    display: flex;
    background: #e1e1e1;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: #585858;
    transition: 300ms;
}

.post-table-of-contents .toggle:after {
    content: '\f0c9';
    font-family: 'Font Awesome 5 Pro';
}

.post-table-of-contents .toggle:Hover {
    background: var(--primary-color);
    color: #fff;
}

.post-table-of-contents:not(.closed) .toggle:after {
    content: '\f00d';
}

#returnTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 300ms;
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    background: transparent;
    border-radius: 100%;
    z-index: 99;
    font-weight: bolder;
    font-size: 22px;
    transform: translateX(30px);
    opacity: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

#returnTop:hover {
    background: var(--primary-color);
    border-color: transparent;
    color: #fff;
}

body:has(.fixed-bar) #returnTop {
    opacity: 1;
    transform: translateX(0);
}

.policy-warning {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

.policy-warning .warning-container {
    padding: 30px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.policy-warning .warning-container .hide-policy-btn {
    margin-top: 30px;
}

.fa-twitter:before {
    content: "𝕏";
    font-size: 1.2em;
}

.menu-wrapper .socials {
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 20px;
    margin-top: 30px;
}

.menu-wrapper .socials a {
    color: #fff;
    transition: 300ms;
}

.menu-wrapper .socials a:Hover {
    color: var(--primary-color);
}

.about-page {
    position: relative;
    margin-top: 200px;
}

.about-page .about-text-content {
    position: relative;
}

.about-page .about-image {
    position: absolute;
    right: 0;
    top: -100px;
    width: 0;
    height: calc(100% + 100px);
    z-index: 999;
    transition: 900ms;
}

.about-page .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .about-text {
    padding-right: calc(40% + 30px);
}

.about-page .about-text h1 {
    font-size: 60px;
    margin-bottom: 40px;
}

.rogo-bar {
    height: 110px;
    width: 100%;
    background-image: url(images/rogo-bar.png);
    background-repeat: repeat-x;
    background-size: auto 100%;
    animation: scroll 15s linear infinite;
}

.main-about.wowed .section-image {
    width: calc(50% - 50px);
}

.about-page.wowed .about-image {
    width: 40%;
}

.contact-actions.wowed .map {
    width: 40%;
}

a.google-partner-badge {
    transition: 300ms;
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 99;
    width: 100px;
    opacity: .5;
}

a.google-partner-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

a.meta-partner-badge {
    transition: 300ms;
    position: fixed;
    left: 20px;
    bottom: 130px;
    z-index: 99;
    opacity: .5;
    overflow: hidden;
    overflow: hidden;
    width: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

a.meta-partner-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

a.meta-partner-badge img{
    width: 100%;
}

@keyframes scroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@media (max-width: 1400px) {
    .main-hero .hero-content h1 {
        font-size: 80px;
    }

    .main-footer .footer-content-container > .title {
        font-size: 40px;
    }

    .main-posts .posts-content .post > .content .title {
        font-size: 20px;
    }
}

@media (max-width: 996px) {
    .main-footer .footer-menu ul li a{
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 9px;
    }
    
    .main-hero .hero-content .hero-body:before{
        content: none;
    }
    
    .main-hero .hero-content h1 {
        font-size: 27px;
        text-align: left;
        justify-content: start;
        letter-spacing: 0;
        padding-bottom: 50px;
    }
    
    .main-about.wowed .section-image{
        width: 100%;
    }
    
    .about-page.wowed .about-image{
        width: 100%;
    }
    
    .contact-actions.wowed .map{
        width: 100%;
    }
    
    .main-hero .hero-content h1 span:last-child{
        top: 50px;
    }

    .main-hero .hero-content h1 span {
        text-align: left;
    }

    .main-hero .hero-content .hero-body .hero-description {
        text-align: left;
    }


    .main-header .menu > ul {
        display: none;
    }

    .main-header .menu-toggle-btn {
        font-size: 14px;
        width: 40px;
        height: 40px;
    }

    .main-hero .hero-content .hero-body {
        padding-left: 0;
        text-align: left;
    }

    .main-hero .hero-footer {
        margin-top: 30px;
    }

    .main-hero {
        width: 100%;
        padding: 0 0 50px 0;
    }

    .main-hero > .container .hero-content {
        flex-direction: column;
        padding: 20px 0 40px;
    }

    .main-about {
        margin: 30px 0;
        padding: 0;
    }

    .main-about .section-image {
        position: static;
        width: 100%;
        height: 33vh;
    }

    .main-about .section-content {
        padding: 30px 0;
    }

    .main-about .section-content h2 {
        font-size: 30px;
    }

    .main-about .section-content p {
        font-size: 16px;
    }

    .main-services {
        padding: 30px 0;
    }

    .main-services .section-header h3 {
        font-size: 25px;
    }

    .main-services .section-content > div {
        width: 100%;
        margin-bottom: -1px;
    }

    .main-services .section-content {
        flex-direction: column;
    }

    .accordion > .card > .card-header .accordion-toggle-btn {
        font-size: 18px;
        padding: 20px 50px 20px 20px;
    }

    .main-services .section-content .accordion-toggle-btn .number {
        margin-right: 10px;
        transform: translateY(-2px);
    }

    .main-posts .posts-content {
        flex-direction: column;
    }

    .main-posts {
        margin: 30px 0;
    }

    .main-posts .posts-content > .header h3 {
        font-size: 35px;
        margin-bottom: 30px;
    }

    .main-posts .posts-content > .header {
        width: 100%;
        position: static;
    }

    .main-posts .posts-content > .posts {
        width: 100%;
    }

    .main-posts .posts-content .post > .content .title {
        font-size: 16px;
    }

    .main-posts .posts-content .post > div img {
        aspect-ratio: unset;
        height: 100%;
    }

    .main-footer .footer-content-container {
        padding: 40px 0;
        flex-direction: column;
    }

    .main-footer .footer-content-container > .title {
        font-size: 25px;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
    }

    .main-footer .footer-menu ul {
        gap: 10px;
        justify-content: space-between;
    }

    .main-footer .footer-menu ul li {
        width: calc(50% - 10px);
    }

    .main-footer .footer-copyright {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .main-footer .footer-copyright > div .links {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .main-footer .footer-copyright > div {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        gap: 20px;
        text-align: left;
        margin-top: 5px;
    }

    .menu-wrapper {
        width: 100%;
        padding: 30px;
    }

    .menu-wrapper ul {
        display: block;
    }

    body {
        padding-top: 95px;
    }

    .breadcrumb-wrapper {
        padding: 10px 0;
        margin-bottom: 30px;
    }

    .page-top-header {
        height: 200px;
    }

    .page-top-header h1 {
        font-size: 25px;
    }


    .works-container .work .content .title {
        font-size: 20px;
        color: #fff;
        -webkit-text-fill-color: #fff;
        font-weight: 500;
        -webkit-text-stroke-width: 0;
    }

    .works-container .work .content {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 15px;
    }

    .clients-container .client {
        width: 50%;
    }

    .clients-container {
        margin: 30px 0;
    }

    .posts-page-container .posts-container {
        width: 100%;
        padding: 0;
    }

    .posts-page-container {
        flex-direction: column;
        margin-bottom: 30px;
        gap: 30px;
    }

    .posts-page-container > .posts-page-sidebar {
        width: 100%;
        position: static;
        padding-top: 30px;
        border-top: 2px solid #ddd;
    }

    .posts-page-container > .posts-container .post {
        flex-direction: column;
    }

    .posts-page-container > .posts-container .post .image {
        width: 100%;
        margin-bottom: 20px;
    }

    .posts-page-container > .posts-container .post .content {
        width: 100%;
        padding: 15px 0 0 0;
    }

    .contacts-page .contacts-card {
        flex-direction: column;
    }

    .contacts-page .contacts-card > .contact-item {
        width: 100%;
        height: unset;
    }

    .contacts-page .contacts-card > .contact-item .icon {
        margin-bottom: 30px;
    }

    .contact-actions .map {
        position: static;
        width: 100%;
        height: 50vh;
        padding: 0 30px;
    }

    .contact-actions .map iframe {
        margin-top: -50px;
    }

    .contact-actions {
        padding: 0;
        margin-top: 100px;
    }

    .contact-actions .form {
        padding-left: 0;
        padding-bottom: 30px;
    }

    .contact-actions .form h2 {
        font-size: 35px;
    }

    .main-posts .posts-content .post > .content .date {
        font-size: 14px;
    }

    .menu-wrapper {
        width: 100%;
        padding: 30px;
        background-color: rgba(0, 0, 0, .7);
        display: flex;
        flex-direction: column;
    }

    .menu-wrapper:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: calc(100% - 130px);
        height: 100%;
        background: #fff;
        z-index: -1;
    }

    .menu-wrapper ul {
        margin-top: 30px;
        order: 2;
    }

    .menu-wrapper ul a {
        color: #000;
        text-align: left;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 20px;
    }

    .menu-wrapper .menu-close-btn {
        right: unset;
        left: calc(100% - 200px);
        width: 50px;
        height: 50px;
        border-color: #000;
        color: #000;
        font-size: 14px;
        font-weight: bolder;
    }

    .menu-wrapper .logo {
        display: block;
        padding: 0;
        margin: 0;
        border: 0;
        padding-top: 8px;
        order: 1;

    }

    .menu-wrapper .logo p {
        display: none;
    }

    .menu-wrapper .logo img {
        width: 90px;
        margin: 0;
    }

    .menu-wrapper .menu-contacts {
        color: #000;
        font-size: 14px;
        max-width: calc(100% - 130px);
        order: 3;
        margin-top: 20px;
        padding-top: 40px;
        border-top: 2px solid #000;
    }

    .menu-wrapper .menu-contacts p {
        font-family: var(--title-font);
        font-size: 12px;
        color: #000;
    }

    .menu-wrapper {
        transform: translateX(0);
        visibility: hidden;
    }

    .open-menu .menu-wrapper {
        visibility: visible;
    }

    .menu-wrapper:before {
        transition: 600ms;
        transform: translateX(-100%);
        opacity: 0;
    }

    .open-menu .menu-wrapper:before {
        opacity: 1;
        transform: translateX(0);
    }

    .menu-wrapper ul li {
        transition: 300ms;
        transform: translateX(-40px);
        opacity: 0;
    }

    .menu-wrapper ul li:nth-child(1) {
        transition-delay: 300ms;
    }

    .menu-wrapper ul li:nth-child(2) {
        transition-delay: 400ms;
    }

    .menu-wrapper ul li:nth-child(3) {
        transition-delay: 500ms;
    }

    .menu-wrapper ul li:nth-child(4) {
        transition-delay: 600ms;
    }

    .menu-wrapper ul li:nth-child(5) {
        transition-delay: 700ms;
    }

    .open-menu .menu-wrapper ul li {
        transform: translateX(0);
        opacity: 1;
    }

    .menu-wrapper .menu-contacts {
        transform: translateY(-20px);
        transition: 600ms;
        transition-delay: 800ms;
        opacity: 0;
    }

    .open-menu .menu-wrapper .menu-contacts {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-wrapper .socials a {
        color: #000;
    }

    .about-page {
        margin-top: 30px;
    }

    .about-page .about-text {
        padding-right: 0;
    }

    .about-page .about-text h1 {
        font-size: 35px;
    }

    .about-page .about-image {
        position: static;
        width: 100%;
        height: 33vh;
    }
    
    .menu-wrapper .phone a{
        color: #000;
    }
    
    .main-footer {
        padding-bottom: 130px;
    }
    
    a.google-partner-badge{
        left: 40px;
        width: 80px;
        transform: scale(1.5);
        opacity: 1;
    }
    
    body:has(.main-header.fixed-bar) a.google-partner-badge {
        transform: scale(1);
        left: 15px;
        opacity: .5;
    }
    
    a.meta-partner-badge{
        left: 43px;
        width: 75px;
        transform: scale(1.5);
        opacity: 1;
        bottom: 140px;
    }
    
    body:has(.main-header.fixed-bar) a.meta-partner-badge {
        transform: scale(1);
        left: 15px;
        opacity: .5;
        bottom: 110px;
    }
}
