@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;500&display=swap');

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2d3142;
}

::-webkit-scrollbar-thumb {
    background: #4458A4;
}

a {
    text-decoration: none;
    color: #2d3142;
}

ul {
    transform: rotate(180deg);
}
ul > li {
    transform: rotate(-180deg);
}

@keyframes animate {
    0% {
        margin-left: 0;
    }

    50% {
        left: 100%;
    }

    0% {
        left: 0;
    }
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background: #EAEAEA;
    color: #2D3142;
    overflow-x: hidden;
}

#none-animated-nav {
    background: #4458A4;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

nav {
    position: fixed;
    width: 80vw;
    padding: 0 10vw 0 10vw;
    border-bottom: 1px solid transparent;
    color: #ffffff;
    font-weight: bold;
    z-index: 3;
    top: 0;
    display: grid;
    grid-template-columns: repeat(2, 40vw);
    vertical-align: middle;
}

nav.style1 div{
    border-bottom: 1px solid rgba(68,88,164,0.3);
}

nav div {
    height: 75px;
}

nav div ul {
    position: absolute;
    margin: 0;
    padding: calc(50vh - 150px) 0 0 0;
    font-size: 0;
    width: 100%;
    height: auto;
    background: #95a4ff;
    right: 0;
    top: 76px;
    display: none;
}
nav div ul li{
    float: right;
    display: block;
    padding: 5vh 0 5vh 10%;
    border-top: 2px solid transparent;
    text-align: left;
    width: 90%;
}

nav div ul li a {
    font-size: 12px;
    text-decoration: none;
    color: #ffffff;
    color: rgba(255,255,255,0.8);
    transition: 0.5s ease;
    cursor: pointer;
}

nav div ul li a:hover {
    color: rgba(255,255,255,1);
    transition: 0.5s ease;
}

nav img {
    height: 75px;
}


header {
    width: 80vw;
    padding: 125px 10vw 100px 10vw;
    background: #95a4ff;
    text-align: center;
}

header h1 {
    margin: 0;
    width: 100%;
    color: #ffffff;
    font-size: 15px;
}

header h4 {
    margin: 15px 0 30px 0;
    width: 100%;
    color: #4458A4;
    font-size: 10px;
}

header a {
    margin: 0;
    width: 100%;
    background: #ff4962;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    cursor: pointer;
}

.content {
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.content h1{
    margin: 0;
}

.div_1 {
    width: 90%;
    padding: 50px 5% 50px 5%;
    text-align: center;
}

.div_1 h1 {
    font-size: 15px;
}

.integration_ex {
    margin: 50px 0 25px 0;
    width: 250px;
    margin-left: calc(50% - 125px);
    display: grid;
    grid-template-columns: 100px 100px 50px;
    z-index: 2;
}

.integration_ex i {
    display: block;
    width: 50px;
    height: 50px;
    background: #EAEAEA;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    float: left;
    position: relative;
    z-index: 1;
}

.integration_ex i img {
    width: 25px;
    height: 25px;
    padding-top: 12.5px;
}

.integration_ex div:nth-child(3) i{
    float: right;
}

.integration_ex div hr{
    float: left;
    border: none;
    border-top: 3px dotted #cccccc;
    height: 3px;
    width: 50px;
    margin-top: 24.25px;
}

.integration_ex .line-contain {
    width: 100px;
    height: 3px;
    position: relative;
    z-index: 0;
    margin: 24.25px 0 0 25px;
}

.integration_ex .line {
    height: 3px;
    background: #4458A4;
    position: absolute;
    top: 0;
    left: 0;
}
.integration_ex_bis {
    margin: 0px 0 50px 0;
    width: 250px;
    margin-left: calc(50% - 375px);
    display: grid;
    grid-template-columns: 250px 250px 250px;
    z-index: 2;
    display: none;
}

.integration_ex_bis h4 {
    font-size: 13px;
    color: rgba(45,49,66,0.7);
}

.integration_ex_bis h4 b{
    color: rgba(45,49,66,1);
}

.integration_animation {
    -webkit-animation: integration 4s 1 forwards;
    -moz-animation: integration 4s 1 forwards;
    -o-animation: integration 4s 1 forwards;
    animation: integration 4s 1 forwards;
}

.pulsate {
    -webkit-animation: 1600ms pulsate 1 alternate ease-in-out;
    -moz-animation: 1600ms pulsate 1 alternate ease-in-out;
    -ms-animation: 1600ms pulsate 1 alternate ease-in-out;
    -o-animation: 1600ms pulsate 1 alternate ease-in-out;
    animation: 1600ms pulsate 1 alternate ease-in-out;
}

.integration_ex .line span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    float: right;
    background: #2D3142;
    margin-top: -3.5px;
}

