@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
:root {
    --color-primary: #D33233;
    --color-white: #ffffff;
    --color-dark-1: #333333;
    --color-dark-2: #313332;
    --color-dark-3: #222222;
    --color-light-grey: #F0F1F1;
    --color-light-grey-hover: #888787;
    --color-light-grey-2: #b9b9b9;
    --color-light-grey-2-hover: #999393;
    --color-black: #000000;
    --color-text: #474747;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--color-black);
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
}

p {
    line-height: 1.5!important;
}

.mt--32 {
    margin-top: 2rem!important;
}

.mt--36 {
    margin-top: 2.25rem!important;
}

.mt--56 {
    margin-top: 3.5rem!important;
}

.mt--72 {
    margin-top: 4.5rem!important;
}

.mt--96 {
    margin-top: 6rem!important;
}

.mt--128 {
    margin-top: 8rem!important;
}

.mb--20 {
    margin-bottom: 1.25rem!important;
}

.mb--30 {
    margin-bottom: 1.875rem!important;
}

.mb--32 {
    margin-bottom: 2rem!important;
}

.mb--40 {
    margin-bottom: 2.5rem!important;
}

.mb--72 {
    margin-bottom: 4.5rem!important;
}

.pt--48 {
    padding-top: 3rem!important;
}

.pb--48 {
    padding-bottom: 3rem!important;
}

.py--48 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
}

.pb--64 {
    padding-bottom: 4rem!important;
}

.py--64 {
    padding-top: 4rem!important;
    padding-bottom: 4rem!important;
}

.pt--80 {
    padding-top: 5rem!important;
}

.pb--80 {
    padding-bottom: 5rem!important;
}

.py--80 {
    padding-top: 5rem!important;
    padding-bottom: 5rem!important;
}

.h--58 {
    min-height: 58px!important;
}

.fs--12 {
    font-size: 12px!important;
}

.fs--14 {
    font-size: 14px!important;
}

.text-white {
    color: var(--color-white)!important;
}

.text-muted {
    color: var(--color-text)!important;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--color-primary);
}


/* cs-button */

.cs-button {
    display: flex;
    cursor: pointer;
}

.cs-button .icon {
    z-index: 2;
    padding: 1rem;
    border-radius: 1rem;
    background-color: var(--color-primary);
}

.cs-button .icon img {
    width: 26px;
    height: 26px;
}

.cs-button .text {
    margin-left: -2rem;
    border-radius: 1rem;
    color: var(--color-white);
    padding: 1rem 2rem 1rem 4rem;
    background-color: var(--color-dark-1);
}

.cs-button:hover .text {
    background-color: var(--color-primary);
}

