:root {
    --dark-one: #333;
    --dark-two: #7a7a7a;
    --main-color: #F57500;
    --light-one: #fff;
    --light-two: #f9fafb;
    --light-three: #f6f7fb;
}


/* Genral Styles */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    /* width: 100%; */
}

.container {
    position: relative;
    z-index: 5;
    max-width: 92rem;
    padding: 0 4rem;
    margin: 0 auto;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}

.text {
    font-size: 1.25rem;
    color: var(--dark-two);
    line-height: 1.6;
}

.column-1 {
    margin-right: 1.5rem;
}

.column-2 {
    margin-left: 1.5rem;
}

.image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z-index {
    position: relative;
    z-index: 2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.overlay .shape {
    width: initial;
    opacity: 0.13;
    position: absolute;
}

.overlay.overlay-lg .shape {
    height: 55px;
}

.overlay.overlay-lg .shape.wave {
    height: initial;
    width: 88px;
}

.overlay.overlay-lg .shape.xshape {
    height: 38px;
}

.overlay.overlay-sm .shape {
    filter: brightness(0) invert(1);
    opacity: 0.15;
    height: 40px;
}

.overlay.overlay-sm .shape.wave {
    height: initial;
    width: 70px;
}

.overlay.overlay-sm .shape.xshape {
    height: 30px;
}

.points {
    opacity: 0.3;
    position: absolute;
}

.section {
    padding: 7rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    line-height: 1;
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
}

.title:before {
    content: attr(data-title);
    display: block;
    margin-bottom: 0.4rem;
    color: var(--main-color);
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title:after {
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    border-radius: 3px;
    background-color: var(--main-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header .text {
    max-width: 600px;
    margin: 0 auto;
}

.title-sm {
    color: var(--dark-one);
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.2;
}

.points-sq {
    width: 210px;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: var(--main-color);
    color: var(--light-one);
    border-radius: 2rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background-color: #F57516;
}

.btn.small {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
}


/* End Genral Styles */


/* Header */

header {
    width: 100%;
    background-color: var(--light-three);
    overflow: hidden;
    position: relative;
}

nav {
    width: 100%;
    position: relative;
    z-index: 50;
}

nav .container {
    display: flex;
    justify-content: space-between;
    height: 6rem;
    align-items: center;
}

.logo {
    width: 80px;
    display: flex;
    align-items: center;
}

.links ul {
    display: flex;
}

.links a {
    display: inline-block;
    padding: 0.9rem 1.2rem;
    color: var(--dark-one);
    font-size: 1.05rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    transition: 0.3s;
}

.links a.active {
    background-color: var(--main-color);
    color: var(--light-one);
    border-radius: 2rem;
    font-size: 1rem;
    padding: 0.9rem 2.1rem;
    margin-left: 1rem;
}

.links a:hover {
    color: var(--main-color);
}

.links a.active:hover {
    color: var(--light-one);
    background-color: #f57500;
}

.hamburger-menu {
    width: 2.7rem;
    height: 3rem;
    z-index: 100;
    position: relative;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu .bar {
    position: relative;
    width: 2.1rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--dark-one);
    transition: 0.5s;
}

.bar:before,
.bar:after {
    content: "";
    position: absolute;
    width: 2.1rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--dark-one);
    transition: 0.5s;
}

.bar:before {
    transform: translateY(-9px);
}

.bar:after {
    transform: translateY(9px);
}

nav.open .hamburger-menu .bar {
    background-color: transparent;
    transform: rotate(360deg);
}

nav.open .hamburger-menu .bar:before {
    transform: translateY(0) rotate(45deg);
    background-color: var(--light-one);
}

nav.open .hamburger-menu .bar:after {
    transform: translateY(0) rotate(-45deg);
    background-color: var(--light-one);
}

nav.open .links {
    transform: translateX(0);
}

.header-content .container.grid-2 {
    grid-template-columns: 2.5fr 3.5fr;
    min-height: calc(100vh - 6rem);
    padding-bottom: 2.5rem;
    text-align: left;
}

.header-title {
    font-size: 3.4rem;
    line-height: 1.2;
    color: var(--dark-one);
}

.header-content .text {
    margin: 2.15rem 0;
}

.header-content .image .img-element {
    max-width: 750px;
}

header .points1 {
    width: 420px;
    bottom: -75px;
    left: -150px;
}

header .points2 {
    width: 70%;
    top: 65%;
    left: 71%;
}

header .square {
    right: 68%;
    top: 71%;
}

header .triangle {
    right: 7%;
    bottom: 75%;
}

header .xshape {
    right: 4%;
    bottom: 50%;
}

header .half-circle1 {
    left: 50%;
    bottom: 82%;
}

header .half-circle2 {
    left: 5%;
    top: 67%;
}

header .wave1 {
    bottom: 75%;
    left: 20%;
}

header .wave2 {
    bottom: 8%;
    right: 55%;
}

header .circle {
    left: 38%;
    bottom: 63%;
}

.letters {
    position: absolute;
    width: 13.5%;
    top: -5px;
    left: 15px;
    opacity: 0.06;
}


/* End header */


/* Services */

.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 4vw;
}

.card-wrap {
    position: relative;
    margin: 1.7rem 0.8rem;
}

.card {
    position: relative;
    width: 100%;
    max-width: 390px;
    min-height: 445px;
    background-color: var(--light-three);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    overflow: hidden;
    transition: 0.3s;
}

.card:before {
    content: attr(data-card);
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--main-color);
    opacity: 0.025;
}

.card:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: 0;
    left: 0;
    background-color: var(--main-color);
    transition: 0.3s;
}

