@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-BoldIt.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-BoldIt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-Bold.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-ExtraLightIt.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-ExtraLightIt.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-It.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-It.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-ExtraLight.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-ExtraBold.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-Light.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-ExtraBoldIt.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-ExtraBoldIt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-LightIt.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-LightIt.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-Medium.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-Regular.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('fonts/TTRamillasTrl-MediumIt.woff2') format('woff2'),
    url('fonts/TTRamillasTrl-MediumIt.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas Trl Variable';
    src: url('fonts/TTRamillasTrlVariableItalic.woff2') format('woff2'),
    url('fonts/TTRamillasTrlVariableItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #191919;
    border-top-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #191919;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top svg {
    width: 15px;
    fill: #fff;
}

.back-to-top:hover {
    background: #800020;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* topbar */
#topbar {
    background: #EBEBEB;
}
.header-info {
    width: 100%;
    justify-content: space-between;
}
.header-logo {
    padding-top: 40px;
}
.header-slogan {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 118%; /* 82.6px */
    max-width: 530px;
    padding-top: 115px;
    padding-bottom: 75px;
}
.fs-middle {
    font-weight: 700;
}
.fs-italic {
    font-style: italic;
}
.block-relative {
    position: relative;
}
.mg50 {
    margin-top: 50px;
}
.mg80 {
    margin-top: 80px;
}
.mg150 {
    margin-top: 150px;
}
.pt0 {
    padding-top: 0;
}
.button-elem {
    cursor: pointer;
}
/*.button-elem:hover > svg {*/
/*    fill: orange;*/
/*}*/
.header-button-work {
    display: flex;
    align-items: self-end;
    padding-bottom: 92px;
}
.arrow-elem {
    cursor: pointer;
    margin: 0 20px 10px 0;
}
.arrow-elem:hover path {
    stroke: #800020;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
header {
    background: #191919;
}
.navbar {
    padding: 0;
    width: 100%;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 30px 10px 30px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: TT Interphases Pro Trl Variable;
    font-size: 18px;
    color: #EBEBEB;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #fff;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

#hero {
    width: 100%;
    height: 499px;
    position: relative;
}

#hero > .container {
    height: 499px;
    background: url("./images/services-bg.jpg") top left;
    background-size: cover;
}
#hero:before {
    content: "";
    background: #ebebeb;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #222222;
    font-family: "Poppins", sans-serif;
}

#hero h1 span {
    color: #106eea;
}

#hero h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #106eea;
}

#hero .btn-get-started:hover {
    background: #247cf0;
}

#hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222222;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#hero .btn-watch-video i {
    color: #106eea;
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

#hero .btn-watch-video:hover {
    color: #106eea;
}

#hero .btn-watch-video:hover i {
    color: #3b8af2;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .btn-get-started,
    #hero .btn-watch-video {
        font-size: 13px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/* who */
