
/* -------------------------------------------------
	
	01 . IMPORT
	02 . BASE
	03 . HERO
	04 . POPUP
	05 . CAROUSEL
	06 . HOME INTRO
	07 . HOME GRID
	08 . NEWSLETTER
	09 . PAGE FOOTER
	10 . xxxxxx
	
------------------------------------------------- */





/* ////////////////////////////////////////////////////////////////////////////

    01 . IMPORT

//////////////////////////////////////////////////////////////////////////// */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap'); */

@import url('libs/magnific-popup.css');

@import url('interface.css');
@import url('form.css');

/* PRO */
@import url('pro.css');

@import url('about.css');
@import url('infos.css');

:root {

    --site-width: 1530px;
    
    /* --font-text: 'Bricolage Grotesque', sans-serif; */
    --font-text: 'Poppins', sans-serif;

    --color-bg: #FAFAFA; /* rgba(250,250,250,1); */
    --color-dark: #002241; /* rgba(0,34,65,1); */
    --color-light: #FFF; /* rgba(255,255,255,1); */

    --color-primary-1: #BB1E10; /* rgba(187,30,16,1); */
    --color-primary-2: #ED6B21; /* rgba(237,107,33,1); */
    --color-primary-3: #FACA30; /* rgba(250,202,48,1); */
    --color-primary-4: #6FA04F; /* rgba(111,160,79,1); */
    --color-primary-5: #005B8C; /* rgba(0,91,140,1); */
    --color-primary-6: #C4618C; /* rgba(196,97,140,1); */

    --color-grey-dark: #262626;     /* rgba(38,38,38,1) */
    --color-grey: #737373;          /* rgba(115,115,115,1) */
    --color-grey-light: #D4D4D4;    /* rgba(212,212,212,1) */
    --color-grey-xlight: #F5F5F5;   /* rgba(245,245,245,1) */
    --color-grey-xxlight: #FAFAFA;  /* rgba(250,250,250,1) */

    --line-dark: rgba(0,34,65,.15);
    --line-light: rgba(255,255,255,.15);
    --line-form: rgba(0,34,65,.15);

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 2em;

}





/* ////////////////////////////////////////////////////////////////////////////

    02 . BASE

//////////////////////////////////////////////////////////////////////////// */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    color: var(--color-dark);
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.45;
    overflow-x: hidden!important;
    /* text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}
body.open {
    overflow-y: hidden!important;
    touch-action: none!important;
}

/* SCROLLBAR */
body::-webkit-scrollbar { display: none; }
html { margin: 0!important; }

/* LIENS */
a {
	color: var(--color-dark);
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
    -webkit-tap-highlight-color: transparent!important;
}
.no-touch a:hover { color: var(--color-dark); outline:0; text-decoration:none; }

a[href^=tel]{
    color: inherit!important;
    text-decoration: inherit!important;
    font-size: inherit!important;
    font-style: inherit!important;
    font-weight: inherit!important;
}

/* TEXTE */
br { font-size: 0; line-height: 0; }
strong, b { font-weight: 600; }

/* IMAGE */
img { position: relative; max-width: 100%; height: auto; user-select: none; -webkit-user-drag: none; -ms-interpolation-mode: bicubic; vertical-align: middle; }

/* LISTES */
ol, ul { margin: 0; padding: 0; list-style: none; }

/* PARAGRAPHES */
p { margin: 0 0 10px 0; padding: 0; }
p:last-child { margin: 0; }

/* TITRES */
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	margin: 0;
	padding: 0;
    font-weight: normal;
}

/* PADDING */
.no-padding { padding:0; }





/* ////////////////////////////////////////////////////////////////////////////

	03 . HERO

//////////////////////////////////////////////////////////////////////////// */

.hero {
    position: relative;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: calc(100vh);
    background-color: var(--color-dark);
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-primary-6);
}
.hero-inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,34,65,.9) 0%, rgba(0,34,65,.5) 100%);
}

/* ----- caption ----- */
.hero_caption {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc(var(--site-width) + 30px);
    margin: 0 auto;
    padding: 120px 30px 0 30px;
}
.hero_caption-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-light);
    text-align: center;
}
.hero_caption h1 {
    position: relative;
    font-size: 66px;
    text-transform: uppercase;
    line-height: 1.05;
    font-weight: 700;
}
.hero_caption h2 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

@media only screen and (max-width: 992px) {
    .hero_caption {
        padding: 80px 15px 0 15px;
    }
    .hero .hero_caption h1 {
        font-size: 40px;
    }
    .hero .hero_caption h2 {
        font-size: 16px;
    }
}

