/*
    Copyright 2022 PRO TV S.A. All rights reserved.
    Contact: @protv.ro
*/
@charset "utf-8";

/*
        INCLUDES
@import "reset.css";
@import "bootstrap.min.css";
@import "animate.css";
@import "fontawesome-all.min.css";
@import "footer.css";
*/

/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* GENERAL */
:root {
    --main-color-hero: 221, 172, 190;
    --main-color: 131, 194, 52;
    --second-color: 32, 73, 152;
    --bg-color: 255, 255, 255;
    --pro-blue: 31, 85, 255;
    --white: 255, 255, 255;
    --black: 15, 15, 15;
    --grey: 204, 204, 204;
}

::placeholder {
    color: rgba(var(--white), 1) !important;
}

:-ms-input-placeholder {
    color: rgba(var(--white), 1) !important;
}

::-ms-input-placeholder {
    color: rgba(var(--white), 1) !important;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: rgba(var(--second-color), 1);
    transition: all 0.2s linear;
    text-decoration: none;
}

a:hover {
    color: rgba(var(--second-color), .75);
    transition: all 0.2s linear;
    text-decoration: none;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    font-weight: 400;
    font-style: normal;
    background: rgba(var(--bg-color), 1);
    color: rgba(var(--black), 1);
    z-index: 2;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    height: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

::-webkit-scrollbar-corner {
    background-color: #F5F5F5;
}

body {
    margin: 0;
    font-size: 100%;
}

.bg-light {
  background-color: transparent!important;
}

.brand-logo {
    background: transparent;
    width: 93px;
    height: 18px;
    margin: 0;
    margin-right: 10px;
    background-repeat: no-repeat;
    opacity: 1;
    text-indent: -9999px;
}

section.header {
    background-image: url('../images/header-texture.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
}

section.header a {
    color: #FFF;
}

.navbar-light .navbar-brand {
    color: #FFF;
} 

.main-description {
    margin-top: 100px;
    margin-bottom: 40px;
    font-size: 20px;
}

h1 {
    font-weight: 600;
    margin-bottom: 50px;
    font-size: 60px;
}

h2 {
    font-weight: 600;
}

h4 {
    font-size: 18px;
}

.format-title {
    margin: 60px 0;
}

.card {
    background-color: #ccc;
    cursor: pointer;
    border-radius: 10px;
    height: 400px;
    padding: 35px;
    margin: 15px 0;
}

.card img {
    max-width: 158px;
}

.card .format-name {
    font-size: 30px;
    font-weight: 500;
}

.card .divider {
    width: 95%;
    margin-bottom: 15px;
    border-top: 2px solid rgba(var(--black), 1);
}

.card .format-responsiveness {
    font-size: 30px;
    font-size: 300;
}
.card .format-responsiveness i {
    padding: 0 10px;
}
.card .format-description {
    font-size: 18px;
    font-size: 300;
}

.btn-small {
    background: none;
	color: inherit;
	border: none;
	padding: 15px;
	font: inherit;
	cursor: pointer;
	outline: none;
    display: inherit;
}
.btn-small:focus {
    outline: 0!important;
    border: none;
    box-shadow: none;
}

[id*="hide-card"] {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 30px;
}
.description-wrapper {
    z-index: 4;
    position: relative;
    width: 70%;
    background: rgba(var(--bg-color), 1);
    padding: 60px;
    overflow-y: scroll;
    -webkit-box-shadow: 0px 0px 29px 4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 29px 4px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 29px 4px rgba(0,0,0,0.75);
}
.description-container {
    opacity: 0;
    z-index: -1;
    transition: 0.3s ease;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
}

.description-container.show {
    opacity: 1;
    z-index: 3;
}

.description-container .format-name {
    font-size: 26px;
    font-weight: 600;
    padding-top: 30px;
    padding-bottom: 60px;
}
.description-container .description-hl {
    font-size: 30px;
    font-weight: 600;
    padding: 30px 0;
    color: rgba(var(--pro-blue), 1);
}
.description-container .description-content {
    font-size: 18px;
}

.demo-btn {
    background-color: rgba(var(--pro-blue), 1);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    border: 1px solid rgba(var(--pro-blue), 1);
}
.demo-btn:hover {
    background-color: var(--white);
    color: rgba(var(--pro-blue), 1);
    text-decoration: none;
}
.download-btn {
    border: 1px solid rgba(var(--pro-blue), 1);
    padding: 10px 25px;
    border-radius: 50px;
    color: rgba(var(--pro-blue), 1);
    font-size: 1.2rem;
}
.download-btn:hover {
    background-color: rgba(var(--pro-blue), 1);
    color: white;
    text-decoration: none;
}

#ibu_footer_container {
    margin-top: 50px;
}
@media (max-width: 1000px) {
    .card .format-name {
        font-size: 24px;
    }
    .description-wrapper {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
    }
    .description-container .format-name {
        font-size: 32px;
        font-weight: 600;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .description-container .description-hl {
        font-size: 18px;
        padding: 15px 0;
    }
    .description-container .description-content {
        font-size: 14px;
    }
    .description-wrapper .img img {
        max-width: 200px;
        margin-top: 30px;
    }
}

@media (max-width: 500px) {
    .main-description {
        padding-left: 15px;
        padding-right: 15px;
    }
    h1 {
        font-size: 45px;
    }
    .card {
        margin: 10px 20px;
        height: auto;
        min-height: 400;
    }
    .card .format-name {
        font-size: 24px;
    }
    .card .format-description {
        font-size: 18px;
    }
    .card img {
        max-width: 100%;
    }
    .description-wrapper {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
    }
    .description-container .format-name {
        font-size: 32px;
        font-weight: 600;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .description-container .description-hl {
        font-size: 18px;
        padding: 15px 0;
    }
    .description-container .description-content {
        font-size: 14px;
    }
    .description-wrapper .img img {
        max-width: 200px;
        margin-top: 30px;
    }
}


.special-banners h4 {
    margin-top: 10px;
    font-weight: bold;
}

.special-banners span.format-specs {
    color: #898989;
}