.card-wrap:hover .card {
    transform: translateY(-15px);
}

.card-wrap:hover .card:after {
    height: 8px;
}

.icon {
    width: 90px;
    margin-bottom: 1.7rem;
}

.card .title-sm {
    line-height: 0.8;
}

.card .text {
    font-size: 1.15rem;
    margin: 1.8rem 0;
}

.services .points1 {
    bottom: -50px;
    left: -125px;
    opacity: 0.2;
    pointer-events: none;
}

.services .points2 {
    bottom: -70px;
    right: -65px;
    opacity: 0.2;
    pointer-events: none;
}


/* End Services */


/* Portfolio */

.portfolio {
    position: relative;
    width: 100%;
    background-color: var(--light-two);
}

.background-bg {
    position: absolute;
    width: 100%;
    height: 520px;
    top: 0;
    left: 0;
    background-color: var(--main-color);
}

.portfolio .title,
.portfolio .title:before {
    color: var(--light-one);
}

.portfolio .title:after {
    background-color: var(--light-one);
}

.filter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    border: none;
    outline: none;
    background-color: transparent;
    margin: 0.45rem 0.4rem;
    padding: 0.85rem 1.8rem;
    color: var(--light-one);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 2rem;
    transition: 0.3s;
}

.filter-btn.active {
    background-color: var(--light-one);
    color: var(--main-color);
}

.portfolio .square {
    top: 28%;
    left: 20%;
}

.portfolio .circle {
    top: 8%;
    right: 35%;
}

.portfolio .triangle {
    bottom: 10%;
    right: 4%;
}

.portfolio .half-circle1 {
    bottom: 13%;
    left: 5%;
}

.portfolio .half-circle2 {
    top: 35%;
    right: 20%;
}

.portfolio .xshape {
    top: 10%;
    right: 8%;
}

.portfolio .wave {
    top: 38%;
    left: 6%;
}

.grid {
    width: 100%;
    margin: 1.5rem 0;
}

.grid-item {
    width: 33.33%;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: center;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 330px;
    width: 100%;
    cursor: pointer;
}

.gallery-image img {
    position: absolute;
    height: 115%;
    width: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: 0.5s;
}

.gallery-image .img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    color: var(--light-one);
    background-color: rgba(120, 76, 251, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 3.2rem;
    opacity: 0;
    transition: 0.5s;
}

.img-overlay .plus {
    position: relative;
    margin: auto 0;
}

.plus:before,
.plus:after {
    content: "";
    position: absolute;
    width: 4.5rem;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--light-one);
    border-radius: 3px;
}

.plus:before {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.img-description {
    width: 100%;
}

.img-overlay h3 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.img-overlay h5 {
    font-size: 1.15rem;
    font-weight: 300;
}

.gallery-image:hover .img-overlay {
    opacity: 1;
}

.gallery-image:hover img {
    transform: translate(-50%, -50%) scale(1.1);
}

.more-folio {
    display: flex;
    justify-content: center;
}

.more-folio .btn:hover {
    cursor: pointer;
}


/* End Portfolio */


/* About */

.about {
    overflow: hidden;
}

.about img {
    max-width: 600px;
}

.about .text {
    margin-top: 1rem;
}

.skills {
    margin: 1.5rem 0 2.5rem 0;
}

.skill {
    margin: 1rem 0;
}

.skill-title {
    color: #555;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.skill-bar {
    width: 70%;
    height: 8px;
    border-radius: 4px;
    background-color: #ece6fa;
    position: relative;
    overflow: hidden;
}

.skill-progress {
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    background-color: var(--main-color);
    transition: 1s;
}

.about .column-1 {
    position: relative;
}

.about .column-1:before {
    content: "About";
    position: absolute;
    font-size: 8rem;
    font-weight: 800;
    color: var(--main-color);
    opacity: 0.04;
    top: 20px;
    left: 0;
    line-height: 0;
}

.about .points {
    width: 300px;
    top: 65%;
    left: 80%;
    opacity: 0.1;
}


/* End About */


/* Records */

.records {
    position: relative;
    background-color: var(--main-color);
    padding: 5.2rem 0;
}

.records .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-column-gap: 1.5rem;
    grid-row-gap: 2rem;
}