/* ----- image ----- */
.hero_image {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: var(--color-primary-6);
}
.hero_image img {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(65%) grayscale(100%) saturate(150%);
    mix-blend-mode: luminosity;
    will-change: transform;
}

/* ----- video ----- */
.hero_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: var(--color-primary-6);
}
.hero_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    background-size: cover;
    filter: brightness(65%) grayscale(100%) saturate(150%);
    mix-blend-mode: luminosity;
}


/* -------------------------------------------
    HERO - HALF
------------------------------------------- */
.hero.half {
    /* overflow: hidden;
    border-radius: 0 0 40px 40px; */
    height: calc(72vh);
    background-color: var(--color-dark);
}
.hero.half .hero_caption {
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0 30px 50px 30px;
}
.hero.half .hero_caption-inner {
    gap: 15px;
    max-width: 750px;
    margin: 0;
    text-align: inherit;
}
.hero.half .hero_caption h1 {
    font-size: 60px;
}
.hero.half .hero_caption h2 {
    font-size: 18px;
}

@media only screen and (max-width: 992px) {
    .hero.half {
        height: calc(60vh);
    }
    .hero.half .hero_caption {
        padding: 0 15px 50px 15px;
    }
    .hero.half .hero_caption h1 {
        font-size: 40px;
    }
    .hero.half .hero_caption h2 {
        font-size: 16px;
    }
}


/* -------------------------------------------
    HERO - HOME
------------------------------------------- */
.hero.home .hero_caption-inner {
    max-width: 850px;
}
.hero.home .hero_caption h1 {
    font-weight: 300;
}
.hero.home .hero_caption h1 strong {
    font-weight: 700;
}
.hero.home .hero_caption h2 {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
}

@media only screen and (max-width: 992px) {
    .hero.home .hero_caption h1 {
        font-size: 46px;
    }
    .hero.home .hero_caption h1 br {
        display: none;
    }
    .hero.home .hero_caption h2 {
        font-size: 18px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	04 . POPUP

//////////////////////////////////////////////////////////////////////////// */

/* ----- animation zoom ----- */
.mfp-zoom-in .mfp-with-anim { opacity: 0; transition: all 0.2s ease-in-out; transform: scale(0.9); }
.mfp-zoom-in.mfp-bg { opacity: 0; transition: all 0.2s ease-out; background: rgba(17,24,32,1); }
.mfp-zoom-in.mfp-ready .mfp-with-anim { opacity: 1; transform: scale(1); }
.mfp-zoom-in.mfp-ready.mfp-bg { opacity: .75; }
.mfp-zoom-in.mfp-removing .mfp-with-anim { transform: scale(0.9); opacity: 0; }
.mfp-zoom-in.mfp-removing.mfp-bg { opacity: 0; }

/* ----- popup ----- */
.popup {
    position: relative;
    background: var(--color-light);
    color: var(--color-dark);
    padding: 0;
    width: auto;
    max-width: 700px;
    margin: 10px auto;
    border-radius: 0;
}
.popup-inner {
    padding: 25px;
}
.popup-header {
    display: flex;
    align-items: center;
    margin: 0 0 25px 0;
}
.popup-title {
    position: relative;
    font-family: var(--font-title);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    padding: 0 60px 0 0;
}
.popup-close {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 8px;
    color: var(--color-dark);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 62px;
    line-height: 1;
    cursor: pointer;
}
.popup-close i {
    position: relative;
}
.popup-content {
    position: relative;
}





/* ////////////////////////////////////////////////////////////////////////////

	05 . CAROUSEL

//////////////////////////////////////////////////////////////////////////// */

.carousel.gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,34,65,.035) 0%, rgba(0,34,65,0) 100%);
}

