/* =========================================================
   A.M.OR - SIM-HUMANITAIRE
   PAGE D'ACCUEIL
   CSS DU CORPS
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --amor-red: #df1217;
    --amor-red-dark: #b70e13;

    --amor-black: #151515;
    --amor-dark: #202020;

    --amor-text: #333333;
    --amor-gray: #777777;
    --amor-light-gray: #999999;

    --amor-light: #f6f6f6;
    --amor-white: #ffffff;

    --amor-border: #e8e8e8;

}


/* =========================================================
   BASE
   ========================================================= */

.amor-home {

    width: 100%;

    overflow: hidden;

}


.amor-home *,
.amor-home *::before,
.amor-home *::after {

    box-sizing: border-box;

}


.amor-home a {

    text-decoration: none;

}


.amor-home a:hover,
.amor-home a:focus {

    text-decoration: none;

}


.amor-home img {

    max-width: 100%;

}


/* =========================================================
   HERO
   ========================================================= */

.amor-hero {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #151515;

}


.amor-hero .carousel {

    width: 100%;

}


.amor-hero .carousel-inner {
    position: relative;

    width: 100%;
    height: 720px;

    overflow: hidden;
}


/* =========================================================
   SLIDE
   ========================================================= */

.amor-hero .carousel-inner > .item {
    position: relative;

    width: 100%;
    height: 720px;

    overflow: hidden;
}

.amor-hero-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    display: block;

    object-fit: cover;
    object-position: center center;

    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   OVERLAY
   ========================================================= */

.amor-hero-overlay {

    position: absolute;

    z-index: 1;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.55) 25%,
            rgba(0, 0, 0, 0.38) 50%,
            rgba(0, 0, 0, 0.20) 75%,
            rgba(0, 0, 0, 0.08) 100%
        );

    pointer-events: none;
}

/* =========================================================
   CONTENU HERO
   ========================================================= */

.amor-hero-content {

    position: absolute;

    z-index: 3;

    top: 50%;

    left: 9%;

    width: 650px;

    max-width: 65%;

    padding-left: 28px;

    transform:
        translateY(-50%);

    border-left:
        3px solid var(--amor-red);

}


/* =========================================================
   CATEGORIE
   ========================================================= */

.amor-hero-tag {

    display: inline-block;

    margin-bottom: 20px;

    color:
        #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.amor-hero-tag::before {

    content: "";

    display: inline-block;

    width: 25px;

    height: 2px;

    margin-right: 10px;

    vertical-align: middle;

    background:
        var(--amor-red);

}


/* =========================================================
   TITRE HERO
   ========================================================= */

.amor-hero-content h1 {

    margin:
        0 0 22px;

    color:
        #ffffff;

    font-size:
        clamp(42px, 5.3vw, 72px);

    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -1px;

}


.amor-hero-content p {

    max-width: 620px;

    margin:
        0 0 32px;

    color:
        rgba(255,255,255,.88);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   BOUTON HERO
   ========================================================= */

.amor-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 23px;

    color:
        #ffffff;

    background:
        var(--amor-red);

    border:
        2px solid var(--amor-red);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

    transition:
        all .25s ease;

}


.amor-btn span {

    margin-left: 14px;

    font-size: 19px;

    line-height: 1;

    transition:
        margin .25s ease;

}


.amor-btn:hover {

    color:
        var(--amor-red);

    background:
        #ffffff;

    border-color:
        #ffffff;

}


.amor-btn:hover span {

    margin-left: 20px;

}


/* =========================================================
   CONTROLES DU CAROUSEL
   ========================================================= */

.amor-hero .carousel-control {
    position: absolute;

    top: 0;
    bottom: 0;

    z-index: 5;

    width: 70px !important;

    opacity: 1 !important;

    background: transparent !important;

    text-shadow: none;
}


/* =========================================================
   CONTROLE GAUCHE
   ========================================================= */

.amor-hero .carousel-control.left {
    left: 0 !important;
    right: auto !important;
}


/* =========================================================
   CONTROLE DROIT
   ========================================================= */

.amor-hero .carousel-control.right {
    right: 0 !important;
    left: auto !important;
}


/* =========================================================
   FLECHES
   ========================================================= */