.record-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--light-one);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--light-one);
}

.record-circle.active {
    background-color: var(--light-one);
    color: var(--dark-one);
    box-shadow: 0 0 0 15px rgb(255, 255, 255, 0.5);
}

.number {
    font-weight: 400;
    font-size: 2.35rem;
}

.sub-title {
    font-weight: 400;
    font-size: 1.12rem;
    text-transform: uppercase;
}

.records .square1 {
    left: 8%;
    top: 10%;
}

.records .square2 {
    right: 90px;
    bottom: 70px;
}

.records .xshape {
    top: 45px;
    right: 120px;
}

.records .circle {
    left: 7%;
    bottom: 50px;
}

.records .triangle {
    left: 65%;
    bottom: 35px;
}

.records .wave1 {
    top: 35px;
    right: 30%;
}

.records .wave2 {
    bottom: 40px;
    left: 28%;
}

.records .half-circle {
    top: 30px;
    right: 50%;
}


/* End Records */


/* Blog */

.blog-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
}

.blog-wrap {
    position: relative;
    margin: 1.3rem 0.5rem;
}

.blog-card {
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    background-color: var(--light-two);
    transition: 0.3s;
    position: relative;
}

.blog-card:after {
    content: "";
    position: absolute;
    width: 1100%;
    height: 0px;
    bottom: 0;
    left: 0;
    background-color: var(--main-color);
    transition: 0.3s;
}

.blog-image {
    width: 100%;
    height: 270px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    height: 105%;
    width: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

.blog-content {
    padding: 2.1rem 2.2rem 2.7rem 2.2rem;
}

.blog-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.blog-info h5 {
    color: var(--main-color);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.blog-date {
    margin-right: 2rem;
}

.blog-user i {
    margin-right: 0.2rem;
    font-size: 1rem;
}

.blog-text {
    margin: 0.5rem 0 1.5rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.blog-card:hover {
    transform: translateY(-15px);
}

.blog-card:hover:after {
    height: 8px;
}

.blog-card:hover .blog-image img {
    transform: translate(-50%, -50%) scale(1.15);
}

.blog .points {
    top: 72%;
    right: 71%;
    opacity: 0.15;
}


/* End Blog */


/* Testimonials */

.testimonials {
    background-color: var(--light-two);
    overflow: hidden;
}

.testi-content {
    margin-top: 6rem;
}

.reviews {
    overflow: hidden;
}

.review {
    position: relative;
    padding: 2rem 1.5rem;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
    opacity: 0.04;
    font-size: 8rem;
}

.rate {
    display: flex;
    font-size: 1.4rem;
    color: #ebc000;
    margin-bottom: 1.5rem;
}

.rate i {
    margin-right: 0.3rem;
}

.review-text {
    font-size: 1.35rem;
    font-weight: 300;
    color: #444;
    line-height: 1.7;
}

.review-info {
    margin-top: 2rem;
}

.review-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-one);
}

.review-job {
    font-size: 1.15rem;
    font-weight: 300;
    color: #777;
}

.review-nav {
    bottom: 2.2rem;
    top: initial;
    font-size: 1.8rem;
    color: var(--main-color);
}

.swiper-button-next {
    right: 2rem;
    left: initial;
}

.swiper-button-prev {
    right: 4.5rem;
    left: initial;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}


/* End Testimonials */


/* Contact */

.contact {
    position: relative;
    width: 100%;
    padding: 13.5rem 0 8.5rem;
}

.contact:before,
.contact:after {
    content: "";
    position: absolute;
    width: 100%;
    z-index: -1;
    left: 0;
}

.contact:before {
    top: 0;
    height: 40%;
    /* background: url("../img/map.png") center center / cover; */
}

.contact:after {
    top: 40%;
    height: 60%;
    /* background: url("../img/contact-bg.png") center bottom / cover; */
}

.contact-box {
    width: 100%;
    background-color: var(--light-one);
    width: 100%;
    border-radius: 45px;
    padding: 5.5rem 4.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-info {
    padding-right: 2rem;
}

.contact-form {
    padding-left: 2rem;
}

.contact-info .title:after {
    left: 0;
    transform: initial;
}

.information-wrap {
    margin-top: 2rem;
}

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

.information:not(:last-child) {
    margin-bottom: 1.3rem;
}

.contact-icon {
    min-width: 67px;
    height: 67px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--main-color);
    color: var(--light-one);
    text-align: center;
    font-size: 1.4rem;
    margin-right: 1rem;
}

.contact-icon i {
    line-height: 67px;
}

.info-text {
    font-size: 1.3rem;
    display: inline-block;
}

.info-text a {
    color: var(--main-color)
}

.info-text a:hover {
    text-decoration: underline;
}

.contact-form .title:after {
    display: none;
}

.contact-form .title {
    margin: 0;
}

.contact-form .row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    grid-column-gap: 0.6rem;
}