/* ----- HEADER ----- */
.swiper_header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    margin: -10px 0 35px 0;
}
.swiper_header-title h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}
.swiper_header-cta {
    position: relative;
    top: 2px;
    display: flex;
    align-items: center;
}
.swiper_header-cta a {
    position: relative;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.swiper_header-cta a::after {
    position: relative;
    font-family: "Ionicons";
    content: '\f30f';
    margin: 0 0 0 6px;
}

@media only screen and (max-width: 992px) {
    .swiper_header {
        align-items: center;
        margin: -5px 0 25px 0;
    }
    .swiper_header-title h2 {
        font-size: 36px;
    }
    .swiper_header-cta {
        top: 1px;
    }
    .swiper_header-cta a {
        transform: scale(.88);
        transform-origin: right bottom;
        letter-spacing: 0;
    }
}

/* ----- SWIPER ----- */
.swiper_carousel {
    position: relative;
}
.swiper_carousel .swiper-slide {
    position: relative;
    display: flex;
    height: auto;
}

/* navigation */
.swiper_header-nav {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}
.swiper_header-nav .swiper-button-next,
.swiper_header-nav .swiper-button-prev {
    top: 0;
    top: auto;
    left: auto;
    right: auto;
    position: relative !important;
    height: inherit !important;
    margin: 0;
    padding: 0;
    width: 20px;
    transition: opacity .25s;
}
.swiper_header-nav .swiper-button-prev {
    margin: 0 20px 0 0;
}
.swiper_header-nav .swiper-button-prev::after,
.swiper_header-nav .swiper-button-next::after {
    content: "";
    box-sizing: border-box;
    font-family: "Ionicons";
    font-size: 36px;
    color: var(--color-dark);
    opacity: 1;
    width: auto;
    height: inherit !important;
}
.swiper_header-nav .swiper-button-prev::after {
    content: '\f3d2';
}
.swiper_header-nav .swiper-button-next::after {
    content: '\f3d3';
}
.swiper_header-nav .swiper-button-next.swiper-button-disabled,
.swiper_header-nav .swiper-button-prev.swiper-button-disabled {
    opacity: .25;
}

@media only screen and (max-width: 992px) {
    .swiper_header-nav .swiper-button-next,
    .swiper_header-nav .swiper-button-prev {
        display: none;
    }
}

/* pagination */
.swiper_carousel .swiper-pagination {
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: flex-end;
}
.swiper_carousel .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 25px;
    bottom: 0;
}
.swiper_carousel .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: var(--radius-full);
    background: transparent;
    border: var(--color-dark) solid 1px;
    opacity: 1;
    transition: all 0.3s;
}
.swiper_carousel .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    opacity: 1;
    background: var(--color-dark);
}
.swiper_carousel .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}
.swiper_carousel .swiper-pagination.swiper-pagination-hidden {
    opacity: 0!important;
    height: 0!important;
    display: none!important;
    margin: 0!important;
}

@media only screen and (max-width: 992px) {
    .swiper_carousel .swiper-pagination {
        display: flex;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	06 . HOME INTRO

//////////////////////////////////////////////////////////////////////////// */

/* .home_intro {
    padding: 100px 15px 0 15px;
} */

.home_intro-wrap {
    display: flex;
    gap: 90px;
}
.home_intro-title {
    width: 50%;
}
.home_intro-title h2 {
    font-size: 56px;
    line-height: .9;
    font-weight: 300;
    text-transform: uppercase;
}
.home_intro-title h2 strong {
    display: block;
    font-weight: 700;
}
.home_intro-desc {
    width: 50%;
    font-size: 18px;
}
.home_intro-desc h3 {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: var(--color-primary-6);
}

@media only screen and (max-width: 992px) {
    .home_intro-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .home_intro-title {
        width: 100%;
    }
    .home_intro-title h2 {
        font-size: 36px;
        line-height: 1;
    }
    .home_intro-title h2 br {
        display: none;
    }
    .home_intro-desc {
        width: 100%;
        font-size: inherit;
    }
    .home_intro-desc h3 {
        font-size: 20px;
        line-height: 1.3;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	07 . HOME GRID

//////////////////////////////////////////////////////////////////////////// */

.home_blocks::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0,34,65,.035) 0%, rgba(0,34,65,0) 100%);
}

.home_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    grid-auto-flow: dense;
    grid-template-areas:
        "img1 img2"
        "img1 img3"
        "img1 img4";
    gap: 20px;
}
.block-1 { grid-area: img1; }
.block-2 { grid-area: img2; }
.block-3 { grid-area: img3; }
.block-4 { grid-area: img4; }

.home_grid-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
}
.home_grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,34,65,.75) 0%, rgba(0,34,65,.5) 50%, rgba(0,34,65,.05) 100%);
    z-index: 1;
    pointer-events: none;
}
.home_grid-item a {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.home_grid-picto {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    margin: 25px;
    height: 40px;
    filter: invert(1) brightness(10000%);
}
.home_grid-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--color-primary-6);
}
.home_grid-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1.005);
}
.no-touch .home_grid-item:hover .home_grid-img img {
    transform: scale(1.03);
}