.who-we {
    padding-top: 115px;
}
.who-description-title {
    max-width: 690px;
    padding-bottom: 15px;
}
.who-description h3 {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 75.25px */
}
.who-description p {
    color: #000;

    font-family: TT Interphases Pro Trl Variable;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.who-btn-content {
    padding: 140px 0 70px;
}
.button-imitate {
    position: relative;
    width: 100%;
    text-align: center;
    border: 1px solid #000;
    border-radius: 30px;
    height: 74px;
    justify-content: center;
    display: grid;
    align-content: center;
}
.button-imitate svg {
    position: relative;
}
.who-btn-content .who-content {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    row-gap: 45px;
}
/* projects */
.our-project {
    padding-top: 70px;
}
.our-project h2 {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 75.25px */
}
.project-name {
    padding: 25px 0 20px;
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 24.725px */
}
.project-name.pt0 {
    padding-top: 0;
}

.project-description {
    color: #191919;
    font-family: TT Interphases Pro Trl Variable;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.project-ui {
    position: absolute;
    bottom: -30px;
    right: -50px;
}
.our-project .arrow-elem {
    position: absolute;
    bottom: 0;
    right: 0;
}
.btn-readmore,
.btn-readmore-hide {
    cursor: pointer;
}
.project-sub-name {
    padding-bottom: 20px;
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 24.725px */
}
.hidden-elem-gabbiano {
    padding-top: 150px;
    padding-bottom: 70px;
}
.project-description p {
    margin-bottom: 1.5rem;
}
.project-description a {
    color: #000;
}
.project-description a:hover {
    text-decoration: none;
}
.hidden-elem-gabbiano,
.hidden-elem-damato {
    display: none;
}
.hidden-elem-gabbiano.active,
.hidden-elem-damato.active {
    display: block;
}
/*team */
#team {
    padding-top: 70px;
}
#team .section-title {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%;
    padding-bottom: 30px;
}
#team .section-title svg {
    position: absolute;
    top: 10px;
    right: 30px;
}
.member-img img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: 0.5s;
}
.member-img:hover img {
    -webkit-filter: grayscale(0);
    filter: none;
    transition: 0.5s;
}
.member-info {
    padding-top: 30px;
    width: 92%;
}
.member-name {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 35px;
    font-style: italic;
    font-weight: 400;
    line-height: 107.5%; /* 37.625px */
    padding-bottom: 10px;
}
.member-info > span {
    color: #191919;
    font-family: TT Interphases Pro Trl Variable;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 24.725px */
}
.hr {
    padding-top: 20px;
    padding-bottom: 70px;
}
/* pricing */
.pricing {
    padding-top: 70px;
}
.pricing .section-title {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%;
    padding-bottom: 40px;
    text-align: center;
}
.pricing .section-title svg {
    position: absolute;
    left: 0;
    top: 10px;
}
.pricing .button-imitate {
    cursor: pointer;
}
.pricing .button-imitate.active {
    background: #f9f9f9;
}
.pricing-title {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 24.725px */
    padding-bottom: 40px;
}
.pricing-description {
    color: #191919;
    font-family: TT Interphases Pro Trl Variable;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.essential-data, .professional-data, .market-data {
    display: none;
}
.essential-data.active, .professional-data.active, .market-data.active {
    display: block;
}
/* blog */
.blog {
    padding-top: 70px;
}
.blog .section-title {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%;
    padding-bottom: 65px;
    text-align: right;
}
.blog-title {
    padding-top: 80px;
    padding-bottom: 20px;
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%;
}
.hidden-elem-blog,
.hidden-elem-blog-t {
    display: none;
}
.hidden-elem-blog.active,
.hidden-elem-blog-t.active {
    display: block;
}
/* footer */
#footer {
    background: #191919;
    margin-top: 70px;
}
.footer-newsletter {
    padding-top: 70px;
    padding-bottom: 30px;
    text-align: center;
}
.footer-newsletter h4 {
    color: #191919;
    font-family: TT Ramillas Trl;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 53.75px */
    padding: 30px 0 100px
}
.footer-newsletter form {
    display: inline-block;
    width: 80%;
}
.footer-newsletter button {
    margin-top: 15px;
    border-radius: 30px;
    border: 1px solid #191919;
    padding: 10px 20px;
    width: 220px;
    transition: 0.3s;
}
.footer-newsletter button:hover {
    background: #191919;
    color: #EBEBEB;
    transition: 0.3s;
}
.footer-newsletter input {
    border: none;
    border-bottom: 1px solid #191919;
    background: inherit;
    width: 100%;
    margin-bottom: 60px;
}
.newsletter-bg {
    background: #EBEBEB;
    padding-bottom: 50px;
}
.php-email-form .error-message {
    display: none;
    color: #fff;
    background: #820020;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.php-email-form .error-message br+br {
    margin-top: 25px;
}

.php-email-form .sent-message {
    display: none;
    color: #191919;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}
.footer-top .slogan {
    color: #EBEBEB;
    font-family: TT Ramillas Trl;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.5%; /* 75.25px */
}
.contact-block {
    color: #EBEBEB;
    font-family: TT Interphases Pro Trl Variable;
    font-size: 18px;
    font-style: normal;
    font-weight: 250;
    line-height: 107.5%; /* 19.35px */
}
.contact-block ul {
    list-style: none;
    padding: 0;
}
.contact-block li {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    gap: 50px;
}
.footer-contacts {
    display: flex;
    align-items: end;
}
.footer-bottom {
    text-align: center;
    padding:  50px 0 30px;
}
.social-links {
    gap: 25px;
}
.social-links a:hover path {
    fill: #800020;
}