/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@font-face {
    font-family: 'Tahoma-Regular';
    src: url('fonts/Tahoma-Regular.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tahoma-Bold';
    src: url('fonts/TAHOMAB0.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    /* overflow: hidden; */
	font-family: 'Tahoma-Regular';

}


h1 {
	font-size: 80px;
	margin-bottom: 10px;
    line-height: 1.3;
    color: rgb(219, 134, 134);
}

h2 {
    color:  #fb5607;
	font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
}

p {
    font-size: 24px;
    line-height: 1.5;
    color: #cab5b5;
    font-weight: 500;
}

.text-small {
    font-size: 20px;
    margin-bottom: 0;
}

strong {
	font-family: 'Tahoma-Bold';
}

.text-center {
    text-align: center!important;
}

.text-left {
    text-align: left!important;
}

main {
    min-height: 100vh;
    position: relative;
    background: #130435;
    padding: 30px 50px;
}
.mb-10 {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0px;
}

.clr-red {
    color: #c1121f!important;
}

.clr-white {
    color: #ffffff!important;
}

.clr-orange {
    color: #c74506!important;
}

.clr-blue {
    color: #177898!important;
}

.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 546px; 
    min-width: 546px;
    aspect-ratio: 1 / 1.5;
    border-radius: 35px;
}

.slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease-in-out;

}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

.content {
    width: 50%;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper article {
    margin-top: 30px;
    text-align: center;
}

.wrapper article ul {
    text-align: left;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    max-width: 700px;
    margin: 0 auto 20px;
}

.wrapper article ul li {
    margin-bottom: 12px;
    font-size: 22px;
    color: #177898;
    font-weight: 500;
}

.wrapper article ul label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.wrapper article h2 {
    text-align: left;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    min-width: 150px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    height: 42px;
    padding: 0 30px;
}

.btn--primary {
    background-color: #177898;
}

.btn--secondary {
    background-color: #d8315b;
}

.progressbar-wrapper {
    padding: 30px;
    max-width: 80%;
    background-color: rgba(255,255,255,.8);
    border-radius: 15px;

}

.progressbar {
    background-color: #fff;
    height:26px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.progressbar .bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 15px;
    background-color: #177898;
    transition: all .3s ease;
}


.wrapper .step-9 h1 {
    color: #7284ff;
}
.wrapper .step-9 p {
    line-height: 1.3;
}

.wrapper .step-9 ul {
    columns: 1!important;
    -webkit-columns: 1!important;
    -moz-columns: 1!important;
    margin:0 0 10px;
}

.wrapper .step-9 ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.3;
}

.wrapper .step-9 ul li svg {
    min-width: 24px;
}

.footer-text {
    font-size: 20px;
    text-align: center;
}

@media(max-width: 1200px) {

    .wrapper {
        align-items: flex-start;
    }
    .slider {
        width: 350px;
        min-width: 350px;
    }

    .content {
        width: calc(100% - 400px);
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 23px;
    }

    p {
        font-size: 18px;
    }
}

@media(max-width: 991px) {
    main {
        padding: 20px;
    }
}

@media(max-width: 768px) {
    .slider {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 0;
    }

    .progressbar-wrapper {
        padding: 20px;
        background-color: rgba(255,255,255,.2);  
    } 

    .progressbar {
        height: 20px;
        border-radius: 10px;

    }

    .progressbar .bar {
        border-radius: 10px;
    }

    .wrapper {
        position: relative;
        z-index: 1;
    }

    .wrapper article {
        margin-top: 0;
    }

    .footer-text {
        position: relative;
        z-index: 5;
    }

    .slider:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content:"";
        background-color: rgba(12, 20, 78, 0.81);
        z-index: 1;
    }

    .content {
        position: relative;
        z-index: 5;
        width: 100%;
        text-align: center;
    }

    h1 {
        color: #177898;
    }

    h2 {
        color: #04b9fb;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    p {
        color: #fff;
        line-height: 1.2;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .wrapper article ul li {
        color: #fff;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .progressbar-wrapper {
        max-width: 100%;
    }

    .step-9 li svg path {
        fill: #177898;
    }

    .clr-red {
        color: #c1acac!important;

    }
}




