:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: Mulish, sans-serif;
    --nav-font: Mulish, sans-serif
}

:root {
    --background-color: #E5FFF3;
    --default-color: #008C5E;
    --heading-color: #005A40;
    --accent-color: #FFC400;
    --surface-color: #D2F4EA;
    --contrast-color: #008080;
    --contrast2-color: #000000
}

:root {
    --nav-color: #ffffff;
    --nav-hover-color: #ffcc11;
    --nav-mobile-background-color: #008080;
    --nav-dropdown-background-color: #E5FFF3;
    --nav-dropdown-color: #005A40;
    --nav-dropdown-hover-color: #FFC400
}

.light-background {
    --background-color: #f4f7f6;
    --surface-color: #ffffff
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff
}

:root {
    scroll-behavior: smooth
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font)
}

a {
    color: var(--nav-dropdown-hover-color);
    text-decoration: none;
    transition: .3s
}

a:hover {
    color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 25%);
    text-decoration: none
}

.contact a {
    color: var(--nav-dropdown-color);
    text-decoration: none;
    transition: .3s
}

.contact a:hover {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    text-decoration: none
}

.footer a {
    color: var(--nav-color);
    text-decoration: none;
    transition: .3s
}

.footer a:hover {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 25%);
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font)
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all .5s;
    z-index: 997
}

.header .logo img {
    max-height: 50px;
    margin-right: 8px
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color)
}

.header .logo span {
    font-size: 24px;
    padding-left: 1px;
    font-family: var(--heading-font);
    color: var(--color-primary)
}

.scrolled .header {
    box-shadow: 0 0 18px rgba(0, 0, 0, .1)
}

.scrolled .header {
    --background-color: rgba(229, 255, 243);
    --heading-color: #3c3c3c;
    --nav-color: #3c3c3c;
    --nav-hover-color: #3c3c3c
}

@media (min-width:1200px) {
    .navmenu {
        padding: 0
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }

    .navmenu li {
        position: relative
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px
    }

    .navmenu>ul>li:last-child {
        padding-right: 0
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 20px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s;
        position: relative;
        text-transform: uppercase
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: .3s
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0;
        transition: all .3s ease-in-out 0s
    }

    .navmenu .active:before,
    .navmenu a:hover:before,
    .navmenu li:hover>a:before {
        visibility: visible;
        width: 100%
    }

    .navmenu .active,
    .navmenu .active:focus,
    .navmenu li:hover>a {
        color: var(--accent-color)
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: .3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0, 0, 0, .5)
    }

    .navmenu .dropdown ul li {
        min-width: 200px
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: var(--nav-dropdown-color)
    }

    .navmenu .dropdown ul a i {
        font-size: 12px
    }

    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible
    }
}

@media (max-width:1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: .3s;
        z-index: 9998
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: .3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color)
    }

    .navmenu .active,
    .navmenu .active:focus,
    .navmenu a:hover {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg)
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all .5s ease-in-out
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, .1)
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, .03)
    }

    .mobile-nav-active {
        overflow: hidden
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, .8);
        transition: .3s
    }

    .mobile-nav-active .navmenu>ul {
        display: block
    }
}

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    background-image: url({{'http://ukrspetspirt.com.ua/themes/ukrspetspirt/assets/images/footer-bg.jpg'|theme}}) top center no-repeat;
    background-size: cover;
    font-size: 14px;
    position: relative
}

.footer .container {
    position: relative
}

.footer:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    position: absolute;
    inset: 0
}

.footer .footer-top {
    padding-top: 50px
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font)
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: .3s
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color)
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px
}

.footer .footer-links {
    margin-bottom: 30px
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.footer .footer-links ul li:first-child {
    padding-top: 0
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1
}

.footer .footer-links ul a:hover {
    color: var(--accent-color)
}

.footer .footer-contact p {
    margin-bottom: 5px
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 30%)
}

.footer .copyright p {
    margin-bottom: 0
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all .6s ease-out
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all .4s
}