.amor-hero .amor-arrow {

    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.25);

    border: 1px solid rgba(255, 255, 255, 0.35);

    font-size: 35px;

    font-weight: 300;

    line-height: 1;

    transform: translateY(-50%);

    transition: all 0.25s ease;
}


/* =========================================================
   FLECHE GAUCHE
   ========================================================= */

.amor-hero .carousel-control.left .amor-arrow {
    left: 0 !important;
    right: auto !important;
}


/* =========================================================
   FLECHE DROITE
   ========================================================= */

.amor-hero .carousel-control.right .amor-arrow {
    right: 0 !important;
    left: auto !important;
}


/* =========================================================
   HOVER
   ========================================================= */

.amor-hero .carousel-control:hover .amor-arrow {

    color: #ffffff;

    background: var(--amor-red);

    border-color: var(--amor-red);
}

/* =========================================================
   INDICATEURS
   ========================================================= */

.amor-hero .carousel-indicators {

    z-index: 5;

    bottom: 30px;

    left: 9%;

    width: auto;

    margin:
        0;

    text-align: left;

}


.amor-hero .carousel-indicators li {

    width: 25px;

    height: 3px;

    margin:
        0 5px 0 0;

    padding: 0;

    border: 0;

    border-radius: 0;

    background:
        rgba(255,255,255,.45);

    transition:
        width .3s ease,
        background .3s ease;

}


.amor-hero .carousel-indicators li.active {

    width: 55px;

    background:
        var(--amor-red);

}


/* =========================================================
   ANIMATION HERO
   ========================================================= */

.amor-hero .item .amor-hero-content {

    opacity: 0;

}


.amor-hero .item.active .amor-hero-content {

    opacity: 1;

    animation:
        amorHeroContent .8s ease forwards;

}


@keyframes amorHeroContent {

    from {

        opacity: 0;

        transform:
            translateY(-42%);

    }

    to {

        opacity: 1;

        transform:
            translateY(-50%);

    }

}


/* =========================================================
   LABEL COMMUN
   ========================================================= */

.amor-label {

    position: relative;

    display: inline-flex;

    align-items: center;

    margin-bottom: 17px;

    color:
        var(--amor-red);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}


.amor-label::before {

    content: "";

    width: 30px;

    height: 2px;

    margin-right: 10px;

    background:
        var(--amor-red);

}


/* =========================================================
   SECTION INTRODUCTION
   ========================================================= */

.amor-about {

    padding:
        105px 0;

    background:
        var(--amor-white);

}


.amor-about h2 {

    max-width: 480px;

    margin:
        0;

    color:
        var(--amor-black);

    font-size:
        clamp(32px, 4vw, 48px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -.5px;

}


.amor-about h2 span {

    display: block;

    color:
        var(--amor-red);

}


.amor-about-text {

    max-width: 650px;

}


.amor-about-text p {

    margin:
        0 0 18px;

    color:
        var(--amor-gray);

    font-size: 14px;

    line-height: 1.9;

}


.amor-link {

    display: inline-flex;

    align-items: center;

    margin-top: 12px;

    color:
        var(--amor-red);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.amor-link span {

    margin-left: 13px;

    font-size: 18px;

    transition:
        margin .25s ease;

}


.amor-link:hover {

    color:
        var(--amor-red-dark);

}


.amor-link:hover span {

    margin-left: 20px;

}


/* =========================================================
   CHIFFRES
   ========================================================= */

.amor-numbers {

    padding:
        55px 0;

    background:
        var(--amor-black);

}


.amor-number {

    position: relative;

    min-height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    padding:
        15px 25px;

    text-align: center;

}


.amor-number::after {

    content: "";

    position: absolute;

    top: 10px;

    right: 0;

    width: 1px;

    height: 100px;

    background:
        rgba(255,255,255,.12);

}


.amor-number:last-child::after {

    display: none;

}


.amor-number strong {

    display: block;

    margin-bottom: 10px;

    color:
        #ffffff;

    font-size: 39px;

    font-weight: 700;

    line-height: 1;

}


.amor-number span {

    max-width: 190px;

    color:
        rgba(255,255,255,.58);

    font-size: 9px;

    font-weight: 400;

    line-height: 1.6;

    letter-spacing: .8px;

    text-transform: uppercase;

}


/* =========================================================
   TITRES DE SECTIONS
   ========================================================= */

.amor-heading {

    max-width: 700px;

    margin:
        0 auto 55px;

    text-align: center;

}


.amor-heading .amor-label {

    justify-content: center;

}


.amor-heading h2 {

    margin:
        0 0 17px;

    color:
        var(--amor-black);

    font-size:
        clamp(31px, 4vw, 45px);

    font-weight: 700;

    line-height: 1.15;

}


.amor-heading p {

    margin:
        0;

    color:
        var(--amor-gray);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   NOS ACTIONS
   ========================================================= */

.amor-actions {

    padding:
        105px 0;

    background:
        var(--amor-light);

}


.amor-action-card {

    position: relative;

    height: 100%;

    min-height: 300px;

    padding:
        38px 32px;

    background:
        #ffffff;

    border:
        1px solid var(--amor-border);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.amor-action-card::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 3px;

    background:
        var(--amor-red);

    transition:
        width .3s ease;

}


.amor-action-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(223,18,23,.20);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.08);

}


.amor-action-card:hover::after {

    width: 100%;

}


/* =========================================================
   ICONES
   ========================================================= */

.amor-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

    color:
        var(--amor-red);

    background:
        rgba(223,18,23,.08);

    border-radius: 50%;

    font-size: 25px;

    transition:
        all .3s ease;

}