.home_grid-caption {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--color-light);
}
.home_grid-caption h2 {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.home_grid-caption p {
    font-size: 15px;
}

/* ----- first ----- */
.home_grid-item:first-child .home_grid-picto {
    margin: 35px;
    height: 55px;
}
.home_grid-item:first-child .home_grid-caption {
    padding: 35px;
    gap: 15px;
}
.home_grid-item:first-child .home_grid-caption h2 {
    font-size: 44px;
}
.home_grid-item:first-child .home_grid-caption p {
    font-size: 17px;
}

@media only screen and (max-width: 992px) {
    .home_grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: none;
        gap: 15px;
    }
    .block-1, .block-2, .block-3, .block-4 {
        grid-area: auto;
    }
    .home_grid-picto {
        margin: 20px;
        height: 30px;
    }
    .home_grid-img {
        height: auto;
        padding-top: 46.25%;
    }
    .home_grid-caption {
        padding: 20px;
        gap: 5px;
    }
    .home_grid-caption h2 {
        font-size: 24px;
    }

    /* ----- first ----- */
    .home_grid-item:first-child .home_grid-picto {
        margin: 20px;
        height: 30px;
    }
    .home_grid-item:first-child .home_grid-img {
        padding-top: 71.25%;
    }
    .home_grid-item:first-child .home_grid-caption {
        padding: 20px;
        gap: 5px;
    }
    .home_grid-item:first-child .home_grid-caption h2 {
        font-size: 24px;
    }
    .home_grid-item:first-child .home_grid-caption p {
        font-size: 15px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	08 . NEWSLETTER

//////////////////////////////////////////////////////////////////////////// */

.news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.news_wrap {
    display: flex;
    align-items: center;
    gap: 90px;
}
.news_wrap-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.news_wrap-title h2 {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 300;
}
.news_wrap-title h2 strong {
    font-weight: 600;
}
.news_wrap-title h3 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 300;
    opacity: .75;
}
.news_wrap-title h3 strong {
    font-weight: 600;
}
.news_wrap-form {
    flex: 1;
}

.news_form {
	position: relative;
	display: flex;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}
.news_form input[type=email] {
	position: relative;
	display: flex;
    border: none;
    background: var(--color-primary-6);
    color: var(--color-light);
	padding: 0 0 0 25px;
	width:100%;
    max-width: calc(100% - 60px);
	font-size: 16px;
	line-height: 60px;
    outline: none;
    border-radius: 2em 0 0 2em;
	-webkit-appearance: none;
	appearance: none;
    box-shadow: none;
}
.news_form input[type=email]::-webkit-input-placeholder { 
    color: var(--color-light);
    font-size: 16px;
}
.news_form button {
	position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
	width: 60px;
	height: 60px;
	font-size: 18px;
	line-height: 60px;
    border: none;
    border-radius: 0 2em 2em 0;
	color: var(--color-light);
    background: var(--color-primary-6);
	text-align: center;
	cursor: pointer;
    -webkit-appearance: none;
	appearance: none;
	outline:0;
	transition: transform 0.25s;
}
.news_form button i {
    position: relative;
    top: 0.035em;
    font-size: 24px;
    transition: transform 0.25s;
}

@media only screen and (max-width: 992px) {
    .news_wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        width: 100%;
    }
    .news_wrap-title {
        gap: 10px;
        text-align: center;
    }
    .news_wrap-title h2 {
        font-size: 28px;
    }
    .news_wrap-title h3 {
        font-size: 17px;
        line-height: 1.3;
    }
    .news_wrap-form {
        width: 100%;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	09 . PAGE FOOTER

//////////////////////////////////////////////////////////////////////////// */

.page {
    padding: 75px 15px 100px 15px;
}

.page_title {
    padding: 0 0 10px 0;
    margin: 0 0 50px 0;
    border-bottom: var(--color-dark) solid 2px;
}
.page_title h1 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.page_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page_content hr {
    border: 0;
    border-top: 1px solid rgba(0,34,65,.15); 
    height: 0;
    margin: 30px 0;
    opacity: 1;
}
.page_content p {
    margin: 0;
    line-height: 1.5;
}
.page_content h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
}
.page_content h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
}
.page_content p + h2 {
    margin: 50px 0 0 0;
}
.page_content p + h3 {
    margin: 15px 0 0 0;
}

.page_content ul + h2,
.page_content ul + h3 {
    margin: 15px 0 0 0;
}
.page_content ul {
    list-style: none;
    margin: 0;
	padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.page_content li {
	padding-left: 18px;
}
.page_content li::before {
	position:relative;
	content: "\f30f";
	font-family: "Ionicons";
    font-size: 90%;
	display: inline-block;
	margin-left: -18px;
	width: 18px;
}

.page_content a:not(.btn) {
    font-weight: 500;
    text-decoration: none;
	display: inline;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 calc(100% - 2px);
	background-repeat: no-repeat;
	background-size: 100% 2px;
	transition: background-size 0.5s;
}
.no-touch .page_content a:not(.btn):hover {
    background-position: 100% calc(100% - 2px);
	background-size: 0 2px;
}

@media only screen and (max-width: 992px) {
    .page {
        padding: 50px 0;
    }
    .page_title h1 {
        font-size: 30px;
    }
}








