.qool-link {
    display: inline-flex;
    gap: 5px;
    align-items: baseline;
}

#header h2 span.qool-text {
    color: inherit;
    border-bottom: inherit;
    padding-bottom: inherit;
}

.cd-timeline-img.cd-picture {
    transition: all 1s ease;
    cursor: pointer;
}

.cd-timeline-img.cd-picture:hover {
    transform: scale(1.2);
}

.style-button {
    position: fixed;
    display: flex;
    bottom: 16px;
    left: 1%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.style-button i {
    font-size: 1.75rem;
}

#close {
    opacity: 0;
    animation: blinkClose 4s infinite;
}

#open {
    opacity: 1;
    animation: blinkOpen 4s infinite;
}

@keyframes blinkClose {
    0%, 94%, 100% {
        opacity: 0;
    }
    95%, 97% {
        opacity: 1;
    }
}

@keyframes blinkOpen {
    0%, 94%, 100% {
        opacity: 1;
    }
    95%, 97% {
        opacity: 0;
    }
}

.style-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.style-modal.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.style-modal-backdrop {
    position: absolute;
    inset: 0;
}

.style-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    max-height: calc(100dvh - 50px);
    display: flex;
    overflow: hidden;
    transform: scale(.94) translateY(15px);
    transition: transform .25s ease;
}

.style-modal.show .style-modal-dialog {
    transform: scale(1) translateY(0);
}