.scroll-top i {
    font-size: 24px;
    color: var(--default-color);
    line-height: 0
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color)
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px 0;
    text-align: center;
    position: relative
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 20%);
    position: absolute;
    inset: 0
}

.page-title h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 10px
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.section,
section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip
}

@media (max-width:1199px) {

    .section,
    section {
        scroll-margin-top: 76px
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative
}

.section-title h2:after,
.section-title h2:before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block
}

.section-title h2:before {
    margin: 0 15px 10px 0
}

.section-title h2:after {
    margin: 0 0 10px 15px
}

.section-title p {
    margin-bottom: 0;
    text-align: justify
}

.section-title2 p {
    margin-bottom: 0;
    text-align: center
}

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero .info {
    position: relative;
    inset: 0;
    z-index: 3;
    padding: 140px 0 60px 0
}

@media (max-width:768px),
(max-height:480px) {
    .hero .info {
        padding: 100px 50px 60px 50px
    }
}

.hero .info h2 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

@media (max-width:768px) {
    .hero .info h2 {
        font-size: 36px
    }
}

.hero .info p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px
}

.hero .info .btn-get-started {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    border: 2px solid var(--accent-color)
}

.hero .info .btn-get-started:hover {
    background: var(--accent-color)
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: .4s
}

.hero .carousel-item img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.hero .carousel-item::before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 60%);
    position: absolute;
    inset: 0;
    z-index: 2
}

.hero .carousel-control-prev {
    justify-content: start
}

@media (min-width:640px) {
    .hero .carousel-control-prev {
        padding-left: 15px
    }
}

.hero .carousel-control-next {
    justify-content: end
}

@media (min-width:640px) {
    .hero .carousel-control-next {
        padding-right: 15px
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: 0 0;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero .carousel-control-next,
.hero .carousel-control-prev {
    z-index: 3;
    transition: .3s
}

.hero .carousel-control-next:focus,
.hero .carousel-control-prev:focus {
    opacity: .5
}

.hero .carousel-control-next:hover,
.hero .carousel-control-prev:hover {
    opacity: .9
}

.alt-services .features-image {
    position: relative;
    min-height: 400px
}

.alt-services .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.alt-services h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.alt-services h3:after {
    content: "";
    background: var(--accent-color);
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    left: 0;
    bottom: 0
}

.alt-services .icon-box {
    margin-top: 50px
}

.alt-services .icon-box i {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .1);
    transition: .3s
}

.alt-services .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color)
}

.alt-services .icon-box h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px
}

.alt-services .icon-box h4 a {
    color: var(--heading-color);
    transition: .3s
}

.alt-services .icon-box h4 a:hover {
    color: var(--accent-color)
}

.alt-services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0
}

.alt-services-2 .features-image {
    position: relative;
    min-height: 400px
}

.alt-services-2 .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.alt-services-2 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.alt-services-2 h3:after {
    content: "";
    background: var(--accent-color);
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    left: 0;
    bottom: 0
}

.alt-services-2 .icon-box {
    margin-top: 30px
}

.alt-services-2 .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2
}

.alt-services-2 .icon-box h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px
}

.alt-services-2 .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0
}

.features .nav-tabs {
    border: 0
}

.features .nav-link {
    color: var(--heading-color);
    padding: 15px 0;
    transition: .3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0
}

@media (max-width:575px) {
    .features .nav-link h4 {
        font-size: 16px
    }
}

.features .nav-link:hover {
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.features .nav-link.active {
    background-color: var(--background-color);
    color: var(--accent-color);
    border-color: var(--accent-color)
}

.features .tab-content {
    margin-top: 30px
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 20px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0
}

.features .tab-pane ul {
    list-style: none;
    padding: 0
}

.features .tab-pane ul li {
    padding-top: 10px
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color)
}

.features .tab-pane p:last-child {
    margin-bottom: 0
}

.projects .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center
}

.projects .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all .3s ease-in-out
}

.projects .portfolio-filters li.filter-active,
.projects .portfolio-filters li:hover {
    color: var(--accent-color)
}

.projects .portfolio-filters li:first-child {
    margin-left: 0
}

