* {
    padding: 0;
    margin: 0;
    font-family: "NotoSerif";
}

a {
    text-decoration: initial;
}


/* @font-face {
  font-family: "Gravur";
  font-weight: 1000;
  src: url("../fonts/gravur/GravurCondensedPro-Black.otf") format("opentype");
} */

@font-face {
    font-family: "Gravur";
    font-weight: 800;
    src: url("../fonts/gravur/GravurCondensedPro-Bold.otf") format("opentype");
}

@font-face {
    font-family: "Gravur";
    font-weight: 400;
    src: url("../fonts/gravur/GravurCondensedPro-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Gravur";
    font-weight: 300;
    src: url("../fonts/gravur/GravurCondensedPro-Light.otf") format("opentype");
}


/*
@font-face {
  font-family: "Gravur";
  font-weight: 200;
  src: url("../fonts/gravur/GravurCondensedPro-Thin.otf") format("opentype");
} */

@font-face {
    font-family: "HelveticaNeue";
    font-weight: 400;
    src: url("../fonts/HelveticaNeue-Regular.ttf") format("opentype");
}

@font-face {
    font-family: "NotoSerif";
    font-weight: 400;
    src: url("../fonts/NotoSerif-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "NotoSerif";
    font-weight: 400;
    font-style: italic;
    src: url("../fonts/NotoSerif-Italic.ttf") format("truetype");
}

@font-face {
    font-family: "NotoSerif";
    font-weight: 800;
    src: url("../fonts/NotoSerif-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "NotoSerif";
    font-weight: 800;
    font-style: italic;
    src: url("../fonts/NotoSerif-BoldItalic.ttf") format("truetype");
}

@font-face {
    font-family: "icomoon";
    src: url("../fonts/icon/icomoon.eot?icm1ug");
    src: url("../fonts/icon/icomoon.eot?icm1ug#iefix") format("embedded-opentype"), url("../fonts/icon/icomoon.ttf?icm1ug") format("truetype"), url("../fonts/icon/icomoon.woff?icm1ug") format("woff"), url("../fonts/icon/icomoon.svg?icm1ug#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
    content: "\e900";
    color: #53c8e7;
}

.ico-holder {
    position: relative;
    width: 100%;
    display: block;
    height: 24px;
}

.ico-holder.icon-home:before {
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}


/*format("truetype");*/

.burger-menu {
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.burger {
    position: absolute;
    background: #0e4194;
    width: 100%;
    height: 2px;
    top: 50%;
    right: 0px;
    margin-top: -1px;
    opacity: 1;
    border-radius: 2px;
}

.burger::before {
    position: absolute;
    background: #0e4194;
    width: 32px;
    height: 2px;
    top: 7px;
    content: "";
    display: block;
    border-radius: 2px;
}

.burger::after {
    position: absolute;
    background: #0e4194;
    width: 32px;
    height: 2px;
    bottom: 7px;
    content: "";
    display: block;
    border-radius: 2px;
}

.burger::after,
.burger::before,
.burger {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.burger-menu.menu-on .burger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0px;
}

.burger-menu.menu-on .burger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0px;
}

.burger-menu.menu-on .burger {
    background: rgba(111, 111, 111, 0);
}


/* useless css */

.burger-menu {
    margin-left: auto;
    margin-right: auto;
}


/*  */

.header-logo {
    display: block;
    width: 85px;
    margin-right: 18px;
}

.header-logo img {
    width: 100%;
    display: block;
}

header {
    padding: 12px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 0.9;
}

.header-container {
    width: 100%;
    /* max-width: 1240px; */
    padding: 0 20px;
    margin: 0 auto;
}

.header-container li {
    display: inline-block;
    padding: 0 18px;
    min-width: 90px;
}

.header-container li a {
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #53c8e7;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-family: "Gravur";
    font-weight: 400;
}

.header-container li a img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 19px;
}

.header-container li a:hover {
    text-decoration: none;
    color: #000000;
}

.header-container li a::before {
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.header-container li a:hover::before {
    color: #000000;
}

.header-btn {
    background-color: #53c8e7;
    border-radius: 7px;
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Gravur";
    font-weight: 800;
    display: block;
    padding: 17px 30px;
    border-color: transparent;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.header-btn:hover {
    background-color: #000000;
    text-decoration: none;
    color: #ffffff;
}

.menu_mob {
    width: 32px;
    cursor: pointer;
}

.menu_mob img {
    display: block;
    width: 100%;
}


/* section {
  background: #000;
  height: 100vh;
} */

.menu_mob2 {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 0px);
    z-index: 998;
    background-color: rgba(255, 255, 255, 0.9);
    padding-top: 82px;
    -webkit-transition-duration: 0.9s;
    -o-transition-duration: 0.9s;
    transition-duration: 0.9s;
    -webkit-transform: translate(100%, 0%);
    -ms-transform: translate(100%, 0%);
    transform: translate(100%, 0%);
}

.menu_mob2.active {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.menu_mob2 li {
    display: block;
    padding: 23px 0;
}

.menu_mob2 li a {
    font-size: 34px;
    line-height: 34px;
    text-align: center;
    display: block;
    color: #53c8e7;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-family: "Gravur";
    font-weight: 400;
    text-transform: uppercase;
}

.menu_mob2 li a:hover {
    text-decoration: none;
    color: #000000;
}

.menu_mob2 li a::before {
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.menu_mob2 li a:hover::before {
    color: #000000;
}

.section1 {
    width: 100%;
    background-color: #ffffff;
}

.section1_header {
    width: 100%;
    display: block;
}

.main {
    width: calc(100% - 296px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 296px);
    flex: 0 0 calc(100% - 296px);
    max-width: calc(100% - 296px);
    margin: 0 auto 0 38px;
    z-index: 3;
    position: relative;
    /* background-color: #ffffff; */
}

.section1_content {
    margin-top: -67px;
}

.section1_content h1 {
    font-size: 66px;
    line-height: 63px;
    font-family: "Gravur";
    font-weight: 800;
    padding-left: 26px;
    margin-bottom: 15px;
}

.section1_content h1 span {
    background-color: rgba(255, 255, 255, 0.58);
    padding: 5px 26px 0 26px;
    font-family: "Gravur";
    font-weight: 800;
    margin-left: -26px;
    color: #000000;
}

.section1_content .h6 {
    font-weight: 800;
    font-size: 17px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 5px;
    color: #323232;
}

.section1_content p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 28px;
    text-align: left;
    color: #323232;
}

.vidDesk {
    display: block;
}

.vidMob {
    display: none;
}

strong {
    color: #323232;
    font-weight: 800;
}

.popup_info {
    /* 256px */
    width: 202px;
    position: sticky;
    top: 150px;
    margin-right: 38px;
    right: 0;
    margin-left: auto;
    background-color: #ffffff;
    padding: 65px 0 14px 0;
    border-radius: 10px;
    border: 1px solid #53c8e7;
    text-align: center;
    margin-top: -65px;
    /* -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4); */
    opacity: 1;
    z-index: 5;
    /* margin-bottom: 20px; */
}

.popup_info .name_holder {
    background-color: #53c8e7;
    border-radius: 10px;
    border: 1px solid #ffffff;
    width: 218px;
    margin-left: -8px;
    margin-top: -95px;
    padding-top: 10px;
    position: relative;
    /* -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4); */
}

.popup_info .name_holder::after {
    border-left: 14px solid transparent;
    /* border-right: 20px solid transparent; */
    border-top: 14px solid #53c8e7;
    position: absolute;
    bottom: -12px;
    content: " ";
    left: 50%;
    margin-left: -7px;
}

.name_holder .h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 20px;
    font-family: "Gravur";
    font-weight: 800;
    margin-bottom: 10px;
}

.name_holder p {
    color: #000000;
    font-size: 17px;
    line-height: 20px;
    font-family: "Gravur";
    font-weight: 400;
    letter-spacing: -1px;
}

.popup_info_text1 {
    padding: 22px 17px 0 17px;
    font-size: 17px;
    line-height: 20px;
    font-family: "Gravur";
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.popup_info_content {
    position: relative;
}

.popup_info_content img {
    width: 28px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.popup_info_content::after {
    width: 176px;
    position: absolute;
    content: " ";
    left: 50%;
    margin-left: -88px;
    top: 13px;
    height: 1px;
    background-color: #53c8e7;
    z-index: 1;
}

.popup_info_text2 {
    font-size: 17px;
    line-height: 20px;
    font-family: "Gravur";
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
    color: #53c8e7;
    padding-top: 6px;
}

.popup_info_text3 {
    font-size: 14px;
    line-height: 14px;
    font-family: "Gravur";
    font-weight: 800;
    color: #53c8e7;
    margin-bottom: 13px;
    display: block;
    padding-top: 6px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.popup_info_text2 a,
.popup_info_text2 span {
    color: #53c8e7;
    font-family: "Gravur";
    font-weight: 800;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.popup_info_text2 a:hover,
.popup_info_text3:hover {
    color: #000000;
    text-decoration: none;
}

.sec3 {
    height: 300vh;
}

.popup_info .header-btn {
    max-width: 163px;
    padding: 10px 3px;
}

.btn_popup {
    background-color: #53c8e7;
    width: 100%;
    position: fixed;
    z-index: 99;
    height: 55px;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
}

.btn_popup_content {
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    font-family: "Gravur";
    font-weight: 800;
    font-size: 24px;
    line-height: 24px;
    opacity: 1;
}

.btn_popup_content img:nth-child(2) {
    display: none;
}

.btn_popup:hover {
    background-color: #000000;
}


/* .btn_popup:hover img:nth-child(1) {
  display: none;
}

.btn_popup:hover img:nth-child(2) {
  display: inline;
} */

.popup_holder {
    position: relative;
    width: 240px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    max-width: 240px;
}

.popup_holder2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup_info.active {
    z-index: 999;
    opacity: 1;
}

.popup_info_close {
    width: 33px;
    position: absolute;
    top: -14px;
    right: -14px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
}

.popup_info_close img {
    width: 100%;
    display: block;
}

.btn_popup.active {
    z-index: -9;
    opacity: 0;
}

.sec2_box {
    position: relative;
    padding-bottom: 32px;
    max-width: 286px;
    margin: 0 auto 0 0;
    min-height: 485px;
    max-height: 485px;
    height: 485px;
    margin-bottom: 48px;
}

.sec2_box h2,
.sec2_box .h2 {
    text-align: left;
    color: #53c8e7;
    font-family: "Gravur";
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 33px;
    line-height: 33px;
}

.sec2_box img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.sec2_box p {
    font-size: 15px;
    line-height: 24px;
    text-align: left;
    color: #323232;
    margin-bottom: 0;
    height: calc(100% - 268px);
    overflow: auto;
}

.sec2_box a.a {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    text-align: center;
    transform: translate(-50%, 0);
    background-color: #53c8e7;
    color: #ffffff;
    border-radius: 7px;
    font-size: 16px;
    line-height: 16px;
    padding: 8px 0;
    font-family: "Gravur";
    font-weight: 800;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.sec2_box a.a:hover {
    background-color: #000000;
    text-decoration: none;
}

.section3 h3,
.section3 .h3 {
    color: #53c8e7;
    font-size: 40px;
    line-height: 40px;
    font-family: "Gravur";
    font-weight: 300;
    text-align: left;
    margin: 0 auto 30px 0;
    /* max-width: 570px; */
}

.vod_holder {
    max-width: 984px;
    margin: 0 auto 53px 0;
}

.section3 p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 24px;
    font-family: "NotoSerif";
    font-weight: 400;
    text-align: left;
    color: #323232;
}

.section3 p a,
.section3 p a:hover {
    color: #323232;
    text-decoration: underline;
}

.section3 .h6 {
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 24px;
    font-family: "NotoSerif";
    font-weight: 800;
    text-align: left;
    color: #323232;
}

.section4_title {
    position: relative;
    margin-top: 106px;
}

.guillements {
    width: 91px;
    position: absolute;
    left: 0;
    top: -22px;
}

.guillements img {
    display: block;
    width: 100%;
}

.guillements_txt {
    position: relative;
    text-align: center;
    font-family: "NotoSerif";
    font-weight: 800;
    font-style: italic;
    font-size: 17px;
    line-height: 21px;
    color: #323232;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 13px;
}

.guillements_txt::after {
    position: absolute;
    content: " ";
    top: 0;
    right: 0;
    width: calc(100% - 110px);
    height: 2px;
    background-color: #53c8e7;
}

.slide5_box {
    width: 100%;
}

.slide5_box img {
    width: auto;
    display: block;
}

.blockVideoAssurance {
    max-width: 720px;
}

.slide5_text {
    width: calc(100% - 286px);
    background-color: #53c8e7;
    padding-left: 44px;
}

.slide5_text p {
    font-size: 17px;
    line-height: 21px;
    font-family: "NotoSerif";
    font-weight: 400;
    font-style: italic;
    margin: 0 auto 26px 0;
    width: calc(100% - 59px);
    color: #ffffff;
}

.slide5_text .h6 {
    font-size: 12px;
    line-height: 14px;
    font-family: "NotoSerif";
    font-weight: 400;
    color: #ffffff;
}

.section5 {
    position: relative;
}

.slide_btn:focus {
    outline: 0;
}

.slide_btn {
    background-color: transparent;
    border-radius: 50%;
    border: none;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 50%;
    z-index: 99;
    width: 32px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transform: translate(-0%, -50%);
    -ms-transform: translate(-0%, -50%);
    transform: translate(-0%, -50%);
}

.slide_btn img {
    display: block;
    width: 100%;
}

.slide_next {
    right: 14px;
}

.slide_prev {
    left: 14px;
}

.slide_btn:hover {
    -webkit-transform: translate(-0%, -50%) scale(0.9);
    -ms-transform: translate(-0%, -50%) scale(0.9);
    transform: translate(-0%, -50%) scale(0.9);
}

.speace {
    height: 500px;
}

.section5_slide {
    background-color: #53c8e7;
}

.footer_text {
    height: 520px;
    background-image: url(../images/footer1.jpg);
    background-size: cover;
    background-position: top left;
    position: absolute;
    width: calc(100vw - 17px);
    left: -38px;
    top: 0;
}

.footer_text .h2 {
    margin: 0 auto 10px auto;
    color: #ffffff;
    font-size: 60px;
    line-height: 58px;
    text-align: left;
    font-family: "Gravur";
    font-weight: 800;
    max-width: 315px;
}

.footer_text p {
    color: #ffffff;
    text-align: left;
    font-size: 17px;
    line-height: 25px;
    font-family: "NotoSerif";
    font-weight: 800;
    max-width: 320px;
    margin: 0 auto 0 76px;
}

footer {
    background-color: #53c8e7;
    color: #ffffff;
    height: 54px;
}

footer p {
    margin-bottom: 0;
}

.footer-holder {
    padding: 0 20px;
    /* max-width: 1240px; */
    margin: 0 auto;
}

footer .p1 {
    font-size: 12px;
    line-height: 12px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    text-align: left;
}

footer p a,
footer p a:hover {
    color: #ffffff;
    font-family: "HelveticaNeue";
    font-weight: 400;
}

footer .p2 {
    font-size: 11px;
    line-height: 11px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    text-align: right;
}

.p-relative {
    position: relative;
    height: 520px;
    margin-top: 40px;
}

.list_msg {
    margin-top: 35px;
    background-color: #efefef;
    padding: 18px 31px 25px 31px;
    border-bottom: 2px solid #53c8e7;
    width: 100%;
}

.list_msg_box1 {
    width: 526px;
    width: calc(50% - 340px);
    width: 65%;
    position: relative;
}

.list_msg_box1 h3 {
    font-size: 17px;
    line-height: 23px;
    font-family: "NotoSerif";
    font-weight: 800;
    margin-bottom: 13px;
}

.list_msg_box2 {
    width: calc(100% - 526px);
    width: 35%;
}

.list_msg_box1 ul {
    list-style-type: none;
    max-height: 270px;
    /* overflow: hidden; */
    overflow-x: auto;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.list_msg_box1 .shadow2 {
    width: 100%;
    height: 35px;
    background-color: rgba(239, 239, 239, 0.8);
    bottom: 0;
    left: 0;
    z-index: 99;
    position: absolute;
}

.list_msg_box1 ul li {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #000000;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 30px;
    font-family: "NotoSerif";
    font-weight: 400;
}


/* .list_msg_box1 ul li:nth-child(6) {
  opacity: 0.2;
  margin-bottom: 0px;
} */

.list_msg_box1 ul li span {
    color: #53c8e7;
    font-size: 16px;
    font-family: "NotoSerif";
    font-weight: 400;
}

.list_msg_box1 ul li img {
    width: 13px;
}

.list_msg_box2 .h2 {
    text-align: center;
    color: #53c8e7;
    font-size: 33px;
    line-height: 36px;
    font-family: "Gravur";
    font-weight: 800;
    text-transform: uppercase;
    max-width: 340px;
}

.box_omega {
    max-width: 33.333333%;
    background-color: #efefef;
    border: 2px solid #efefef;
    padding: 19px 33px;
}

.box_omega:nth-child(2n) {
    background-color: #ffffff;
}

.box_omega h2 {
    font-family: "Gravur";
    font-weight: 800;
    font-size: 33px;
    line-height: 36px;
    margin-bottom: 20px;
    color: #53c8e7;
    text-align: left;
}

.box_omega p {
    font-family: "NotoSerif";
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 5px;
    text-align: left;
    color: #323232;
}

.box_omega a {
    width: 120px;
    text-align: center;
    background-color: #53c8e7;
    color: #ffffff;
    border-radius: 7px;
    font-size: 16px;
    line-height: 16px;
    padding: 8px 0;
    font-family: "Gravur";
    font-weight: 800;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.box_omega button {
    width: 120px;
    text-align: center;
    background-color: #53c8e7;
    color: #ffffff;
    border-radius: 7px;
    font-size: 16px;
    line-height: 16px;
    padding: 8px 0;
    font-family: "Gravur";
    font-weight: 800;
    border-color: transparent;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.box_omega a:hover {
    background-color: #000000;
    text-decoration: none;
}

.legs-page .section4_title {
    margin-top: 60px;
}

.legs-page .section3 {
    margin-top: 60px;
}

.legs-page .footer_text {
    background-image: url(../images/legs/footer1.jpg);
}

.legs-page .footer_text .h2 {
    text-align: left;
    margin-left: 40px;
    margin-bottom: 46px;
}

.sec3_circle {
    width: 50%;
    margin-bottom: 25px;
}

.sec3_part1 {
    width: calc(100% - 533px);
}

.sec3_part2 {
    width: 533px;
}

.sec3_part2 h6 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
}

.sec3_circle img {
    width: 103px;
    display: block;
    margin-right: 14px;
}

.sec3_circle p {
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 0;
}

.section3 .sec3_part1 p {
    margin-right: 100px;
}

.circle1 {
    width: 17px;
    height: 17px;
    background-color: #53c8e7;
    border-radius: 50%;
}

.circle2 {
    width: 17px;
    height: 17px;
    background-color: #dadada;
    border-radius: 50%;
}

.sec3_info_box p {
    font-size: 10px;
    margin-left: 10px;
    line-height: 11px;
    font-weight: 400;
    width: 100px;
}

.sec3_info {
    margin-right: 45px;
}

.legs-page .sec2 {
    padding-top: 66px;
    max-width: 1035px;
    margin-left: 0 !important;
}

.legs-page .sec2_box {
    margin-left: 0;
    min-height: initial;
    height: auto;
    padding-bottom: 0;
}

.engagements_box {
    width: 100%;
    max-width: 221px;
    margin-bottom: 50px;
}

.engagements_box .engagements_box_img {
    width: 64px;
    height: 64px;
    background-color: #53c8e7;
    border-radius: 50%;
    margin: 0 auto;
}

.engagements_box_img img {
    display: block;
    width: 50%;
}

.engagements_box_img1 img {
    width: 41px;
}

.engagements_box_img2 img {
    width: 25.4px;
}

.engagements_box_img3 img {
    width: 47.1px;
}

.engagements_box h5,
.engagements_box h3 {
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    font-family: "NotoSerif";
    font-weight: 800;
    color: #323232;
    margin-bottom: 8px;
    padding-top: 10px;
}

.engagements_box p {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    font-family: "NotoSerif";
    font-weight: 400;
    color: #323232;
}

.engagements_holder {
    padding-top: 22px;
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}

.p-faq {
    height: auto;
}

.faq {
    background-image: none !important;
    background-color: #dadada;
    position: inherit;
    height: auto;
    /* min-height: 504px; */
    padding: 53px 40px 33px 40px;
}

.faq .h2 {
    color: #53c8e7;
    font-size: 40px;
    line-height: 40px;
    font-family: "Gravur";
    font-weight: 300;
    text-align: left;
    margin: 0 auto 5px 0 !important;
    /* max-width: 570px; */
}

.faq_list {
    width: calc(100% - 296px);
    margin-right: auto;
}

.faq_list li {
    display: block;
}

.faq_list .faq_title {
    cursor: pointer;
    margin-top: 15px;
}

.faq_list .faq_title:first-child {
    margin-top: 0;
}

.faq_list .faq_title img {
    width: 10px;
    display: inline-block;
}

.faq_list .faq_title .faq_img1 {
    display: inline-block;
}

.faq_list .faq_title .faq_img2 {
    display: none;
}

.faq_list .faq_title.active .faq_img1 {
    display: none;
}

.faq_list .faq_title.active .faq_img2 {
    display: inline-block;
}

.faq_list .faq_title span {
    font-size: 17px;
    line-height: 20px;
    color: #323232;
    font-family: "NotoSerif";
    font-weight: 800;
}

.faq_list .faq_text {
    font-size: 15px;
    line-height: 24px;
    font-family: "NotoSerif";
    font-weight: 400;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.31);
    margin-bottom: 0px;
    /* min-height: 100px; */
}

.faq_list .faq_text span {
    font-size: 13px;
    line-height: 22px;
    font-family: "NotoSerif";
    font-weight: 400;
    font-style: italic;
}

.faq_list .faq_text:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.assurance-page .box_omega h2 {
    max-width: 280px;
}

.assurance-page .box_omega {
    min-height: 333px;
}

.assurance-page .sec3_part1 {
    width: calc(100% - 363px);
}

.assurance-page .sec3_part2 {
    width: 363px;
}

.assurance-page .sec3_part2 img {
    display: block;
    width: 100%;
}

.assurance-page .footer_text {
    background-image: url(../images/assurance/footer1.jpg);
}

.donation-page .footer_text {
    background-image: url(../images/donation/footer1.jpg);
}

.sec2 a:hover {
    text-decoration: none;
}

.main-form {
    max-width: 100%;
    width: calc(100% - 76px);
    flex: none;
    margin: 0 38px 0 38px;
}

.main-form .engagements_holder {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}

.form-control {
    height: 28px;
}

.form-row label {
    margin-bottom: 1px;
    color: #707070;
    font-size: 13px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    line-height: 24px;
}

.form_info_box1 p {
    font-size: 13px;
    line-height: 24px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    color: #707070;
}

.form-row .col-md-6,
.form-row .col-md-6 .d {
    min-height: 75px;
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before,
.custom-control-input:checked~.custom-control-label::before {
    border-color: #53c8e7;
    background-color: #53c8e7;
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: #707070;
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
    border-color: #53c8e7;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #53c8e7;
}

.form_info_box1 {
    width: 198px;
    margin-right: 35px;
    padding-top: 10px;
}

.form_info_box2 {
    width: calc(100% - 198px);
}

.fixed-w {
    max-width: 984px;
    margin-right: auto;
    margin-left: 0;
}

.invalid-feedback {
    font-size: 11px;
    color: #d12d26;
    font-family: "HelveticaNeue";
    font-weight: 400;
}

.form_info_box2 {
    padding: 20px;
    background-color: #efefef;
}

.form_info_box2 p {
    text-align: left;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 17px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    color: #707070;
}

.form_info_box2 p a {
    color: #707070;
    font-family: "HelveticaNeue";
    font-weight: 400;
}

.form_info_box1 button {
    background-color: #53c8e7;
    color: #ffffff;
    text-align: center;
    border: none;
    font-family: "Gravur";
    font-weight: 800;
    padding: 15px 10px;
    min-width: 198px;
    border-radius: 10px;
    transition-duration: 0.3s;
}

.form_info_box1 button:hover,
.form_info_box1 button:focus {
    background-color: #000000;
    box-shadow: none !important;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c6c6c6;
    font-size: 13px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    line-height: 24px;
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #c6c6c6;
    font-size: 13px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    line-height: 24px;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #c6c6c6;
    font-size: 13px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    line-height: 24px;
}


/* BO */

.bo-body {
    height: 100vh;
}

.bo-body label {
    margin-bottom: 1px;
    color: #707070;
    font-size: 13px;
    font-family: "HelveticaNeue";
    font-weight: 400;
    line-height: 24px;
}

.bo-body button {
    background-color: #53c8e7;
    color: #ffffff;
    text-align: center;
    border: none;
    font-family: "Gravur";
    font-weight: 800;
    padding: 8px 10px;
    min-width: 160px;
    border-radius: 10px;
    transition-duration: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.bo-body button:hover {
    background-color: #000000;
}

.body-success {
    padding-top: 140px;
}

.body-success h1 {
    color: #53c8e7;
    font-size: 40px;
    line-height: 40px;
    font-family: "Gravur";
    font-weight: 300;
    text-align: left;
    margin: 0 auto 30px 0;
}

.table-p,
.name-td,
.table th {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 28px;
    text-align: left;
    color: #323232;
    font-family: "Gravur";
    font-weight: 400;
}

.table thead th {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 28px;
    text-align: left;
    color: #323232;
    font-family: "Gravur";
    font-weight: 600;
}

.name-td2 {
    min-width: 130px;
}

.name-td3 {
    min-width: 100px;
}

div.paginate {
    float: right;
    padding-right: 20px;
}

.fixed-l {
    max-width: 984px;
    margin-right: auto;
    margin-left: 0;
}

#tarteaucitronAlertBig {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

div#tarteaucitronServices {
    height: 574px !important;
}


/* .hide-scrollbar::-webkit-scrollbar {
  display: none;
} */


/* .data-list {
  overflow-y: hidden;
  height: 270px !important;
  max-height: initial !important;
} */

.obligatoire-mob {
    font-size: 15px !important;
    font-family: "HelveticaNeue" !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    margin-bottom: 12px !important;
    color: #495057 !important;
}

.section3 .h6.text-succ {
    opacity: 0;
    /* visibility: hidden;
  position: absolute; */
}

.section3 .h6.text-succ.active {
    opacity: 1;
    /* visibility: visible;
  position: initial; */
}

.data-list2 {
    height: 272px;
}

.mx-w260 {
    max-width: 260px;
}

.body-success h1 {
    padding-left: 20px;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type="number"] {
    -moz-appearance: textfield;
}

.confirmation .popup_info {
    opacity: 0;
}

.confirmation .popup_info.active {
    opacity: 1;
}

.confirmation {
    height: 100vh;
    position: relative;
}

.confirmation footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.confirmation .section3 h3 {
    position: relative;
    float: left;
}

.confirmation .section3 h3::after {
    position: absolute;
    content: " ";
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #53c8e7;
}

.btn-download {}

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.max-r {
    max-width: 600px;
    width: 100%;
}