.style-modal-close {
    position: absolute;
    z-index: 10;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.style-modal-preview,
.style-modal-selector {
    min-width: 0;
}

.style-modal-preview {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
}

.style-modal-animated {
    width: 100%;
    flex: 1;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.style-modal-animated svg {
    width: 100%;
    height: 100%;
    max-height: 520px;
    display: block;
}

.style-modal-preview-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.style-modal-preview-info h3 {
    padding: 0;
}

.style-modal-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 24px;
    text-decoration: none;
}

.style-modal-selector {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    overflow-y: auto;
}

.style-modal-header {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-right: 50px;
}

.style-modal-header h2 {
    padding: 0;
}

.style-modal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.style-modal-item {
    position: relative;
    width: calc(50% - 7px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    font: inherit;
    text-align: start;
}

.style-modal-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.style-modal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.style-modal-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.style-modal-name {
    flex: 1;
    min-width: 0;
}

.style-modal-selected {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.style-modal-open {
    overflow: hidden;
}

@media (max-width: 800px) {
    .style-modal {
        padding: 15px;
    }

    .style-modal-dialog {
        max-height: calc(100dvh - 30px);
        flex-direction: column;
        overflow-y: auto;
    }

    .style-modal-preview,
    .style-modal-selector {
        width: 100%;
    }

    .style-modal-preview {
        padding: 30px 20px 20px;
    }

    .style-modal-selector {
        padding: 20px;
        overflow: visible;
    }

    .style-modal-animated {
        min-height: 240px;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .style-modal {
        padding: 10px;
    }

    .style-modal-dialog {
        max-height: calc(100dvh - 20px);
    }

    .style-modal-preview {
        padding: 25px 15px 20px;
    }

    .style-modal-selector {
        padding: 20px 15px;
    }

    .style-modal-item {
        width: 100%;
    }
}

.social-links a i {
    font-size: 1.5rem;
}

.contact .info-box > i {
    font-size: 1.5rem;
}

.about-img-cont {
    position: relative;
    overflow: visible;
}


/* ========================================
   SHARED THEME STRUCTURE
   Common to all visual themes.
   Load main.css together with one theme CSS.
======================================== */

* {
    margin: 0 !important;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100svh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p,
span,
strong,
label,
input,
textarea,
button {
    font-family: inherit;
}

canvas,
img,
svg,
video {
    max-width: 100%;
}

ol,
ul {
    padding: 0;
}

li {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    max-width: none;
    padding: 0;
}

.row,
.form-row {
    width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    padding: 0 !important;
}

.row > *,
.form-row > * {
    min-width: 0;
    padding: 0 !important;
}

.col-12,
.col-lg-12,
.col-md-12,
.col-sm-12 {
    flex: 1 1 100%;
    max-width: 100%;
}

#header {
    width: 100%;
    min-height: 100svh;
    position: relative;
    z-index: 997;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

#header > .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#header .social-links,
.contact .social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#header .social-links a,
.contact .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    width: 100%;
    display: none;
    overflow: visible;
}

.nav-menu > ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
}

.nav-menu > ul > li {
    position: relative;
}

.nav-menu > ul > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-menu > ul > li > ul.expendable {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    inset-inline-start: 0;
    width: max-content;
    flex-direction: column;
}

.nav-menu > ul > li.submenu-open > ul.expendable,
.nav-menu > ul > li:hover > ul.expendable {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.nav-menu .expendable > li {
    width: 100%;
}

.nav-menu .expendable > li > a {
    width: 100%;
    display: flex;
    align-items: center;
}

#header.header-top {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    height: auto;
    padding: 10px 16px;
    overflow: visible;
}

#header.header-top > .container {
    width: min(1380px, 100%);
    min-height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

#header.header-top h1 {
    flex: 0 0 auto;
}

#header.header-top .nav-menu {
    flex: 1 1 auto;
}

section {
    position: absolute;
    inset-inline: 0;
    bottom: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: visible;
    z-index: 2;
}

section.section-show {
    bottom: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section > .container {
    width: min(1180px, 100%);
    display: flex;
    flex-direction: column;
}

section .container .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-title h2 {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.section-title p::after {
    content: "";
    display: block;
}

.about-me {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-me > .row {
    align-items: center;
}

.about-me .content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-me .content h3 {
    align-self: flex-start;
}

.about-me .content ul {
    display: flex;
    flex-direction: column;
}

.about-me .content ul li {
    display: flex;
    align-items: flex-start;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.video-container video {
    display: block;
    width: 100%;
}

#pauseIcon,
#playIcon {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.blog,
.contact,
.counts,
.gallery,
.interests,
.services,
.skills,
.testimonials {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.counts .count-box {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.counts .count-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skills-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
}

.skills-content > * {
    flex: 1 1 340px;
    min-width: 0;
}

.skills .progress {
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: transparent;
    padding: 8px 0;
}

.skills .progress .skill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.skills .progress .skill .val,
.skills .progress .skill .valtext {
    float: none;
    font-style: normal;
}

.skills .progress-bar-wrap {
    width: 100%;
    overflow: hidden;
}

.barper,
.barper100,
.barper20,
.barper40,
.barper60,
.barper80,
.skills .progress-bar {
    height: 100%;
}

.skills-grid .skill-card .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skills-grid .skill-card .percent {
    width: 170px;
    height: 170px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.skills-grid .skill-card svg {
    width: 150px;
    height: 150px;
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%)rotate(-90deg);
}

.skills-grid .skill-card svg circle {
    cx: 75px;
    cy: 75px;
    fill: none;
}

.skills-grid .skill-card .number {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.skills-grid .skill-card .number p {
    width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
}

.skills-grid .skill-card .skill-percentage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 13px;
}

.interests .icon-box {
    flex-direction: row;
    align-items: center;
}

.interests .icon-box h3 {
    font-size: 18px;
}

.services .icon-box {
    min-height: 250px;
    align-items: center;
    text-align: center;
}

.services .icon-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .icon-box .icon::before {
    display: none;
}

.wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wrapper .carousel {
    width: 100%;
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.wrapper .carousel::-webkit-scrollbar {
    display: none;
}

.wrapper .carousel .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
}

.wrapper .carousel .card .img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wrapper .carousel .card .img img {
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.wrapper .carousel .card h4,
.wrapper .carousel .card span {
    text-align: center;
}

.wrapper > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    border-radius: 50%;
    cursor: pointer;
}

.blog .icon-box {
    justify-content: flex-end;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.blog .icon-box > * {
    position: relative;
    z-index: 1;
}

.blog .icon-box hr {
    width: 100%;
    border: 0;
}

.capital {
    display: flex;
    align-items: center;
}

.gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gallery .image-box {
    display: flex;
}

.gallery_box {
    width: 100%;
    position: relative;
    display: block;
}

.gallery .icon-box {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.gallery_box:hover::after {
    content: attr(data-title);
    position: absolute;
    display: flex;
    pointer-events: none;
}

.hr-line,
.span-line {
    width: 100%;
    display: block;
}

.containerVideo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 22px;
}

.containerVideo .main-video-container {
    flex: 1 1 620px;
}

.containerVideo .main-video-container,
.containerVideo .video-list-container {
    padding: 15px;
}

.containerVideo .main-video {
    width: 100%;
}

.containerVideo .list-title,
.containerVideo .main-vid-title {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.containerVideo .video-list-container .list {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    cursor: pointer;
}

.containerVideo .video-list-container .list-video {
    width: 110px;
    flex: 0 0 110px;
}

#cd-timeline {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

#cd-timeline::before {
    content: "";
    position: absolute;
    inset-block: 0;
}

.cd-timeline-block {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.cd-timeline-img {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 50%;
}

.cd-timeline-img img {
    object-fit: cover;
    object-position: center top;
    border: 0 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
}

.cd-timeline-content {
    flex: 1 1 auto;
    min-width: 0;
}

.cd-timeline-content h3 {
    font-size: 17px;
}

.article ul,
.cd-timeline-content ul,
.sources {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.icon-background {
    position: absolute;
    inset-inline-end: 16px;
    bottom: 12px;
    font-size: 70px;
}

.contact .info-box > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fifties {
    width: calc(50% - 10px);
}

.fifties .info-box {
    width: 100%;
}

.php-email-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-control,
.php-email-form input,
.php-email-form textarea {
    width: 100%;
    outline: none;
}

.php-email-form textarea {
    resize: vertical;
}

.php-email-form .loading {
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.php-email-form .loading.active {
    display: flex;
}

.php-email-form .error-message.active {
    display: block;
}

.php-email-form .sent-message.active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog button,
.btn,
.php-email-form button[type="submit"],
.services button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    outline: none;
    cursor: pointer;
}

.section-title p.article_size {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    font-size: 1.7rem;
}

.img-article {
    width: min(100%, 900px);
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
}

.article {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sources {
    width: 100%;
}

#cards-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.phone-3d {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#pagination,
.footer,
.page-navigation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

#pagination a,
#pagination button {
    padding: 0;
    border-radius: 50%;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-body,
.modal-footer,
.modal-header {
    width: 100%;
    display: flex;
    gap: 12px;
    padding: 0;
    border: 0;
}

.modal-footer,
.modal-header {
    align-items: center;
    justify-content: space-between;
}

.modal-body {
    flex-direction: column;
}

.modal-backdrop {
    z-index: 998;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10001;
    padding: 0;
}

.mobile-nav {
    position: fixed;
    top: 78px;
    z-index: 10000;
    width: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
}

.mobile-nav > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav li {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
}

.mobile-nav ul.expendable {
    display: none !important;
    width: 100%;
    position: static !important;
    flex-direction: column;
    gap: 6px;
    padding: 6px 0 0 14px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

html[dir="rtl"] .mobile-nav ul.expendable {
    padding: 6px 14px 0 0;
}

.mobile-nav li.submenu-open > ul.expendable {
    display: flex !important;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-overly {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
}

.mobile-nav-active .mobile-nav-overly {
    display: block;
}

.mobile-nav-active {
    overflow: hidden;
}

.about-img-cont::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.credits {
    position: fixed;
    inset-inline-end: 16px;
    bottom: 16px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ltr-content {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}

.style-modal-preview {
    position: relative;
}

.style-modal-animated {
    position: relative;
    z-index: 2;
}

.style-modal-preview-info {
    position: relative;
    z-index: 3;
}

.style-modal-selected {
    opacity: 0;
}

.style-modal-item.active .style-modal-selected {
    opacity: 1;
}