.amor-action-card:hover .amor-icon {

    color:
        #ffffff;

    background:
        var(--amor-red);

}


.amor-action-card h3 {

    margin:
        0 0 14px;

    color:
        var(--amor-black);

    font-size: 21px;

    font-weight: 700;

}


.amor-action-card p {

    margin:
        0 0 20px;

    color:
        var(--amor-gray);

    font-size: 13px;

    line-height: 1.8;

}


.amor-action-card > a {

    display: inline-flex;

    align-items: center;

    color:
        var(--amor-red);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.amor-action-card > a span {

    margin-left: 10px;

    font-size: 17px;

}


/* =========================================================
   PROJETS
   ========================================================= */

.amor-projects {

    padding:
        105px 0;

    background:
        #ffffff;

}


.amor-project {

    display: block;

    height: 100%;

    margin-bottom: 30px;

    overflow: hidden;

    background:
        #ffffff;

    border:
        1px solid var(--amor-border);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.amor-project:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.10);

}


/* =========================================================
   IMAGE PROJET
   ========================================================= */

.amor-project-image {

    position: relative;

    height: 260px;

    overflow: hidden;

}


.amor-project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.amor-project:hover .amor-project-image img {

    transform:
        scale(1.07);

}


/* =========================================================
   OVERLAY PROJET
   ========================================================= */

.amor-project-overlay {

    position: absolute;

    z-index: 2;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(223,18,23,.85);

    opacity: 0;

    transition:
        opacity .3s ease;

}


.amor-project:hover .amor-project-overlay {

    opacity: 1;

}