.contact-input {
    padding: 1.2rem 2.1rem;
    margin: 0.6rem 0;
    border: none;
    outline: none;
    background: #f3f3f3;
    border-radius: 4rem;
    font-weight: 600;
    font-size: 1.25rem;
    transition: 0.3s;
}

.contact-input::placeholder {
    font-weight: 400;
}

.contact-input.textarea {
    resize: none;
    min-height: 280px;
    border-radius: 2rem;
}

@media (max-width: 850px) {
    .contact-input.textarea {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    .contact-input.textarea {
        min-height: 150px;
        border-radius: 1rem;
    }
}

.contact-input:hover {
    background: #ececec;
}

.contact-input:focus {
    background: #eaeaea;
}

.contact-input .btn {
    margin-top: 0.6rem;
}


/* End Contact */


/* Hire me */

.hireme {
    padding: 1rem 0 6rem;
}

.hireme .container {
    text-align: center;
}

.hireme .title {
    margin-bottom: 1.3rem;
}

.hireme .text {
    max-width: 1000px;
    margin: 0 auto 1.6rem auto;
}


/* End Hire me */


/* Footer */

.footer {
    background-color: #222;
    padding: 6rem 0;
}

.footer .grid-4 {
    display: grid;
    grid-template-columns: 3.5fr 2fr 2fr 3fr;
}

.grid-4-col {
    padding: 0 1.7rem;
}

.footer .title-sm {
    color: #fafafa;
    margin-bottom: 0.9rem;
}

.footer .text {
    color: #aaa;
}

.footer-links a {
    color: #888;
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 0.4rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--main-color);
}

.footer-input-wrap {
    display: grid;
    grid-template-columns: auto 50px;
    width: 100%;
    height: 50px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 1.2rem;
}

.footer-input {
    background: #373737;
    color: #333;
    outline: none;
    border: none;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    transition: 0.3s;
}

.input-arrow {
    color: #fff;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: 0.3s;
}

.input-arrow:hover {
    background-color: #6b44e0;
}

.focus {
    background: #fff;
}