.cs-content {
    width: 110px;
    height: 110px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-content .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-content .circle i {
    font-size: 2rem;
    color: var(--color-black);
}


/* form */

label {
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    border-radius: 0;
    border: none;
    padding: .5rem 0 .5rem 0;
    border-bottom: 1px solid #B5B5B5;
}

.form-control::placeholder {
    font-style: italic;
}

.form-control:active,
.form-control:focus,
.form-control:hover {
    box-shadow: none!important;
    border-bottom: 1px solid #B5B5B5;
}


/* card */

.card-list {
    border-color: transparent;
}

.card-list .card-body {
    gap: 2rem;
    display: flex;
}

.card-list .card-body .icon img {
    width: 140px;
    height: 140px;
}

.card-list .card-body .icon-sm img {
    width: 100px;
    height: 100px;
}

.card-list .card-body .info h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-list .card-body .info h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-list .card-body .info h6 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.card-list .card-body .logos {
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.card-list .card-body .logos img {
    max-height: 75px;
    max-width: 150px;
}

.card-product {
    border-radius: 0;
    border: 2px solid var(--color-light-grey);
}

.card-product .card-body .title {
    min-height: 48px;
}


/* stats */

.stats {
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.stats.about {
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center!important;
}

.stats.about .stat {
    flex: 40%
}

.stats .stat .number {
    font-weight: 700;
    color: var(--color-primary);
}


/* button */

.btn-primary {
    font-size: 18px;
    padding: .65rem 1.75rem;
    border-radius: 30px;
    color: var(--color-white);
    border-color: var(--color-dark-1);
    background-color: var(--color-dark-1);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    color: var(--color-white)!important;
    border-color: var(--color-dark-3)!important;
    background-color: var(--color-dark-3)!important;
}

.btn-outline-primary {
    font-size: 18px;
    padding: .65rem 1.75rem;
    border-radius: 30px;
    color: var(--color-dark-1);
    border-color: var(--color-dark-1);
}

.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
    color: var(--color-white)!important;
    border-color: var(--color-dark-1)!important;
    background-color: var(--color-dark-1)!important;
}

.bg-light-grey {
    background: var(--color-light-grey);
}

.bg-dark-2 {
    background: var(--color-dark-2);
}

.bg-dark-3 {
    background: var(--color-dark-3);
}


/* navbar */

.navbar {
    height: 80px;
}

.navbar .navbar-toggler {
    padding: 0;
    outline: none;
    border-color: transparent;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-toggler .navbar-toggler-icon {
    width: 1.75em;
    height: 1.75em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' fill='none' viewBox='0 0 20 12'%3e%3cpath stroke='black' stroke-linecap='round' stroke-width='1.667' d='M.833 1.167h18.334m-18.334 10h18.334m-18.334-5h17.989'/%3e%3c/svg%3e");
}

.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none' viewBox='0 0 26 26'%3e%3cpath stroke='%23181818' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.833' d='m19.5 6.5-13 13m0-13 13 13'/%3e%3c/svg%3e");
}

.navbar-brand {
    outline: 0;
    font-size: 1rem;
    font-weight: 600;
}

.navbar-brand img {
    margin-right: .5rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    outline: 0;
}

.navbar-nav .dropdown .dropdown-toggle i {
    font-size: .75rem;
}

.navbar-nav .dropdown .dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown .dropdown-menu {
    padding: .75rem 0;
    border-radius: 0;
    border-color: transparent;
    box-shadow: 0px 6px 25px rgba(111, 88, 88, 0.2);
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item {
    outline: 0;
    padding: .5rem 1rem;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item:active,
.navbar-nav .dropdown .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--color-white);
    background-color: var(--color-dark-1);
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    font-weight: 600;
    color: var(--color-primary);
}

.offcanvas {
    border-right: none!important;
}

.offcanvas .btn-close {
    opacity: 1;
    outline: 0;
}

.offcanvas .btn-close:focus {
    box-shadow: none;
}


/* hero */

.hero {
    min-height: 700px;
    position: relative;
}

.hero .buttons {
    display: flex;
    gap: 1rem;
}

.hero .logo-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.hero.product {
    min-height: 600px;
}

.hero.product .image {
    width: 100%;
    height: auto;
    min-width: 480px;
}

.hero.product .bg-overlay {
    position: absolute;
    top: -80px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero.services {
    min-height: 600px;
}

.hero.services .image {
    width: 100%;
    height: auto;
    min-width: 480px;
}

.hero.services .bg-overlay {
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    color: var(--color-white);
}

.hero.contact .bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.hero.contact .header {
    font-weight: 700;
    font-style: italic;
    margin: 1.25rem 0;
}

.hero.contact .description {
    font-weight: 300;
}

.hero.contact .cs-content {
    position: absolute;
    right: 45%;
    bottom: -10%;
}

.hero .header {
    font-weight: 700;
    font-style: italic;
    margin: 1.25rem 0;
    line-height: 1.3;
    font-style: normal;
    font-size: 24px!important;
    font-family: 'Playfair Display', serif;
}

.hero .icons {
    gap: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}


/* product-service */

.product-service .card {
    border-radius: 0;
    max-width: 500px;
    border: 2px solid var(--color-light-grey);
}

.product-service .card:hover {
    color: var(--color-white);
    background-color: var(--color-dark-1);
}

.product-service .card:hover .card-body .icon {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.product-service .card:hover .card-body .btn-outline-primary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.product-service .card:hover .card-body .btn-outline-primary:active,
.product-service .card:hover .card-body .btn-outline-primary:focus,
.product-service .card:hover .card-body .btn-outline-primary:hover {
    color: var(--color-dark-1)!important;
    border-color: var(--color-white)!important;
    background-color: var(--color-white)!important;
}

.product-service .card .card-body {
    padding: 2rem;
}

.product-service .card .card-body ul {
    margin-bottom: 2rem;
}

.product-service .card .card-body ul li {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
}

.product-service .card .card-body .header {
    gap: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.875rem;
}

.product-service .image {
    display: flex;
    align-items: center;
}

.product-service .image .illustrate {
    width: 100%;
    height: auto;
    max-width: 475px;
}


/* why-us */

.why-us {
    text-align: center;
}

.why-us .icon {
    width: 100%;
    height: auto;
    max-width: 120px;
}


/* projects */

.projects .card {
    height: 100%;
    border-radius: 0;
    border-color: var(--color-light-grey);
}

.projects .card .card-body .illustrate {
    width: 100%;
    height: auto;
}


/* clients */

.clients {
    text-align: center;
}

.clients .client-logo {
    padding: 0 2rem;
}

.clients .client-logo .logo {
    width: 100%;
    min-height: 60px;
    max-width: 175px;
    max-height: 95px;
}


/* contact */

.contact .info {
    gap: 1.5rem;
    display: flex;
    margin-top: 2.25rem;
    justify-content: center;
}

.contact.main .card {
    min-width: 350px;
}

.contact .card {
    border-radius: 0;
    min-width: 400px;
    color: var(--color-white);
    background-color: var(--color-dark-1);
}

.contact .card i {
    font-size: 2rem;
}

.contact iframe {
    width: 100%;
    height: 360px;
}

.contact-form .card {
    border-radius: 0;
    border-color: transparent;
    box-shadow: 0px 6px 25px rgba(111, 88, 88, 0.16);
}

.contact-form .card .card-body {
    padding: 2rem;
}

.contact-form h5 {
    color: var(--color-text);
}

.about .main {
    width: 100%;
    height: auto;
    max-width: 375px
}


/* mission-value */

.mission-value .mission {
    padding: 2rem;
    position: relative;
    background-color: var(--color-light-grey);
}

.mission-value .mission::after {
    content: '';
    top: 0;
    left: -90%;
    height: 100%;
    width: 280%;
    z-index: -1;
    position: absolute;
    background-color: var(--color-light-grey);
}

.mission-value .values {
    padding: 2rem;
    position: relative;
    color: var(--color-light-grey);
    background-color: var(--color-dark-2);
}

.mission-value .values::after {
    content: '';
    right: -20%;
    bottom: 0;
    height: 100%;
    width: 140%;
    z-index: -2;
    position: absolute;
    background-color: var(--color-dark-2);
}

.mission-value .header {
    gap: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.mission-value .header h2 {
    font-weight: 700;
    margin-bottom: 0;
}

.mission-value .info h5 {
    margin-bottom: 1.25rem;
}

.mission-value .info ul li {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}


/* analytic */

.analytic .image {
    width: 100%;
}


/* detail */

.detail .navigation {
    display: flex;
    width: fit-content;
    position: relative;
    align-items: center;
    margin-bottom: 2rem;
}

.detail .navigation a {
    color: var(--color-black);
    margin-bottom: 0;
}

.detail .header {
    font-weight: 600;
    margin-bottom: 2rem;
}

.detail .detail-illustration {
    width: 100%;
    height: auto;
    max-width: 320px;
    margin-bottom: .75rem;
}

.detail .detail-illustration-lg {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 1rem 0;
}


/* error page */

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
}

.error-page .image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.error-page .header {
    font-family: 'Playfair Display', serif;
}


/* footer */

footer {
    color: var(--color-light-grey-2);
}

footer .socials {
    gap: 1.5rem;
    display: flex!important;
    font-size: 1.75rem;
    margin-top: 1rem;
}

footer .socials a {
    color: var(--color-white);
}

footer .socials a:hover {
    color: var(--color-light-grey-2);
}

footer ul li a {
    color: var(--color-light-grey-2);
}

footer ul li a:hover {
    color: var(--color-light-grey-2-hover);
}

footer .logo {
    width: 100%;
    height: auto;
    max-width: 100px;
    margin-bottom: 1rem;
}

footer .description {
    line-height: 2;
}

footer ul li {
    padding: .3rem 0;
}

footer .copyright {
    font-size: 14px;
    padding: 1rem 0;
    text-align: center;
    text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-dark-2);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2rem;
}

.modal .modal-header {
    border-bottom: none;
}

.modal .modal-header .btn-close {
    outline: 0;
}

.modal .modal-header .btn-close:focus {
    box-shadow: none;
}

.modal .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: 0px 6px 25px rgba(111, 88, 88, 0.2);
}