.amor-project-overlay span {

    color:
        #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* =========================================================
   CONTENU PROJET
   ========================================================= */

.amor-project-body {

    padding:
        27px 28px 30px;

}


.amor-project-body > span {

    display: block;

    margin-bottom: 10px;

    color:
        var(--amor-red);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


.amor-project-body h3 {

    margin:
        0 0 12px;

    color:
        var(--amor-black);

    font-size: 22px;

    font-weight: 700;

}


.amor-project-body p {

    margin:
        0;

    color:
        var(--amor-gray);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   BOUTON CENTRE
   ========================================================= */

.amor-center {

    margin-top: 25px;

    text-align: center;

}


.amor-dark-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 25px;

    color:
        #ffffff;

    background:
        var(--amor-black);

    border:
        2px solid var(--amor-black);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

    transition:
        all .25s ease;

}


.amor-dark-btn span {

    margin-left: 13px;

    font-size: 18px;

}


.amor-dark-btn:hover {

    color:
        #ffffff;

    background:
        var(--amor-red);

    border-color:
        var(--amor-red);

}


/* =========================================================
   SECTION 17 ODD
   ========================================================= */

.amor-odd {

    position: relative;

    overflow: hidden;

    padding:
        105px 0;

    color:
        #ffffff;

    background:
        var(--amor-black);

}


.amor-odd::before {

    content: "";

    position: absolute;

    top: -250px;

    right: -250px;

    width: 600px;

    height: 600px;

    border:
        1px solid rgba(255,255,255,.05);

    border-radius: 50%;

}


.amor-odd .amor-label {

    color:
        #ffffff;

}


.amor-odd .amor-label::before {

    background:
        var(--amor-red);

}


.amor-odd h2 {

    max-width: 650px;

    margin:
        0 0 25px;

    color:
        #ffffff;

    font-size:
        clamp(32px, 4vw, 49px);

    font-weight: 700;

    line-height: 1.12;

}


.amor-odd h2 span {

    color:
        var(--amor-red);

}


.amor-odd p {

    max-width: 620px;

    margin:
        0 0 30px;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================================
   CERCLE 17
   ========================================================= */

.amor-odd-circle {

    position: relative;

    z-index: 2;

    width: 290px;

    height: 290px;

    margin:
        0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 50%;

}


.amor-odd-circle::before {

    content: "";

    position: absolute;

    width: 225px;

    height: 225px;

    border:
        1px solid rgba(223,18,23,.45);

    border-radius: 50%;

}


.amor-odd-circle strong {

    position: relative;

    z-index: 2;

    color:
        var(--amor-red);

    font-size: 110px;

    font-weight: 700;

    line-height: .8;

}


.amor-odd-circle span {

    position: relative;

    z-index: 2;

    margin-top: 22px;

    color:
        #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


/* =========================================================
   AMOR MONDE
   ========================================================= */

.amor-world {

    padding:
        105px 0;

    background:
        var(--amor-light);

}


.amor-world-box {

    height: 100%;

    padding:
        45px;

    background:
        #ffffff;

}


.amor-world-box h2 {

    max-width: 500px;

    margin:
        0 0 22px;

    color:
        var(--amor-black);

    font-size:
        clamp(30px, 3.8vw, 45px);

    font-weight: 700;

    line-height: 1.12;

}


.amor-world-box h2 span {

    display: block;

    color:
        var(--amor-red);

}


.amor-world-box p {

    max-width: 520px;

    margin:
        0 0 20px;

    color:
        var(--amor-gray);

    font-size: 14px;

    line-height: 1.9;

}


.amor-world-image {

    height: 100%;

    min-height: 370px;

    overflow: hidden;

}


.amor-world-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.amor-world-image:hover img {

    transform:
        scale(1.04);

}


/* =========================================================
   SECTION ENGAGEMENT
   ========================================================= */

.amor-join {

    position: relative;

    overflow: hidden;

    padding:
        110px 0;

    background:
        linear-gradient(
            135deg,
            #df1217 0%,
            #a90e13 100%
        );

}


.amor-join::before {

    content: "";

    position: absolute;

    top: -250px;

    left: -250px;

    width: 600px;

    height: 600px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

}


.amor-join::after {

    content: "";

    position: absolute;

    right: -180px;

    bottom: -250px;

    width: 550px;

    height: 550px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

}


.amor-join-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin:
        0 auto;

    text-align: center;

}


.amor-join .amor-label {

    color:
        #ffffff;

}


.amor-join .amor-label::before {

    background:
        #ffffff;

}


.amor-join h2 {

    margin:
        0 0 20px;

    color:
        #ffffff;

    font-size:
        clamp(35px, 5vw, 55px);

    font-weight: 700;

    line-height: 1.08;

}


.amor-join p {

    max-width: 620px;

    margin:
        0 auto 30px;

    color:
        rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   BOUTONS ENGAGEMENT
   ========================================================= */

.amor-join-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

}


.amor-join .amor-btn {

    color:
        var(--amor-red);

    background:
        #ffffff;

    border-color:
        #ffffff;

}


.amor-join .amor-btn:hover {

    color:
        #ffffff;

    background:
        var(--amor-black);

    border-color:
        var(--amor-black);

}


.amor-light-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 22px;

    color:
        #ffffff;

    background:
        transparent;

    border:
        2px solid rgba(255,255,255,.65);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;

    transition:
        all .25s ease;

}


.amor-light-btn:hover {

    color:
        var(--amor-red);

    background:
        #ffffff;

    border-color:
        #ffffff;

}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 991px) {


    .amor-hero .item {

        height: 650px;

        min-height: 650px;

    }


    .amor-hero-content {

        left: 7%;

        max-width: 75%;

    }


    .amor-hero-content h1 {

        font-size: 52px;

    }


    .amor-about,
    .amor-actions,
    .amor-projects,
    .amor-odd,
    .amor-world {

        padding:
            80px 0;

    }


    .amor-about .col-md-5 {

        margin-bottom: 35px;

    }


    .amor-action-card {

        margin-bottom: 25px;

    }


    .amor-number {

        margin-bottom: 15px;

    }


    .amor-number::after {

        display: none;

    }


    .amor-world-box {

        margin-bottom: 25px;

    }


    .amor-world-image {

        min-height: 320px;

    }


    .amor-odd-circle {

        margin-top: 50px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {


    /* HERO */

    .amor-hero .item {
        height: 580px;
        min-height: 0;
        max-height: none;
    }

    .amor-hero-image {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover;
        object-position: center;
    }



    .amor-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.82),
                rgba(0,0,0,.48)
            );

    }


    .amor-hero-content {

        top: 50%;

        left: 20px;

        right: 20px;

        width: auto;

        max-width: none;

        padding-left: 18px;

    }


    .amor-hero-content h1 {

        font-size: 39px;

        line-height: 1.05;

    }


    .amor-hero-content p {

        font-size: 13px;

        line-height: 1.7;

    }


    .amor-hero-tag {

        font-size: 8px;

        letter-spacing: 1.3px;

    }


    .amor-control {

        display: none;

    }


    .amor-hero .carousel-indicators {

        bottom: 20px;

        left: 20px;

    }


    /* ABOUT */

    .amor-about {

        padding:
            70px 0;

    }


    .amor-about h2 {

        font-size: 35px;

    }


    /* NUMBERS */

    .amor-numbers {

        padding:
            45px 0;

    }


    .amor-number {

        min-height: 90px;

    }


    .amor-number strong {

        font-size: 34px;

    }


    /* SECTIONS */

    .amor-actions,
    .amor-projects,
    .amor-odd,
    .amor-world {

        padding:
            70px 0;

    }


    .amor-heading {

        margin-bottom: 40px;

    }


    .amor-heading h2 {

        font-size: 32px;

    }


    /* ACTIONS */

    .amor-action-card {

        min-height: auto;

        margin-bottom: 20px;

        padding:
            30px 25px;

    }


    /* PROJECTS */

    .amor-project-image {

        height: 230px;

    }


    /* ODD */

    .amor-odd h2 {

        font-size: 34px;

    }


    .amor-odd-circle {

        width: 220px;

        height: 220px;

    }


    .amor-odd-circle::before {

        width: 175px;

        height: 175px;

    }


    .amor-odd-circle strong {

        font-size: 80px;

    }


    /* WORLD */

    .amor-world-box {

        padding:
            30px 25px;

    }


    .amor-world-box h2 {

        font-size: 34px;

    }


    .amor-world-image {

        min-height: 250px;

    }


    /* JOIN */

    .amor-join {

        padding:
            75px 20px;

    }


    .amor-join h2 {

        font-size: 37px;

    }


    .amor-join-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .amor-join-buttons .amor-btn,
    .amor-join-buttons .amor-light-btn {

        width: 100%;

    }

}


/* =========================================================
   PETIT MOBILE
   ========================================================= */

@media (max-width: 480px) {


    .amor-hero .item {

        height: 560px;

        min-height: 560px;

    }


    .amor-hero-content {

        left: 15px;

        right: 15px;

        padding-left: 15px;

    }


    .amor-hero-content h1 {

        font-size: 34px;

    }


    .amor-hero-content p {

        font-size: 12px;

    }


    .amor-hero .carousel-indicators li {

        width: 18px;

    }


    .amor-hero .carousel-indicators li.active {

        width: 40px;

    }


    .amor-project-image {

        height: 205px;

    }


    .amor-project-body {

        padding:
            23px;

    }


    .amor-odd-circle {

        width: 190px;

        height: 190px;

    }


    .amor-odd-circle::before {

        width: 150px;

        height: 150px;

    }


    .amor-odd-circle strong {

        font-size: 68px;

    }


    .amor-odd-circle span {

        margin-top: 15px;

        font-size: 10px;

    }


}