.bottom-footer {
    margin-top: 5.5rem;
    padding: 0 1.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright .text {
    color: #7b7b7b;
    font-size: 1.2rem;
    display: inline-block;
    text-align: center;
}

.copyright .text span {
    color: var(--main-color);
    cursor: pointer;
}

.followme-wrap {
    display: flex;
}

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

.followme h3 {
    color: #7b7b7b;
    font-weight: 500;
    font-size: 1.3rem;
}

.followme .footer-line {
    width: 60px;
    height: 2px;
    background-color: #7b7b7b;
    margin: 0 1.2rem;
    display: inline-block;
}

.social-media a {
    color: #7b7b7b;
    font-size: 1.3rem;
    margin-right: 0.4rem;
    transition: 0.3s;
}

.social-media a:hover {
    color: var(--main-color);
}

.back-btn-wrap {
    position: relative;
    margin-left: 2.5rem;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    background-color: var(--main-color);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.back-btn:hover {
    background-color: #6b44e0;
}

.back-btn-wrap:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #fff;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    border-radius: 50%;
    opacity: 0.08;
    animation: scale 1.2s ease-out infinite 1s;
}

@keyframes scale {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Footer responsive styles */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0;
    }
    
    .footer .grid-4 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .grid-4-col {
        padding: 1rem 0;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .followme {
        justify-content: center;
    }
    
    .social-media {
        display: flex;
        justify-content: center;
    }
    
    .back-btn-wrap {
        margin: 1rem auto 0;
    }
}


/* End Footer */


/* Responsive */

@media (max-width: 1280px) {
    img {
        width: 80%;
    }
    .text {
        font-size: 1rem;
    }
    .title {
        font-size: 2.1rem;
        padding-bottom: 0.65rem;
    }
    .title:before {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    .title:after {
        height: 3.5px;
        width: 70px;
    }
    .title-sm {
        font-size: 1.2rem;
    }
    .btn {
        padding: 0.75rem 1.7rem;
        font-size: 0.8rem;
    }
    .btn.small {
        padding: 0.65rem 1.6rem;
        font-size: 0.7rem;
    }
    .section-header .text {
        max-width: 500px;
    }
    .section {
        padding: 4.5rem 0;
    }
    .column-1 {
        margin-right: 1rem;
    }
    .column-2 {
        margin-left: 1rem;
    }
    .overlay.overlay-lg .shape {
        height: 35px;
    }
    .overlay.overlay-lg .shape.wave {
        height: initial;
        width: 63px;
    }
    .overlay.overlay-lg .shape.xshape {
        height: 24px;
    }
    .overlay.overlay-sm .shape {
        height: 24px;
    }
    .overlay.overlay-sm .shape.wave {
        height: initial;
        width: 39px;
    }
    .overlay.overlay-sm .shape.xshape {
        height: 19px;
    }
    header .points1 {
        width: 270px;
        bottom: -50px;
        left: -75px;
    }
    header .points2 {
        width: 340px;
    }
    header .letters {
        width: 11%;
    }
    .header-content .image .img-element {
        max-width: 500px;
    }
    nav .container {
        height: 4.5rem;
    }
    .header-content .container.grid-2 {
        min-height: calc(100vh - 4.5rem);
        padding-bottom: 1.5rem;
    }
    .logo {
        width: 65px;
    }
    .links a {
        font-size: 0.8rem;
        padding: 0.65rem 0.7rem;
    }
    .links a.active {
        font-size: 0.7rem;
        padding: 0.7rem 1.7rem;
        margin-left: 0.6rem;
    }
    .header-title {
        font-size: 2.6rem;
    }
    .header-content .text {
        margin: 1.1rem 0;
    }
    .card {
        min-height: 390px;
        max-width: 290px;
        padding: 2.2rem 1.5rem;
    }
    .icon {
        width: 65px;
        margin-bottom: 0.8rem;
    }
    .card .text {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    .card:before {
        font-size: 5rem;
    }
    .card-wrap {
        margin: 1rem 0.6rem;
    }
    .services .points1 {
        left: -60px;
    }
    .points-sq {
        width: 150px;
    }
    .grid {
        margin: 0.8rem 0;
    }
    .grid-item {
        padding: 0.8rem;
    }
    .gallery-image {
        height: 250px;
        max-width: 325px;
    }
    .gallery-image .img-overlay {
        padding: 1.4rem 2rem;
    }
    .plus:before,
    .plus:after {
        width: 2.8rem;
    }
    .img-overlay h3 {
        font-size: 1.1rem;
    }
    .img-overlay h5 {
        font-size: 0.8rem;
    }
    .background-bg {
        height: 370px;
    }
    .filter-btn {
        padding: 0.6rem 1.45rem;
        font-size: 0.7rem;
    }
    .about img {
        max-width: 420px;
    }
    .about .text {
        margin-top: 0.7rem;
    }
    .skills {
        margin: 0.9rem 0 1.7rem 0;
    }
    .skill-title {
        font-size: 1rem;
    }
    .skill-bar {
        height: 6px;
    }
    .about .column-1:before {
        font-size: 6rem;
        top: 13px;
    }
    .about .points {
        width: 230px;
        left: 65%;
    }
    .record-circle {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }
    .record-circle .number {
        font-size: 1.8rem;
    }
    .record-circle .sub-title {
        font-size: 0.9rem;
    }
    .blog-wrap {
        margin: 0.7rem 0.5rem;
    }
    .blog-card {
        max-width: 315px;
    }
    .blog-image {
        height: 200px;
    }
    .blog-content {
        padding: 1.8rem 1.7rem 1.9rem 1.7rem;
    }
    .blog-info {
        margin-bottom: 0.2rem;
    }
    .blog-info>* {
        font-size: 0.75rem !important;
    }
    .blog-user i {
        font-size: 0.8rem;
    }
    .blog-text {
        font-size: 0.9rem;
        margin: 0.2rem 0 0.8rem 0;
    }
    .rate {
        font-size: 1.15rem;
        margin-bottom: 1.1rem;
    }
    .review-text {
        font-size: 1.05rem;
    }
    .review-info {
        margin-top: 1.1rem;
    }
    .review-name {
        font-size: 1.05rem;
    }
    .review-job {
        font-size: 0.85rem;
    }
    .quote {
        font-size: 6.5rem;
    }
    .review-nav {
        font-size: 1.55rem;
    }
    .swiper-button-next {
        right: 2.5rem;
    }
    .swiper-button-prev {
        right: 4.5rem;
    }
    .contact {
        padding: 9rem 0 6rem 0;
    }
    .contact-form {
        padding-left: 1rem;
    }
    .contact-info {
        padding-right: 1rem;
    }
    .contact-box {
        padding: 3.6rem 3rem;
    }
    .information-wrap {
        margin-top: 1.2rem;
    }
    .contact-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    .contact-icon i {
        line-height: 50px;
    }
    .info-text {
        font-size: 1.05rem;
    }
    .contact-input {
        font-size: 0.9rem;
        padding: 0.9rem 1.6rem;
        margin: 0.4rem 0;
    }
    .hireme {
        padding: 8rem 0;
    }
    .footer {
        padding: 4rem 0;
    }
    .footer-links a {
        font-size: 1rem;
    }
    .footer .title-sm {
        margin-bottom: 0.5rem;
    }
    .footer-input-wrap {
        height: 36px;
        margin-top: 0.8rem;
    }
    .footer-input {
        font-size: 0.9rem;
        padding: 0 1.2rem;
    }
    .input-arrow {
        font-size: 1.2rem;
    }
    .copyright .text {
        font-size: 0.95rem;
    }
    .followme h3 {
        font-size: 1.05rem;
    }
    .followme .footer-line {
        margin: 0 0.8rem;
    }
    .social-media a {
        font-size: 1.05rem;
    }
    .back-btn-wrap {
        margin-left: 1.3rem;
    }
    .back-btn {
        width: 43px;
        height: 43px;
        font-size: 0.9rem;
    }
    .back-btn-wrap:before {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 850px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
    .column-1 {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .column-2 {
        margin-left: 0;
        margin-top: 1rem;
    }
    .hamburger-menu {
        display: flex;
    }
    .header-content {
        margin-top: 1rem;
    }
    .header-title {
        font-size: 2.3rem;
    }
    .header-content .image {
        max-width: 400px;
        margin: 0 auto;
    }
    header .column-1 {
        max-width: 550px;
        margin: 0 auto;
    }
    .links {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        background-color: #252525;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translateX(100%);
        transition: 0.5s;
    }
    .links ul {
        flex-direction: column;
    }
    .links a {
        color: var(--light-one);
    }
    .links a.active {
        margin-left: 0;
        margin: 0.5rem 0;
    }
    .header-content .container.grid-2 {
        min-height: 80vh;
    }
    .letters,
    header .half-circle2,
    header .points1,
    header .wave2 {
        display: none;
    }
    header .half-circle1 {
        bottom: 55%;
        left: 23%;
    }
    header .circle {
        left: 8%;
        bottom: 40%;
    }
    header .wave1 {
        bottom: 87%;
        left: 75%;
    }
    header .square {
        top: initial;
        bottom: 5%;
        left: 13%;
    }
    header .triangle {
        right: 14%;
        bottom: 63%;
    }
    header .points2 {
        width: 280px;
        bottom: -10px;
        left: 60%;
    }
    header .xshape {
        left: 90%;
        top: 54%;
    }
    .grid-item {
        width: 50%;
    }
    .gallery-image {
        height: 210px;
        max-width: 270px;
    }
    .background-bg {
        height: 340px;
    }
    .portfolio .half-circle1,
    .portfolio .triangle,
    .portfolio .half-circle2 {
        display: none;
    }
    .portfolio .square {
        top: 10%;
        left: 14%;
    }
    .portfolio .wave {
        top: 33%;
    }
    .portfolio .circle {
        right: 20%;
    }
    .portfolio .xshape {
        top: 25%;
    }
    .skill-bar {
        width: 100%;
    }
    .about .column-1:before {
        font-size: 5rem;
    }
    .about .points {
        top: 60%;
        left: 59%;
    }
    .records .wave1,
    .records .triangle {
        display: none;
    }
    .records .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .records .wave2 {
        left: 48%;
    }
    .records .sqaure2 {
        bottom: 45%;
        right: 50px;
    }
    .testi-content {
        margin-top: 1.7rem;
    }
    .testi-content .image {
        max-width: 500px;
        margin: 0 auto;
    }
    .review-nav {
        bottom: 3rem;
    }
    .contact-box {
        grid-template-columns: 1fr;
        padding: 3.2rem 2.7rem;
    }
    .contact-info {
        padding-right: 0;
        padding-bottom: 0.5rem;
    }
    .contact-form {
        padding-left: 0;
        padding-top: 0.5rem;
    }
    .information-wrap {
        margin-top: 0.7rem;
    }
    .information:not(:last-child) {
        margin-bottom: 0.8rem;
    }
    .contact-input.textarea {
        min-height: 220px;
    }
    .contact:before {
        height: 25%;
    }
    .contact:after {
        height: 75%;
        top: 25%;
    }
    .footer .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }
    .footer-about {
        grid-column: 1 / 3;
    }
    .footer-newstletter {
        grid-column: 1 / 3;
    }
    .grid-4-col {
        margin: 1rem 0;
        padding: 0;
    }
    .footer-input-wrap {
        max-width: 300px;
        margin: 0.95rem auto 0 auto;
        grid-template-columns: auto 45px;
    }
    .bottom-footer {
        flex-direction: column;
        justify-items: center;
        align-items: center;
        padding: 1.5rem 0 0 0;
        margin-top: 2.5rem;
        position: relative;
    }
    .bottom-footer:before {
        content: "";
        position: absolute;
        width: 90%;
        max-width: 500px;
        height: 1px;
        background-color: #7b7b7b;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .followme-wrap {
        margin-top: 0.8rem;
    }
}

@media (max-width: 600px) {
    .grid-item {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 2rem;
    }
    .title {
        font-size: 1.8rem;
    }
    .text {
        font-size: 0.92rem;
    }
    .overlay.overlay-lg .shape {
        height: 28px;
    }
    .overlay.overlay-lg .shape.wave {
        height: initial;
        width: 52px;
    }
    .overlay.overlay-lg .shape.xshape {
        height: 22px;
    }
    .records .container {
        grid-template-columns: 1fr;
    }
    .records .half-circle {
        top: 50%;
        left: 50px;
    }
    .records .wave2 {
        bottom: 50%;
        right: 20px;
        left: initial;
    }
    .records .xshape {
        right: 70px;
    }
    .records .square2 {
        bottom: 90px;
        right: 40px;
    }
    .testi-content {
        margin-top: 1rem;
    }
    .review {
        padding: 1.5rem 1rem;
    }
    .review-text {
        font-size: 0.9rem;
    }
    .review-nav {
        bottom: 1.5rem;
        font-size: 1.3rem;
    }
    .swiper-button-next {
        right: 1.3rem;
    }
    .swiper-button-prev {
        right: 3rem;
    }
    .contact {
        padding: 8rem 0 5rem 0;
    }
    .contact-info {
        display: none;
    }
    .contact-box {
        padding: 2.3rem 2rem;
        border-radius: 30px;
    }
    .contact:before {
        background-size: 200%;
    }
    .contact-form .row {
        grid-column-gap: 0.3rem;
    }
    .contact-input {
        font-size: 0.8rem;
        padding: 0.8rem 1.4rem;
        margin: 0.25rem 0;
    }
}

/* Language Selector Styles */
#language-selector {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#language-selector select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.language-option {
    padding: 10px;
    cursor: pointer;
}

/* Show language selector in hamburger menu on mobile */
@media (max-width: 850px) {
    #language-selector {
        display: block;
        position: static;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 5px 0;
        margin-top: 10px;
    }
    
    #language-selector select {
        background-color: #333;
        color: #fff;
        border: 1px solid #555;
        text-align: center;
    }
}

.modal-open {
    display: block !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content ul {
    list-style: outside;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: auto;
    padding: 25px;
    border: 5px solid #db6c08;
    width: 50%;
    max-width: 800px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin: 10px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #9C27B0;
    color: white;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #9C27B0;
    color: white;
}

/* Modal responsive styles */
@media (max-width: 992px) {
    .modal-content {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 85%;
        padding: 20px;
    }
    
    .modal {
        padding-top: 50px;
    }
}

@media (max-width: 560px) {
    .modal-content {
        width: 95%;
        padding: 15px;
        border-width: 3px;
    }
    
    .close {
        font-size: 24px;
        margin: 5px;
    }
}
.horizontal-grid {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    /* Додайте відступи за потреби */
}
.horizontal-grid2 {
    display: flex;
    padding: 10px;
    /* Додайте відступи за потреби */
}
.grid-item {
    flex: 0 0 auto;
    margin-right: 10px;
    /* Додайте відступи між grid-items за потреби */
}
.horizontal-scroll {
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
}
.horizontal-grid2 {
    display: inline-flex;
    margin: 0;
    padding: 0;
}
.grid-item {
    margin-right: 10px;
    /* Додайте відступ між продуктами за потребою */
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background-color: #ddd;
    /* Змініть колір за потребою */
    
    border: 1px solid #aaa;
    /* Змініть колір за потребою */
    
    cursor: pointer;
}
.scroll-arrow-left {
    left: 0;
}
.scroll-arrow-right {
    right: 0;
}
.card-slider {
    max-width: 960px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .card-slider {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .card-slider {
        width: 95%;
    }
}

.card-slider .slick-prev,
.card-slider .slick-next {
    color: black;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-slider .slick-prev {
    left: -15px;
}

.card-slider .slick-next {
    right: -15px;
}

@media screen and (max-width: 768px) {
    .card-slider .slick-prev,
    .card-slider .slick-next {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
}

@media screen and (max-width: 560px) {
    .card-slider .slick-prev {
        left: -5px;
    }
    
    .card-slider .slick-next {
        right: -5px;
    }
    
    .card-slider .slick-prev,
    .card-slider .slick-next {
        width: 20px;
        height: 20px;
        font-size: 12px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
    }
}

.card-slider .slick-slide {
    padding: 0 10px;
}

.card-slider .card {
    position: relative;
    display: flex !important;
    flex-direction: column;
    min-height: 454px;
    max-height: 454px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, .2);
    background-color: white;
    text-decoration: none;
    color: rgba(0, 0, 0, .9);
    transition: all .1s linear;
}

@media screen and (max-width: 600px) {
    .card-slider .card {
        height: auto;
        min-height: auto;
        max-height: none;
    }
}
/* Main link */
.card .main-link {
    text-decoration: none;
}

.card .main-link:focus {
    outline: none;
}

.card .main-link:focus .title {
    outline: 3px dashed orange;
    outline-offset: -4px;
    color: royalblue;
    text-decoration: underline;
}

/* Product title */
.card .title {
    color: #000;
    margin: 0;
    padding: 10px 10px 5px 10px;
    font-size: 16px;
    font-weight: bold;
}

.card .title:hover {
    text-decoration: underline;
}

/* Product image */
.card .image {
    order: -1;
    position: relative;
    height: 300px;
    padding: 2px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.5);
    transition: all .3s ease-in-out;
}

.card .image:hover img {
    width: 110%;
    height: 110%;
}

/* Product description */
.card .description {
    margin: 7px 10px 15px 10px;
    font-size: 14px;
    opacity: .8;
}

/* Floating "sale" badge */
.card .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 1;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background-color: rgb(200, 0, 0);
}

/* Price */
.card .price {
    padding-left: 10px;
}

.card .price .new-price {
    font-weight: bold;
}

.card .price .original-price {
    margin-left: 5px;
    font-size: 14px;
    font-style: italic;
    opacity: .5;
    text-decoration: line-through;
}

/* Rating */
.card .rating {
    margin: 10px 0 15px 10px;
    color: orange;
    font-size: 12px;
}

/* "30 reviews" link next to stars */
.card .rating .reviews-link {
    color: rgba(0, 0, 0, .6);
    margin-left: 5px;
}

.card .rating .reviews-link:hover {
    color: black;
}

.card .rating .reviews-link:focus {
    color: royalblue;
    outline: 3px dotted royalblue;
    outline-offset: 2px;
}

/* Hover state = add box shadow, underline the title */
.card:hover {
    border-color: rgba(0, 0, 0, .4);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
}

.card:hover .image img,
.card:focus .image img {
    filter: grayscale(0);
}

.card a:focus {
    outline: none;
}
.image2 img {
    max-width: 50%;
}

@media (max-width: 768px) {
    .image2 img {
        max-width: 70%;
    }
}

@media (max-width: 560px) {
    .image2 img {
        max-width: 90%;
    }
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.about_text_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.about_text_wrap:nth-child(odd) {
    flex-direction: row-reverse;
}
.about_text_wrap p {
    margin-bottom: 1em;
}
.col-about {
    width: 49%;
}
.about_img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    padding: 10px;
}
#modalText h4 {
    text-align: center;
    margin: 25px 0;
}
#info {
    padding-top: 7vw;
}

