/* Version: 1.0.0 */

/* -------------------------------------------------------------------------- */
/*	1. Fonts
/* -------------------------------------------------------------------------- */
@font-face {
    font-family: "NotoSansRegular";
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansRegular/NotoSansRegular.eot");
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansRegular/NotoSansRegular.eot?#iefix")format("embedded-opentype"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansRegular/NotoSansRegular.woff") format("woff"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansRegular/NotoSansRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: "NotoSansBoldItalic";
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansBoldItalic/NotoSansBoldItalic.eot");
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansBoldItalic/NotoSansBoldItalic.eot?#iefix")format("embedded-opentype"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansBoldItalic/NotoSansBoldItalic.woff") format("woff"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansBoldItalic/NotoSansBoldItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: "NotoSansItalic";
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansItalic/NotoSansItalic.eot");
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansItalic/NotoSansItalic.eot?#iefix")format("embedded-opentype"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansItalic/NotoSansItalic.woff") format("woff"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansItalic/NotoSansItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: "NotoSansBold";
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansBold/NotoSansBold.eot");
    src: url("/wp-content/themes/ictv/includes/fonts/NotoSansBold/NotoSansBold.eot?#iefix")format("embedded-opentype"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansBold/NotoSansBold.woff") format("woff"),
    url("/wp-content/themes/ictv/includes/fonts/NotoSansBold/NotoSansBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

/* -------------------------------------------------------------------------- */
/*	2. Document Setup
/* -------------------------------------------------------------------------- */
*{
    margin:0;
    padding:0;
}
body{
    position: relative;
    font-family: NotoSansRegular, Arial, sans-serif;
    background: #837f7f;
    font-size: 14px;
    min-height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: NotoSansBold, serif;
    color: #ffffff;
    text-transform: uppercase;
}
h1{
    font-size: 40px;
    letter-spacing: 2px;
}
h2{
    font-size: 30px;
}
h3{
    font-size: 28px;
}
h4{
    font-size: 24px;
    text-align: center;
}
/* Clearing ---------------------------------- */
.clear{
    clear: both;
}

/* -------------------------------------------------------------------------- */
/*	3. Element Base
/* ---------------------------------------------*---------------------------- */
#wrapper{
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    background: #252a2e;
}
a{
    text-decoration: none;
}
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}
ul{
    list-style-type: none;
}
.show{
    left: 0 !important;
    transition: .2s;
}
.bold-font{
    font-family: "NotoSansBold";
}
.regular-font{
    font-family: "NotoSansRegular";
}
.italic-font{
    font-family: "NotoSansItalic";
}
/* -------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------- */
header{
    width: 100%;
    margin: 0;
    background:#171717;
}
.header-container{
    display: flex;
    height: 62px;
}
.header-box{
    width: 100%;
    height: 100%;
    padding: 0 25px;
}
.accordion_menu{
    display: none;
    float: left;
    width: 40px;
    margin-top: 10px;
    height: 40px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAPklEQVRIS+2UsQ0AAAjC5P+jcfeAMogPNBKobHsCp4Kp1EWBLqdgLPmHUVcgVLtyrqY+rLkqEKxruTm9U+YCkPgv6HEeEXYAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-position: center;
}
.logo{
    float: left;
    display: flex;
    align-items: center;
    height: 100%;
}
.left-header{
    float: left;
    height: 100%;
    padding-left: 13px;
}
#top_menu_items{
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
}
#top_menu_items li{
    height: 100%;
}
#top_menu_items li a{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 13px;
    color: #ffffff;
    padding: 0 7px;
    text-transform: uppercase;
}
#top_menu_items > li > a:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background-color: #ff4200;
    transition: width 0.3s;
}
#top_menu_items li a:hover{
    text-decoration: underline;
}
#top_menu_items > li > a:hover:after {
    width: 100%;
}
.right-header{
    float: right;
    display: flex;
    align-items: center;
    height: 100%;
}
.soc_buttons{
    display: flex;
    align-items: center;
    padding-left: 25px;
}
.soc_buttons a{
    padding: 0 7px;
}
.soc_buttons a:hover{
    opacity: 0.8;
}
/* -------------------------------------------------------------------------- */
/*	5.	Site Content
/* -------------------------------------------------------------------------- */
.content{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 65px;
}
.content img{
    border: 0;
    display: inline-block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
.conteiner--top_content{
    position: relative;
    width: 100%;
}
.top_title_image{
    position: absolute;
    top: 17px;
    left: 15px;
}
.top_title_image span{
    display: block;
    font-size: 50px;
    color: #ffffff;
    line-height: 57px;
    text-transform: uppercase;
}
.bottom_title_image{
    position: absolute;
    left: 15px;
    bottom: 17px;
}
.bottom_title_image span{
    display: block;
    font-size: 40px;
    color: #ffffff;
    line-height: 48px;
    text-transform: uppercase;
}
#middle_content{
    padding: 60px 0;
}
.container-middle-block{
    position: relative;
    display: flex;
    justify-content: center;
}
.start_generate img{
    width: 173px;
    height: 188px;
    margin-top: 10px;
    margin-left: -20px;
}
#middle_content .t_img{
    width: 196px;
}
#bottom_content{
    padding-bottom: 200px;
}
.generate_pic{
    opacity: 1;
    transition: 1s;
}
.generate_pic.fade{
    opacity: 0;
    transition: 1s;
}
.generate_pic img.generate_pic_content{
    max-width: 800px;
    width: 100%;
    height: auto;
}
.share_pic{
    margin-top: 20px;
}
.button_share{
    margin-top: 20px;
    text-align: center;
}
.button_share .btn-share{
    display: inline-block;
    margin: 0 7px;
}
.button_share img{
    width: 50px;
    height: 50px;
}
.s_img{
    pointer-events: auto;
}
.s_img.no_event{
    pointer-events: none;
}
/* -------------------------------------------------------------------------- */
/*	6.	Site Footer
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7. Media queries
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 768px){
    /* Header ---------------------------------- */
    .accordion_menu {
        float: left;
        display: block;
    }
    .right-header{
        display: none;
    }
    .left-header{
        position: relative;
        width: 100%;
        min-height: 400px;

    }
    .logo{
        margin-left: 20px;
    }
    #top_menu_items{
        position: absolute;
        left: -1000px;
        width: 70%;
        height: 100%;
        flex-direction: column;
        background: #ffffff;
        transition: .2s;
        z-index: 1;
    }
    #top_menu_items li{
        width: 100%;
        border-bottom: 1px solid #ececec;
    }
    #top_menu_items li a{
        width: 100%;
        font-size: 20px;
        font-weight: bold;
        color: #ff3e00;
        padding-left: 25px;
    }
    /* Content ---------------------------------- */
    .content{
        width: auto;
        padding: 65px 10px 0 10px;
    }
    #bottom_content{
        padding-bottom: 100px;
    }
    .top_title_image span {
        font-size: 36px;
        line-height: 47px;
    }
    .bottom_title_image span{
        font-size: 28px;
        line-height: 38px;
    }
}
@media screen and (max-width: 500px){
    .top_title_image span{
        font-size: 20px;
        line-height: 30px;
    }
    .bottom_title_image span{
        font-size: 15px;
        line-height: 23px;
    }
    #middle_content {
        padding: 20px 0;
    }
}
