@font-face {
  font-family: 'Instrument Sans';
  src: url('/fonts/InstrumentSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Instrument Sans';
  src: url('/fonts/InstrumentSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}


@font-face {
  font-family: 'Instrument Sans';
  src: url('/fonts/InstrumentSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Instrument Sans', sans-serif;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.2;
}

p {
    font-size: 1.4rem;
    line-height: 1.5;
   /* color: #3E3D3D; */
    color: #000000;
}

span.highlight {
    color: #CB0A44
}

.header {
    position: relative;
    background-image: url(img/background_header.jpg);
    background-size: cover;
    background-position: center;
}

.header .header-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.header .header-container {
    position: relative;
    z-index: 5;
}

.versions {
    background-color: white;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px;
}

.versions a {
    text-decoration: none;
}

.header .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffffff66;
    width: 100%;
    padding: 12px 20%;
}

.header .menu .logo {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.header .menu .logo h1 {
    color: white;
    text-decoration: none;
}

.header .menu .logo img {
    width: 48px;
}

.header .menu .language {
    display: flex;
    gap: 8px;
    align-items: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 100px 10%;
}

.header .hero .nav {
    display: flex;
    justify-content: center;
}

.header .hero .nav a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
}

.header .hero .nav a.selected {
    text-decoration: none;
    color: white;
    background-color: black;
}

.header .hero .nav a img {
    width: 24px;
}

.header .hero .nav a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .hero .nav a:hover {
    background-color: rgb(143, 132, 132);
}

.header .hero .box-download {
    padding: 70px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-width: fit-content;
}

.header .hero .box-download h2 {
    text-align: center;
}

.header .hero .box-download p {
    text-align: center;
}

.header .hero .box-download .url-button {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
}

.header .hero .box-download .url-button .header-url {
    background-color: white;
    padding: 20px 66px 20px 66px;
    box-shadow: #3A3939;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.header .hero .box-download .url-button .header-url img.link {
    width: 20px;
}

.header .hero .box-download .url-button .header-url .button {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
}

.header .hero .box-download .url-button .header-url .button:hover {
    background-color: #bfbfbf;
}

input.input-url {
    border: none;
    width: 40ch;
    padding: 12px;
    color: #000 !important;
    font-weight: 500;
    font-size: 15px;
}

input.input-url:focus {
    outline: none !important;
    }

button.header-download {
    background-color: #FFF204;
    border: none;
    border-radius: 8px;
    font-weight: bolder;
    padding: 10px 76px;
    font-size: 1.3rem;
    cursor: pointer;
}

button.header-download:hover {
    background-color: #d8cd05;
}

.loadstatus {
    padding: 60px 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0px;
}

.loader {
    width: 40px;
    height: 40px;
    border: 10px solid #fff;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.info {
    padding: 100px 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}

.steps {
    background-color: #F8F8F8;
    padding: 100px 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.box1 {
    background-color: #F55F5F;
    padding: 20px 40px;
    position: relative;
    display:none;
}

img.hand-icon {
    position: absolute;
    z-index: 5;
    top: 30px;
    width: 70px;
    right: auto;
}

.box2 {
    background-color: #EF5E04;
    padding: 20px 40px;
    position: relative;
    display:none;
}

img.hand-icon-paste {
    position: absolute;
    top: 60px;
    right: 50px;
    width: 70px;
    z-index: 5;
}

.box3 {
    background-color: #3F3F3F;
    padding: 20px 40px;
    display:none;
}

.box3 img {
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.box-url {
    border: 4px solid red;
    border-radius: 8px;
    background-color: white;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-url p {
    font-size: 1rem;
    font-weight: 600;
}

.box-content {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    background-color: white;
}

.box-content h3 {
    color: #C30909;
    font-size: 1.5rem;
}

.box-content p {
    font-size: 1.1rem;
    font-weight: 500;
}

.button {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 4px;
}

.button img {
    width: 16px;
    height: 16px;
}

.features {
    padding: 100px 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.features .text {
    display: flex;
    gap: 50px;
    margin-bottom:70px;
    align-items: center;
}

.features .text img {
    width: 200px;
    height: 400px;
    flex: 0 0 40%;
    border-radius: 8px;
    object-fit: cover;
}

.features .text div {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content:center ;
}

.features .text div h3 {
    color: #CB0A44;
    font-size:1.5rem;
}

.features .text div p {
    font-size: 1.5rem;
}

.faq {
    position: relative;
    padding: 80px 0;
}

.faq .faq_background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 5;
    padding: 0 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.questions {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 15px;
}


.questions li {
    
    text-align: left;
}

.questions h3 {

    color:#3E3D3D;
}

.questions:hover {
    background-color: #eae0e0;
}

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

.answer {
    margin-top: 16px;
    display: none;
}

.answer.show {
    display: flex;
}

.answer p {
    font-size: 1rem;
    text-align: left;
}

.footer {
    padding: 40px 20%;
    display: flex;
    justify-content: space-between;
    background-image: url(img/footer_img.jpg);
    background-position: center;
    background-size: cover;
    color: white;
}

.footer .column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer .column h4 {
    color: #FFFB11;
    margin-bottom: 8px;
}

.footer .column a {
    font-size: 1rem;
    cursor: pointer;
    color: white;
}

.footer .column a:hover {
    color: rgb(216, 216, 216);
}

.sm-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.social-media {
    display: flex;
    gap: 16px;
}

.social-media img {
    width: 28px;
}

.copyright {
    padding: 20px 30%;
    text-align: center;
    background-color: #3A3939;
}

.copyright p {
    color: white;
    font-size: 0.8rem;
}


.main {
    padding: 60px 20%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.main .info-reel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.main .info-reel p {
    font-size: 1rem;
    text-align: center;
    font-weight: 800;
}

.main .info-reel .video-container {
    width: 300px;
}

.main .info-reel .video-container img.video {
    width: 100%;
}

.main .info-reel .video-container button {
    width: 100%;
    background-color: #2FB6FF;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
}

.main .info-reel .video-container button:hover {
    background-color: #1187c7;
}

.main .info-reel .video-container-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    align-items: center;
    gap: 20px;
}

.main .info-reel .video-container-grid .video-container {
    width: 300px;
}

.main .info-reel .video-container-grid .video-container img.video {
    width: 100%;
}

.main .info-reel .video-container-grid .video-container button {
    width: 100%;
    background-color: #2FB6FF;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
}

.main .info-reel .video-container-grid .video-container button:hover {
    background-color: #1187c7;
}

.data-reel {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.data-reel div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.data-reel img {
    width: 30px;
}

.main .comments {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.main .comments .comment {
    border: 1px solid rgb(110, 109, 109);
    border-radius: 8px;
    padding: 20px;
}

.main .comments .comment .comment-user {
    color: #7e7e7e;
}

.main .comments .comment .comment-text {
    font-weight: 800;
}


 h1.page_heading {color:#fff !important; text-align: center !important; font-size: 2em; letter-spacing: 1px;}

 
 .page_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}


.page_content p {
    font-size: 21px;
}

.page_content h2 {
    margin-top: 50px;
    margin-bottom:20px;
    font-size: 27px;
}


.page_content ul {padding:10px 25px;}


.page_content ul li , .page_content ol li {

    font-size: 20px;
    line-height: 2em;
    /* color: #3E3D3D; */

    color: #000000;
}


.share_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0px;
    font-size: 18px;
    width:100%;
    margin-bottom: 50px;
}

.dd_box{width:30%;}

.share_content input[type="text"] {
    width:100%;
    padding: 5px 10px;
    border: 1px solid #d8d8d8;
    background: #d8d8d8;
    border-top-left-radius: 4px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 4px;
    font-size:inherit;


  }

  .share_content input[type="text"]:focus {
  outline: none;
}

  .share_content .btn {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #EFEFEF;
    font-size: 16px;

  }


.article_image{

    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
}

img.dropdown {
    width: 20px;
    height: 20px;
}


button.download-video{margin-top:10px;} /*Download button for reel */