/* Responsive improvements for about text sections */
@media (max-width: 992px) {
    #info {
        padding-top: 10vw;
    }
    
    .text_about {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    #info {
        padding-top: 15vw;
    }
    
    .text_about h3,
    .text_about h4 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .text_about p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 560px) {
    #info {
        padding-top: 20vw;
    }
    
    .text_about h3,
    .text_about h4 {
        font-size: 1.1rem;
    }
    
    .text_about p {
        font-size: 0.9rem;
    }
    
    .about_img {
        max-width: 100%;
        padding: 5px;
    }
}
.product_link {
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--dark-two);
    line-height: 1.6;
    transition: all .35s ease;
}
.product_link:hover {
    color: var(--main-color);
}
@media(max-width:992px) {
    .col-about {
        width: 100%;
    }
    
    .about_text_wrap:nth-child(odd),
    .about_text_wrap {
        flex-direction: column;
    }
}
@media (max-width: 560px) {
    .container {
        padding: 0 15px;
    }
}

/*
     FILE ARCHIVED ON 13:36:07 Feb 20, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 04:59:23 Nov 15, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/

/*
playback timings (ms):
  captures_list: 0.443
  exclusion.robots: 0.018
  exclusion.robots.policy: 0.008
  esindex: 0.01
  cdx.remote: 4.961
  LoadShardBlock: 73.218 (3)
  PetaboxLoader3.datanode: 100.028 (5)
  load_resource: 166.057
  PetaboxLoader3.resolve: 104.912
  loaddict: 43.501
*/

[type="button"]{
    cursor: pointer
}

body input:focus:required:invalid,
body textarea:focus:required:invalid{
    border: 2px solid red;
}

body input:required:valid,
body textarea:required:valid{
   border: 2px solid green;
}