.projects .portfolio-filters li:last-child {
    margin-right: 0
}

@media (max-width:575px) {
    .projects .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px
    }
}

.projects .portfolio-content {
    position: relative;
    overflow: hidden
}

.projects .portfolio-content img {
    transition: .3s
}

.projects .portfolio-content .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 3;
    transition: all ease-in-out .3s;
    background: rgba(0, 0, 0, .6);
    padding: 15px
}

.projects .portfolio-content .portfolio-info h4 {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    background-color: var(--accent-color)
}

.projects .portfolio-content .portfolio-info p {
    position: absolute;
    bottom: 10px;
    text-align: center;
    display: inline-block;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8)
}

.projects .portfolio-content .portfolio-info .details-link,
.projects .portfolio-content .portfolio-info .preview-link {
    position: absolute;
    left: calc(50% - 40px);
    font-size: 26px;
    top: calc(50% - 14px);
    color: #fff;
    transition: .3s;
    line-height: 1.2
}

.projects .portfolio-content .portfolio-info .details-link:hover,
.projects .portfolio-content .portfolio-info .preview-link:hover {
    color: var(--accent-color)
}

.projects .portfolio-content .portfolio-info .details-link {
    left: 50%;
    font-size: 34px;
    line-height: 0
}

.projects .portfolio-content:hover .portfolio-info {
    opacity: 1
}

.projects .portfolio-content:hover img {
    transform: scale(1.1)
}

.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 30px 0
}

@media (min-width:991px) {
    .about .inner-title {
        max-width: 65%;
        margin: 0 0 80px 0
    }
}

.about .our-story {
    padding: 30px;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%)
}

@media (min-width:991px) {
    .about .our-story {
        padding-right: 30px
    }
}

.about .our-story h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--accent-color), transparent 50%)
}

.about .our-story h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.about .our-story p:last-child {
    margin-bottom: 0
}

.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px
}

.about ul li {
    padding: 5px 0;
    display: flex;
    align-items: center
}

.about ul i {
    font-size: 1.25rem;
    margin-right: .5rem;
    line-height: 1.2;
    color: var(--accent-color)
}

.about .about-img {
    min-height: 400px;
    position: relative
}

@media (min-width:992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 100%
    }
}

.about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1
}

.project-details .portfolio-details-slider img {
    width: 100%
}

.project-details .swiper-wrapper {
    height: auto
}

.project-details .swiper-button-next,
.project-details .swiper-button-prev {
    width: 48px;
    height: 48px
}

.project-details .swiper-button-next:after,
.project-details .swiper-button-prev:after {
    color: rgba(255, 255, 255, .8);
    background-color: rgba(0, 0, 0, .15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.project-details .swiper-button-next:hover:after,
.project-details .swiper-button-prev:hover:after {
    background-color: rgba(0, 0, 0, .3)
}

@media (max-width:575px) {

    .project-details .swiper-button-next,
    .project-details .swiper-button-prev {
        display: none
    }
}

.project-details .swiper-pagination {
    margin-top: 20px;
    position: relative
}

.project-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1
}

.project-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color)
}

.project-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.project-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0
}

.project-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px
}

.project-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px
}

.project-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px
}

.project-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: .3s
}

.project-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.project-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px
}

.project-details .portfolio-description p {
    padding: 0
}

.project-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0
}

.project-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 5px 0;
    padding-top: 20px
}

.project-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1)
}

.project-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0
}

.contact .info-item {
    padding: 50px 0 30px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    min-height: 270px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all .3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--heading-color), transparent 40%);
}

.messengers-inline {
    display: inline-flex;
    /*margin-left: 8px;*/
}

.messengers-inline a.no-circle i {
    font-size: 18px;
    color: var(--heading-color); /* или любой нужный цвет */
    width: 24px;
    height: 24px;
    margin-left: 6px;
    vertical-align: middle;
    background: none;
    border: none;
    border-radius: 0;
    transition: color 0.3s ease;
}

.messengers-inline a.no-circle i:hover {
    color: var(--accent-color);
}

.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px
}