@-webkit-keyframes integration {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-moz-keyframes integration {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-o-keyframes integration {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@keyframes integration {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes pulsate {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
@-webkit-keyframes pulsate {
    0% { -webkit-transform: scale(1); }
    50% { -webkit-transform: scale(1.3); }
    100% { -webkit-transform: scale(1); }
}
@-moz-keyframes pulsate {
    0% { -moz-transform: scale(1); }
    50% { -moz-transform: scale(1.3); }
    100% { -moz-transform: scale(1); }
}
@-ms-keyframes pulsate {
    0% { -ms-transform: scale(1); }
    50% { -ms-transform: scale(1.3); }
    100% { -ms-transform: scale(1); }
}
@-o-keyframes pulsate {
    0% { -o-transform: scale(1); }
    50% { -o-transform: scale(1.3); }
    100% { -o-transform: scale(1); }
}

.integration_ex_2 {
    width: 90%;
    margin: 0 5% 0 5%;
    display: grid;
    grid-template-columns: 100%;
    gap: 50px 0;
    margin-top: 50px;
}

.integration_ex_2 div{
    width: 100%;
    background: #EAEAEA;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 1vw 0 1vw 0;
}

.integration_ex_2 div h4{
    padding: 0px;
    margin: 0;
    padding: 15px 30px 15px 30px;
    font-size: 12px;
}

.integration_ex_2 div:nth-child(1) h4{
    color: #73ad7c;
}

.integration_ex_2 div:nth-child(2) h4{
    color: #ff4962;
}

.integration_ex_2 div:nth-child(3) h4{
    color: #4458A4;
}

.integration_ex_2 div h5{
    color: rgba(45,49,66,0.7);
    padding: 0 30px 15px 30px;
    text-align: justify;
    margin: 0;
    font-size: 10px;
}

.integration_ex_2 div b{
    color: rgba(45,49,66,1);
}

.div_2 {
    width: 80%;
    padding: 50px 10% 50px 10%;
    text-align: left;
    background: #A3C9A9;
}

.div_2 h1 {
    font-size: 15px;
    margin: 0;
}

.div_2 h6 {
    font-size: 10px;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 25px;
}

.div_2 a {
    font-size: 10px;
    background: #73ad7c;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.div_3 {
    width: 80%;
    padding: 50px 10% 50px 10%;
    text-align: center;
}

.div_3 h1 {
    font-size: 15px;
    margin: 0;
}

.div_3 h6 {
    font-size: 10px;
    margin: 0;
    padding-top: 5px;
}

.div_3 img {
    width: 100%;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.div_3 a {
    display: block;
    font-size: 10px;
    background: #ff4962;
    color: #ffffff;
    padding: 15px 0 15px 0;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin: 50px 0 0 0;
}

.div_4 {
    width: 80%;
    padding: 50px 10% 50px 10%;
    text-align: left;
    background: #DDD8C4;
}

.div_4 h1 {
    font-size: 15px;
    margin: 0;
}

.div_4 h6 {
    font-size: 10px;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 25px;
}

.div_4 a {
    font-size: 10px;
    background: #c1b893;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.div_5 {
    width: 80%;
    padding: 50px 10% 50px 10%;
    text-align: center;
}

.div_5 h1 {
    font-size: 15px;
    margin: 0;
}

.div_5 h6 {
    font-size: 10px;
    margin: 0;
    padding-top: 5px;
}

.div_5>div {
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    margin-top: 50px;
    gap: 50px 0;
}

.div_5>div>div{
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    width: 100%;
    text-align: center;
}

.div_5 img {
    margin: 25px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.div_5>div>div h6 {
    padding: 0 25px 0 25px;
    text-align: justify;
    margin: 0;
    font-size: 10px;
}

.div_5>div>div h5 {
    padding: 25px 0 25px 0;
    margin: 0;
    font-size: 15px;
}

.div_5>div>div h5 b{
    color: rgba(45,49,66,0.7);
    font-size: 10px;
    display: block;
}

.div_6 {
    width: 80%;
    padding: 50px 10% 50px 10%;
    text-align: left;
    background: #95a4ff;
}

.div_6 h1 {
    font-size: 15px;
    margin: 0;
}

.div_6 h6 {
    font-size: 10px;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 25px;
}

.div_6 a {
    font-size: 10px;
    background: #4458A4;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.div_7 {
    width: 80%;
    padding: 50px 10% 50px 10%;
    text-align: center;
}

.div_7 h1 {
    font-size: 15px;
    margin: 0;
}

.div_7 h6 {
    font-size: 10px;
    margin: 0;
    padding-top: 5px;
}

.div_7 img {
    width: 150px;
    border-radius: 10px;
    margin-top: 50px;
}

.div_7 a {
    display: block;
    font-size: 10px;
    background: #ff4962;
    color: #ffffff;
    padding: 15px 0 15px 0;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin: 50px 0 0 0;
}

footer {
    background: #2D3142;
    display: grid;
    grid-template-columns: 100%;
    gap: 2%;
    vertical-align: middle;
    width: 80%;
    padding: 4vh 10% 4vh 10%;
    text-align: center;
}

footer div:nth-child(1) img{
    height: 30px;
}

footer div:nth-child(1) p{
    margin: 0;
    padding: 0;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

footer div:nth-child(2) img{
    height: 30px;
    cursor: pointer;
    padding: 21.5px 0 0 0;
}

.presentation_1 {
    width: 90%;
    margin-left: 5%;
    color: #2D3142;
    padding-top: 50px;
}

.presentation_1>div:nth-child(1),.presentation_1>div:nth-child(2) {
    display: none;
}

.presentation_1>div:nth-child(1) div {
    width: 100%;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    padding: 25px 0 25px 0;
}

.presentation_1>div:nth-child(1) div h4 {
    font-size: 10px;
}

.presentation_1>div:nth-child(1) div b {
    color: #4458A4;
}

.presentation_1>div:nth-child(1) div:nth-child(2) {
    background: #73ad7c;
    color: #ffffff;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
    margin-top: 205.385px;
}

.presentation_1>div:nth-child(3)>div{
    width: 100%;
    display: grid;
    grid-template-columns: 50px calc(100% - 75px);
    gap: 25px;
    text-align: left;
}

.presentation_1>div:nth-child(3) div i{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.presentation_1>div:nth-child(3) div i span{
    font-size: 30px;
    padding: 10px 0 0 10px;
    color: #4458A4;
}

.presentation_1>div:nth-child(3) h4{
    margin: 0;
    font-size: 15px;
}

.presentation_1>div:nth-child(3) h5{
    margin: 0;
    color: rgba(45,49,66,0.7);
    font-size: 10px;
}

.presentation_1 hr.hor {
    position: relative;
    border: none;
    border-top: 7px dotted #95a4ff;
    height: 3px;
    width: 100px;
    z-index: 1;
    margin-top: 46.5px;
}

.presentation_1 hr.hor.bis {
    margin-top: 293px;
}

.presentation_1 .ver-contain {
    height: 50px;
}

.presentation_1 hr.ver {
    border: none;
    border-top: 3px dotted #95a4ff;
    height: 0px;
    width: 50px;
    z-index: 1;
    transform: rotate(90deg);
    margin-top: 23.5px;
}

.div_8 {
    width: 80%;
    padding: 50px 10% 50px 10%;
    text-align: center;
    background: #95a4ff;
}

.div_8 h1 {
    font-size: 15px;
    margin: 0;
}

.accordion-contain {
    width: 100%;
    padding: 30px 0 0 0;
}

.accordion {
    margin: 10px 0 10px 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 10px;
}

.accordion h3{
    margin: 0;
    padding: 20px;
    color: #2D3142;
    font-size: 12px;
}

.accordion:hover {
    background: #EAEAEA;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.active {
    background: #EAEAEA;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.accordion-panel {
    margin: 0;
    padding: 0 20px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 10px;
}

.accordion-panel h4 {
    margin: 0;
    padding-bottom: 25px;
    color: rgba(45,49,66,0.7);
    font-weight: bold;
    font-size: 10px;
}

.active-title {
    color: #4458A4 !important;
}

.div_tarification {
    padding-top: 150px;
    text-align: center;
}

.div_tarification h1 {
    font-size: 25px;
    margin: 0;
    width: 90%;
    margin-left: 5%;
}

.div_tarification h6 {
    font-size: 10px;
    margin: 0;
    padding-top: 5px;
    width: 90%;
    margin-left: 5%;
}

.tarification_content {
    width: 80%;
    margin-left: 10%;
    display: grid;
    grid-template-columns: 100%;
    gap: 50px 0;
    vertical-align: middle;
    padding: 50px 0 50px 0;
}

.tarification_content>div {
    padding: 25px 25px 55px 25px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    text-align: center;
}

.tarification_content div h3 {
    margin: 0;
    padding: 0px 0 20px 0;
    font-size: 35px;
    text-align: left;
}

.tarification_content div h3 b {
    color: #81838d;
    padding: 0 5px 0 5px;
    font-size: 25px;
}

.tarification_content hr {
    width: 25%;
    background: #d5d5d9;
    height: 3px;
    border: none;
    border-radius: 10px;
    margin: 0;
}

.tarification_content div h2 {
    margin: 0;
    font-size: 20px;
    padding: 20px 0 0 0;
    text-align: left;
}

.tarification_content div h4 {
    padding-top: 20px;
    margin: 0;
    font-size: 13px;
    color: #4458A4;
    text-align: left;
}

.tarification_content div h6 {
    margin: 0;
    font-size: 12px;
    color: rgba(68,88,164,0.7);
    text-align: left;
}

.tarification_content div h5 {
    margin: 0;
    font-size: 12px;
    color: rgba(68,88,164,0.7);
    padding: 10px 0 0 0;
}

.tarification_content div .task {
    margin: 20px 0 0 0;
    padding: 15px 25px;
    font-weight: bold;
    font-size: 15px;
    color: #2d3142;
    background: #d5d5d9;
    border-radius: 10px;
}

.tarification_content div a {
    display: block;
    width: 100%;
    background: #ff4962;
    padding: 10px 0 10px 0;
    border-radius: 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin: 25px 0 0 0;
}

.pricing-select:focus  {
    margin: 15px;
    background: red;
}

.tarification_content .select_wrap {
    width: 100%;
    margin: 20px 0 0 0;
    position: relative;
    user-select: none;
    text-align: left;
}

.tarification_content .select_wrap .default_option{
    background: #d5d5d9;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarification_content .select_wrap .default_option li {
    padding: 15px 25px;
    font-weight: bold;
    font-size: 15px;
}

.tarification_content .select_wrap .default_option li div p {
    margin: 0;
}

.tarification_content .select_wrap .default_option:before {
    content: "";
    position: absolute;
    top: 17.5px;
    right: 25px;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-color: transparent transparent #2d3142 #2d3142;
    transform: rotate(-45deg);
}

.tarification_content .select_wrap .select_ul {
    position: absolute;
    width: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 0;
}

.tarification_content .select_wrap .select_ul li {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
}

.tarification_content .select_wrap .select_ul li div p:nth-child(1) {
    margin: 0;
    color: #ff4962;
    font-size: 12px;
}

.tarification_content .select_wrap .select_ul li div p:nth-child(2) {
    margin: 0;
}

.tarification_content .select_wrap.active-select .default_option:before {
    top: 21.5px;
    transform: rotate(-225deg);
}

.tarification_content .select_wrap.active-select .select_ul {
    display: block;
}

.container {
    margin: 0;
    cursor: pointer;
    text-align: right;
}
svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    height: 75px;
    width: 75px;
}
.activate svg {
    transform: rotate(90deg);
}
path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
path:nth-child(1) {
    transform-origin: 36% 40%;
}
path:nth-child(2) {
    stroke-dasharray: 29 299;
}
path:nth-child(3) {
    transform-origin: 35% 63%;
}
path:nth-child(4) {
    stroke-dasharray: 29 299;
}
path:nth-child(5) {
    transform-origin: 61% 52%;
}
path:nth-child(6) {
    transform-origin: 62% 52%;
}
.activate path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}
.activate path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}
.activate path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.activate path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}
.activate path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.activate path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}
