@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700;800;900&display=swap');

.menu-icon {
	display: none;
	align-self: center;
	font-size: 30px;
	margin-right: -20px;
	color: #adadad;
	cursor: pointer;
}

.menu-title {
	font-size: 14px;
	font-weight: 600;
	color: #c0c0c0;
	background: linear-gradient(to right, #4061f6, #8435da);
	-webkit-background-clip: text;
	color: transparent;
}

.wrap-credit-upgrade {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.fas.fa-coins {
	background: linear-gradient(to right, #8746e9, #3676d7);
	-webkit-background-clip: text;
	color: transparent;
	margin-left: 5px;
	font-size: 18px;
	vertical-align: middle;
}

.credit-info {
	position: relative;
}

.credit-info:hover .credit-tooltip {
	visibility: visible;
	opacity: 1;
}

.credit-tooltip {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	transform: translateY(0);
	transition: opacity 0.2s ease-in-out;
	background-color: #15171F;
	color: white;
	padding: 10px;
	border-radius: 10px;
	z-index: 10;
	border: 1px solid #2B2F3B;
	min-width: 180px;
	box-sizing: border-box;
	line-height: 18px;
	margin-left: -20px;
}

form.language-selector {
	display: inline-block;
	margin-left: 10px;
	border-radius: 10px;
	border: none;
	overflow: hidden;
}

form.language-selector select {
	font-family: "Poppins";
	padding: 8px;
	font-size: 16px;
	color: white;
	border: none;
	background-color: #1F2937;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.credit-tooltip-header {
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 14px;
}

.credit-tooltip-plan {
	font-weight: 400;
	display: flex;
	margin-bottom: 10px;
}

.plan-name {
	color: #fff;
	margin-right: 5px;
}

.credit-amount {
	color: #9B9EA3;
	font-weight: 400;
}

.credit-available {
	font-weight: 400;
}

.credit-expiration {
	color: #9B9EA3;
	font-weight: 400;
}

.no-credits {
	color: #9B9EA3;
	font-weight: 400;
}

@media (max-width: 768px) {
	.credit-tooltip {
		max-width: none;
		left: 50%;
		transform: translateX(-50%);
		box-sizing: border-box;
	}
	.credit-tooltip-header,
	.credit-tooltip-plan,
	.credit-available,
	.credit-amount,
	.credit-expiration,
	.no-credits {
		font-size: 12px;
	}
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #0E1015;
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding-left: 220px;
}

header {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	padding: 20px 10px;
	position: fixed;
	top: 0;
	left: 0;
	width: 220px;
	height: 100vh;
	box-sizing: border-box;
	z-index: 1000;
	background-color: #0e1015b8;
	backdrop-filter: blur(5px);
}

.main {
	margin-left: 250px;
	width: calc(100% - 250px);
	padding: 10px;
}

.header-right,
.menu {
	display: flex;
	flex-direction: column;
}

.footer-logo {
	margin-left: 10px;
	margin-right: 10px;
}

.logo {
	color: #e7e6e4;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
}

.logo span {
	background: linear-gradient(to right, #4061f6, #8435da);
	-webkit-background-clip: text;
	color: transparent;
}

.login-button a i {
	font-size: 12px;
	vertical-align: middle;
	margin-right: 5px;
}

@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.login-container {
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.connect-button {
	background: linear-gradient(to right, #6d22da, #364ed7);
	border-radius: 10px;
	color: #ffffff;
	padding: 8px;
	transition: background-color 0.3s ease;
	cursor: pointer;
	text-align: center;
	justify-content: center;
	width: 80px;
	font-size: 14px;
}

.connect-button:hover {
	background: linear-gradient(to right, #6520cc, #2f45c5);
}

.login-button {
	display: inline-block;
	margin-left: 10px;
	line-height: 36px;
}

.login-button a {
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	color: #c0c0c0;
	text-decoration: none;
}

.login-button a:hover,
.login-button a:visited {
	text-decoration: none;
}

.header-upgrade-button a {
	padding: 10px 20px;
	margin-left: 20px;
	border-radius: 50px;
	background: linear-gradient(to right, #6d22da, #364ed7);
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	display: flex;
	justify-content: center;
	text-align: center;
}

.user-badge {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #31343B;
	border-radius: 5px;
	margin-left: 15px;
	font-weight: 700;
	cursor: pointer;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	min-width: 160px;
	right: 0;
	z-index: 1;
	background-color: #15171F;
	border-radius: 5px;
	border: 0.6px solid #31343B;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dropdown-content.show {
	display: block;
	opacity: 1;
}

.dropdown-content a {
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-weight: 600;
	color: #9b9EA3;
	font-size: 14px;
}

.show {
	display: block;
}

.credit-info {
	font-weight: 600;
	font-size: 12px;
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.content-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 2em;
}

.text-container {
	display: flex;
	flex-direction: column;
	width: 80%;
	margin: 1em 0;
}

.two-columns {
	display: flex;
	justify-content: space-between;
}

.centered-text {
	text-align: center;
	width: 100%;
	justify-content: center;
	display: flex;
}

.column {
	width: 45%;
	opacity: 0;
}

.tarif-button a:hover {
	color: #C8C3C3;
}

.tarif-button a {
	transition: color 0.3s ease;
}

.email-form {
	display: none;
	width: 25%;
	margin: 0 auto;
	padding: 1em;
	background-color: #20232C;
	border-radius: 10px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.email-input {
	width: 60%;
	padding: 0.5em;
	border: none;
	border-radius: 10px;
	margin-right: 1em;
}

.confirm-button {
	padding: 0.5em 1em;
	border: none;
	border-radius: 10px;
	background-color: #723beb;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 800;
}

.confirm-button:hover {
	background-color: #9162f7;
}

.column-img {
	width: 50%;
	border-radius: 10px;
}

.column-img-landscape {
	width: 110%;
	border-radius: 20px;
	margin-top: 30px;
}

.column-img-landscape-mario {
	margin-left: -80px;
}

.column-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tarifs-warning {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	margin-top: 50px;
}

.tarif-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.tarif-form h2 {
	margin-top: 0;
	color: white;
	font-size: 20px;
	text-align: left;
	margin-bottom: 10px;
}

.tarif-form ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 15px;
}

.tarif-form .credits {
	color: #49DE80;
	font-size: 14px;
	margin-top: -10px;
	margin-bottom: 10px;
	font-weight: 600;
}

.error-message {
	color: #ff4e4e;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}

.tarif-price {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 15px;
}

.tarif-form li {
	padding: 5px 0;
	color: white;
}

.active-label {
	background-color: #2B2F3B;
	padding: 2px 10px;
	border-radius: 10px;
	margin-left: 115px;
	font-size: 16px;
	font-weight: 700;
}

.colorful-part {
	background: linear-gradient(to right, #4061f6, #8435da);
	-webkit-background-clip: text;
	color: transparent;
}

.sub-title2 {
	color: #c8c3c3;
	font-size: 15px;
	text-align: center;
	font-weight: 400;
	width: 90%;
	margin: 0 auto;
}

.main-title {
	font-size: 3em;
	color: white;
	width: 100%;
	line-height: 60px;
}

.small-text {
	color: #c8c3c3;
	font-size: 15px;
	width: 100%;
	text-align: center;
	font-weight: 400;
}

.cta-button {
	padding: 10px 20px;
	background: linear-gradient(to right, #6d22da, #364ed7);
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 16px;
}

.cta-button:hover {
	background-color: #511bca;
}

.cta-button:active {
	transform: scale(0.9);
}

.two-columns {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	margin-bottom: 50px;
}

.column {
	width: 45%;
}

.half-column-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-right: -60px;
}

.half-column {
	flex: 1;
	margin-top: 50px;
	padding: 15px;
	box-sizing: border-box;
}

.half-column-img {
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	border-radius: 20px;
}

.video-container-discover {
	display: flex;
	margin-top: 120px;
	justify-content: center;
}

.video-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 20px;
}

.video-style {
	width: 80%;
	border-radius: 20px;
	margin-bottom: 10px;
}

.video-title {
	text-align: center;
}
     
.video-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-container video {
    border-radius: 10px;
    width: 35vw;
    position: relative;
    z-index: 0;
    min-width: 340px;
}

.sound-icon {
    position: absolute;
    top: 0;
    left: 625px;
    color: white;
    cursor: pointer;
    z-index: 1;
    font-size: 40px;
}

.update-feature {
    opacity: 0;
}

.list-card {
    margin-bottom: 50px;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 50px;
}

.feature-list li {
    flex: 0 0 15%;
    background-color: #15171F;
    margin-bottom: 20px;
    border-radius: 40px;
    padding: 20px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    text-align: center;
    border: 1px solid #2B2F3B;
}

.feature-list li:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.feature-title {
    font-size: 1.8em;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.feature-description {
    color: #c8c3c3;
}

.title-video-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-long-arrow-alt-right {
    font-size: 2em;
    margin-left: 10px;
    margin-right: 10px;
}

.prompt-container {
    background-color: #20232C;
    border-radius: 20px;
    padding: 1px;
    min-width: 340px;
    text-align: center;
}

.features-container {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    opacity: 0;
}

.feature-list li {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease-out;
}

.feature-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.emoji {
    font-size: 50px;
}

.discover-button {
    background-color: #2B2F3B;
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 1px;
    outline: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-bottom: 40px;
    text-decoration: none;
}

.image-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    padding: 10px;
    background-color: #2B2F3B;
    color: #FFF;
    cursor: pointer;
}

.image-button:hover {
    background-color: #242832;
}

.image-button img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.options-form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.options-form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #ffffff;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
}

.form-group label input[type=radio] {
    display: none;
}

.custom-form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.image-style-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

input[type="radio"] {
    display: none;
}

.custom-radio-button:hover {
    background-color: #242832;
}

input[type="radio"]:checked + .custom-radio-button {
    background: linear-gradient(to right, #6d22da, #364ed7);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 28px;
    border-radius: 34px;
    background: linear-gradient(to right, #6d22da, #364ed7);
}

.toggle-switch input[type=checkbox]:checked + span {
    background-color: #FFFFFF;
}

.toggle-switch input[type=checkbox] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.toggle-switch span {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 26px;
    height: 26px;
    background-color: #E0E0E0;
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-switch input[type=checkbox]:checked + span {
    left: 33px;
}

.toggle-switch input[type=checkbox]:checked ~ .toggle-switch {
    background-color: #7b53d3;
}

#storyDetail {
    width: 100%;
    height: 150px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: #31343c;
    color: #FFF;
}

.form-button {
    background: linear-gradient(to right, #6d22da, #364ed7);
    font-size: 16px;
    font-weight: 600;
    color: white;
    padding: 10px;
    margin-bottom: 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 16%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-button:hover {
    background: linear-gradient(to right, #7026de, #3e56e0);
}

h2 {
    text-align: center;
    color: #ad7afa;
}

img.video-dim {
    height: 50px;
    cursor: pointer;
}

.dimension-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    padding: 10px;
    background-color: #2B2F3B;
    color: #FFF;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.dimension-button:hover {
    background-color: #242832;
}

.dimension-button div {
    margin: 10px auto;
}

#iphone {
    width: 50px;
    height: 100px;
    background: #7f8c8d;
    border-radius: 10px;
}

#mac {
    width: 120px;
    height: 70px;
    background: #7f8c8d;
    border-radius: 8px;
}

#square-icon {
    width: 100px;
    height: 100px;
    background: #7f8c8d;
    border-radius: 8px;
}

.video-dimension-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 200px;
}

.longueur-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

.generate-video-title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.generate-video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 20px;
}

.generate-video {
    flex: 0 0 250px;
    margin: 10px;
    background-color: #15171F;
    border-radius: 10px;
    padding: 0px 0px 20px 0px;
}

.generate-video video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.generate-video .video-date {
    margin-top: 10px;
    text-align: center;
}

.video-date {
    font-weight: 500;
    font-size: 14px;
    color: #d7d4d1;
}

.delete-button i {
    margin-right: 5px;
}

.delete-button {
    margin: 10px auto;
    padding: 8px 16px;
    background-color: #6722FF;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 20%;
    font-weight: 600;
    box-sizing: border-box;
}

.loading-container {
    background: #20232C;
    width: 50%;
    border-radius: 10px;
    margin: 0 auto;
    display: none;
    min-height: 400px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.loading-message {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #e2e3e7;
    text-align: center;
    padding: 20px;
    white-space: pre-line;
}
.custom-error {
    color: red;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
}

.footer-title {
    font-size: 1.8em;
    color: #fff;
}

.footer-text {
    color: #c0c0c0;
    font-size: 12px;
    margin-left: 10px;
}

.footer-links {
    margin-left: 10px;
    gap: 5px;
    display: flex;
}

.footer-link {
    text-decoration: none;
    color: #c0c0c0;
    font-size: 12px;
}

.wrap-footer-logo {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.gray-link {
    color: #d1d2d6;
}

.footer-logo img {
    max-width: 40px;
}

.upgrade-button a {
    padding: 6px 10px;
    border-radius: 10px;
    background: linear-gradient(to right, #6d22da, #364ed7);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.upgrade-button a:hover {
    background: linear-gradient(to right, #7026de, #3e56e0);
}

.cta-button:hover {
    background: linear-gradient(to right, #7026de, #3e56e0);
}

.contact-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    display: flex;
    position: fixed;
    top: 50%;
    border: 0.5px solid #3f3f3f;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 1200px;
    height: auto;
    background-color: #0E1016;
    border-radius: 10px;
    overflow: hidden;
}

.contact-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: rgb(55, 55, 55);
    font-size: 30px;
    font-weight: 400;
    cursor: pointer;
}

.contact-close:hover,
.contact-close:focus {
    text-decoration: none;
}

.modal-left {
    width: 50%;
    padding: 20px;
}

.modal-right {
    width: 50%;
}

.modal-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-title {
    font-size: 24px;
    font-weight: 560;
    margin-bottom: 20px;
    justify-content: center;
    display: flex;
    color: #d2d2d2;
}

#contactForm {
    display: flex;
    flex-direction: column;
}

#contactForm label {
    color: #c0c0c0;
    margin-bottom: 5px;
    font-size: 14px;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm select,
#contactForm textarea {
    background-color: #262B33;
    border: none;
    padding: 15px;
    border-radius: 5px;
    color: #FFF;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #BBB;
}

#contactForm button[type="submit"] {
    color: #ffffff;
    padding: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 30%;
    font-size: 14px;
    background: linear-gradient(to right, #6d22da, #364ed7);
    margin: 0 auto;
    font-weight: 500;
}

#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border: 1px solid #4b4b4b;
}

.confirmation-message {
    color: #FFF;
    background-color: #262B33;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    form.language-selector {
        margin-left: 5px;
    }

    .header-right .menu div.login-button {
        width: auto;
    }

    .modal-content {
        flex-direction: column;
        align-items: center;
        width: 90%;
        height: auto;
        overflow-y: auto;
        position: absolute;
        top: 5%;
        transform: translate(-50%, 0%);
    }

    .modal-left,
    .modal-right {
        width: 100%;
        padding: 10px;
    }

    .modal-right img {
        height: auto;
    }

    body {
        overflow-y: auto;
    }

    .modal {
        overflow-y: auto;
        position: fixed;
        top: 0;
        height: 100%;
    }

    #contactForm {
        padding: 20px;
    }

    .confirmation-message {
        margin: 30px;
    }
}

@media screen and (min-width: 1100px) {
    .desktop-hidden {
        display: none;
    }
}

@media screen and (max-width: 1100px) {
    .footer-links {
        margin-left: 0px;
        gap: 10px;
    }

    body {
        padding-left: 0px;
    }

    header {
        flex-direction: row;
        height: 60px;
        top: 0;
        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
        align-items: center;
        padding: 10px 50px;
    }

    .credit-tooltip {
        margin-left: 50px;
    }

    .logo {
        color: #e7e6e4;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        margin-left: -20px;
    }

    .wrap-credit-upgrade {
        width: 200px;
    }

    .header-right .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #0E1015;
    }

    .header-right .menu-icon {
        display: block;
    }

    .show-menu .menu {
        display: flex;
    }

    .header-right .menu div.login-button {
        padding: 8px;
    }

    .login-button a {
        font-size: 12px;
    }

    .login-container {
        margin-left: 20px;
        margin-top: 10px;
        width: 100px;
        margin-bottom: 0px;
    }

    .header-right .menu div.connect-button {
        height: auto;
        width: auto;
    }

    .tarif-button {
        margin-right: -30px;
    }

    .menu-icon.cross {
        font-size: 20px !important;
        vertical-align: middle;
    }

    .upgrade-button a {
        margin-left: 0px !important;
        display: inline !important;
    }

    .user-badge {
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .wrap-footer-logo {
        margin-top: 0px;
    }

    .login-button {
        line-height: 16px;
    }

    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 50px;
        margin-right: -15px;
    }

    .hamRotate.active {
        transform: rotate(45deg);
    }

    .line {
        fill: none;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke: #919191;
        stroke-width: 5.5;
        stroke-linecap: round;
    }

    .ham1 .top {
        stroke-dasharray: 40 139;
    }

    .ham1 .bottom {
        stroke-dasharray: 40 180;
    }

    .ham1.active .top {
        stroke-dashoffset: -98px;
    }

    .ham1.active .bottom {
        stroke-dashoffset: -138px;
    }
}

@media screen and (max-width: 900px) {
    .gradient-text {
        font-size: 45px;
    }

    .sub-title {
        font-size: 13px;
    }

    .list-card {
        width: 80%;
        margin: 0 auto;
        margin-top: -20px;
    }

    .sub-title2 {
        font-size: 13px;
        margin-bottom: 50px;
    }

    .title {
        font-size: 22px;
    }

    .text-container {
        margin-top: 80px;
        width: 100%;
    }

    .title-video-container {
        display: block;
    }

    #arrow-icon {
        transform: rotate(90deg);
        margin-bottom: 10px;
        margin-top: 10px;
        justify-content: center;
        display: flex;
    }
}

@media screen and (max-width: 900px) {
    .two-columns {
        flex-direction: column;
        align-items: center;
    }

    .column, .column-content {
        text-align: center;
    }

    .column-content {
        width: 85%;
        padding: 0;
    }

    .main-title {
        font-size: 2em;
        line-height: 40px;
    }

    .small-text {
        font-size: 0.8em;
    }

    .column {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .column-img-landscape {
        width: 350px;
        height: auto;
        margin: 0 auto;
    }
}

@media screen and (max-width: 900px) {
    .column-content {
        order: -1;
    }

    .features-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .content-container {
        width: 100%;
        padding: 0;
    }
}

@media screen and (max-width: 900px) {
    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .feature-list li {
        flex: 0 0 auto;
        margin-bottom: 20px;
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .feature-list li {
        padding: 25px;
    }

    .feature-title {
        font-size: 1.4em;
    }

    .feature-description {
        font-size: 0.8em;
    }

    .emoji {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 900px) {
    .footer {
        padding: 20px;
    }

    .footer-title {
        font-size: 1.4em;
    }

    .footer-text {
        font-size: 0.8em;
        margin: 10px 0;
    }

    .footer-link {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 768px) {
    .logo-partners {
        width: 80px;
        margin: 0 15px;
    }
}

@media screen and (max-width: 1000px) {
    .logo-partners-container {
        flex-direction: column;
    }

    .logo-partners {
        margin: 10px 0;
    }
}

@media only screen and (max-width: 768px) {
    .tarif-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .tarif-form {
        flex: none;
        width: 100%;
        margin: 5px 0;
    }

    .tarif-title {
        font-size: 24px;
        margin: 10px 0;
    }

    .sub-tarif-title {
        font-size: 16px;
        margin: 5px 0;
    }
}

@media screen and (max-width: 768px) {
    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        width: 100%;
        background-color: #15171F;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
        left: 0;
        top: 100%;
    }

    .dropdown-content.show {
        display: block;
        opacity: 1;
    }

    .dropdown-content a {
        color: #9b9EA3;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        line-height: 10px;
    }
}

@media screen and (max-width: 768px) {
    .header-right .menu .login-button a {
        line-height: 0px;
    }
}

@media (min-width: 1024px) {
    header {
        overflow-x: hidden;
        overflow-y: auto;
    }
}