.contact .php-email-form {
  background-color: var(--background-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--contrast2-color);
  background-color: var(--nav-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
}

.contact .php-email-form button[type=submit] {
  color: var(--surface-color);
  background: var(--heading-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 20%);
}


.portfolio .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all .3s ease-in-out
}

.portfolio .portfolio-filters li.filter-active,
.portfolio .portfolio-filters li:hover {
    color: var(--accent-color)
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0
}

@media (max-width:575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px
    }
}

.portfolio .portfolio-content {
    background-color: var(--background-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    height: 100%;
    overflow: hidden
}

.portfolio .portfolio-content img {
    transition: .3s;
    position: relative;
    z-index: 1
}

.portfolio .portfolio-content .portfolio-info {
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600
}

.portfolio .portfolio-content .portfolio-info h4 a {
    color: var(--heading-color);
    transition: .3s
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
    color: var(--accent-color)
}

.portfolio .portfolio-content .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1)
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none
}

.timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    content: "";
    background-color: #e900ef
}

.timeline>li {
    position: relative;
    min-height: 50px;
    margin-bottom: 50px
}

.timeline>li:after,
.timeline>li:before {
    display: table;
    content: " "
}

.timeline>li:after {
    clear: both
}

.timeline>li .timeline-panel {
    position: relative;
    float: right;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0
}

.timeline>li .timeline-image {
    position: absolute;
    z-index: 100;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    text-align: center;
    color: #fff;
    border: 7px solid #e9ecef;
    border-radius: 100%;
    background-color: #ffc800
}

.timeline>li .timeline-image .h4,
.timeline>li .timeline-image h4 {
    font-size: 10px;
    line-height: 14px;
    margin-top: 12px
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0
}

.timeline>li:last-child {
    margin-bottom: 0
}

.timeline .timeline-heading .h4,
.timeline .timeline-heading h4 {
    margin-top: 0;
    color: inherit
}

.timeline .timeline-heading .subheading.h4,
.timeline .timeline-heading h4.subheading {
    text-transform: none
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0
}

/* @media (min-width:940px) {
    .lang {
        right:20px;
    }


} */
    

@media (min-width:768px) {
    .timeline:before {
        left: 50%
    }

    .timeline>li {
        min-height: 100px;
        margin-bottom: 100px
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 41%;
        padding: 0 20px 20px 30px;
        text-align: right
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px
    }

    .timeline>li .timeline-image .h4,
    .timeline>li .timeline-image h4 {
        font-size: 13px;
        line-height: 18px;
        margin-top: 16px
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left
    }

}

@media (min-width:992px) {
    .timeline>li {
        min-height: 150px
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px
    }

    .timeline>li .timeline-image .h4,
    .timeline>li .timeline-image h4 {
        font-size: 18px;
        line-height: 26px;
        margin-top: 30px
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px
    }
}

@media (min-width:1200px) {
    .timeline>li {
        min-height: 170px
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px 100px
    }

    .timeline>li .timeline-image {
        width: 170px;
        height: 170px;
        margin-left: -85px
    }

    .timeline>li .timeline-image .h4,
    .timeline>li .timeline-image h4 {
        margin-top: 40px
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 100px 20px 20px
    }
}

ul.timeline-3 {
    list-style-type: none;
    position: relative
}

ul.timeline-3:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400
}

ul.timeline-3>li {
    margin: 20px 0;
    padding-left: 20px
}

ul.timeline-3>li:before {
    content: ' ';
    background: #fff;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400
}

ul.language-switcher li {
    display: inline;
    list-style: none;
    padding-left: 15px;
}

ul.language-switcher li a {
    font-size: 20px;
}

ul.language-switcher li a:hover {
    color: var(--accent-color);
}

ul.language-switcher li {
    padding: 5px 7px;
    /*background: var(--background-color);*/
    border-radius: 5px;
    margin-left: 5px;
}

ul.language-switcher li a {
    color: var(--heading-color);
}
ul.language-switcher li a.active {
    color: var(--accent-color);
}


.lang {
    padding-top: 15px;
}

.language-switcher__item.active {
    color: var(--nav-hover-color); 
}