@font-face {
    font-family: 'Roboto-Regular';
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: 'Roboto-Light';
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: 'Roboto-Thin';
    src: url(../fonts/Roboto-Thin.ttf);
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url(../fonts/Roboto-Bold.ttf);
}


body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #0A1A46;
    font-family: 'Roboto-Light';
    color: #ffffff;
    width: 100%;
    min-height: 100vh;
}



.wrapper {
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
    
}

header {
    width: 100%;
    height: 8vw;
    box-shadow: 0px 0px 20px #000000;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    background-color: #0A1A46;
    z-index: 2;
}

.logo {
    width: 25%;
    height: 100%;
    display: flex;
}

.logo img {
    width: 35%;
    margin: auto;
}

header ul {
    display: flex;
    padding-inline-start: 0px;
    list-style-type: none;
    margin-block-end: 2vw;
    margin-bottom: 2vw;
    margin-left: 3vw;
}

header ul li {
    margin: auto 1vw 0vw;
}

header ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2vw;
}

.part {
    width: 100%;
    height: auto;
}

.first {
    background:linear-gradient(89.87deg, #081945 0%, #76305A 100%);
}

.main-info {
    display: flex;
    padding-top: 9vw;
}

.main-info div {
    width: 50%;
}


.text-box p {
    width: 50%;
    margin-left: 8vw;
    font-size: 1.5vw;
    line-height: 1.3;
    margin-block-start: 2vw;
}

.text-box p strong {
    font-family: "Roboto-Medium";
}

.text-box p .description {
    color: #ffffff;
    margin-top: 1vw;
    display: block;
}

.text-box p a {
    color: #ffffff;
}

.picture-box img{
    width: 70%;
    display: block;
    margin: 2vw 8vw 2vw auto;
}


.picture-box .family-picture {
    width: 75%;
}

.icon {
    width: 100%;
    height: auto;
}

 h1 {
    font-family: 'Roboto-Medium';
    font-size: 1.5vw;
    margin-block-start: -3vw;
    margin-left: 8vw;
    margin-block-end: 5vw;
}

.icon-box {
    margin: auto 8vw;
    display: flex;
}

.item {
    width: 25%;
}
.item input {
    display: none;
}

.item label {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 10vw;
    border-bottom: 0.2vw solid #ffffff;
    transition: border-bottom ease 1s;
    cursor: pointer;
}

.item label img {
    width: 5vw;
    margin: auto;
}

.item label p {
    width: 60%;
    margin: auto;
    text-align: center;
    font-family: 'Roboto-Medium';
    font-size: 1.3vw;
    margin-block-start: 1vw;
    margin-block-end: 1vw;
}

article {
    max-height: 0px;
    overflow: hidden;
    transition: max-height ease 0.5s;
}

article ul {
    list-style-type: none;
    padding-inline-start: 3vw;
}

article li a {
    position: relative;
    color: #ffffff;
    font-size: 1.2vw;
    display: block;
    line-height: 2vw;
}

article li a::before {
    content: ' ';
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -3vw;
    width: 2vw;
    height:2vw;

}

.item input:checked ~ article {
    max-height: 20vw;
    transition: max-height ease 0.5s;
}

.item input:checked ~ label {
    border-bottom: 0.2vw solid #F4B962;
    transition: border-bottom ease 1s;
}

article li .android::before {
    background-image: url(../img/icon-android.png); 
}

article li .iphone::before {
    background-image: url(../img/icon-iphone.png); 
}

article li .smart-tv-lg::before {
    background-image: url(../img/icon-lg-v2.png);
}

article li .smart-tv-samsung::before {
    background-image: url(../img/icon-samsung-v2.png);
}

article li .chrome::before {
    background-image: url(../img/icon-chrome-v2.png);
}

article li {
    margin-top: 2vw;
}


article li p {
    font-size: 1.2vw;
    margin-block-start: 0.7vw;
    margin-block-end: 0.7vw;
}


.button {
    display: block;
    width: 20vw;
    height: 6vw;
    background-color: #F4B962;
    border-radius: 3vw;
    text-align: center;
    line-height: 6vw;
    margin: 5vw auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
    font-family: "Roboto-Medium";
    font-size: 1.5vw;
    text-decoration: none;
    color: #76305A;
}


.list {
    color: #ffffff;
    font-size: 1.5vw;
    display: block;
    text-align: center;
    margin: -2vw auto;
}

.button:hover {
    transform: scale(1.03);
}

.extra-background {
    background-image: url(../img/wave.png);
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.third {
    margin-bottom: 5vw;
}
.third .text-box p {
    margin-left: auto;
    margin-right: 8vw;
}

.third .picture-box img {
    margin-right: auto;
    margin: 4vw auto 2vw 8vw;
}


.third .picture-box {
    background-image: url(../img/vector-1-new.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.third .text-box {
    background-image: url(../img/vector-2-new.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 13vw;
    background-position-x: 9vw;
}

.extra-background-last {
    background-image: url(../img/doodle-new.png);
    background-size: 7%;
}



footer {
    flex: 0 0 auto;
    display: flex;
    height: 8vw;
    background:linear-gradient(89.87deg, #081945 0%, #76305A 100%);
}

footer p {
    font-family: "Roboto-Regular";
    font-style: italic;
    font-size: 1.2vw;
    margin: auto;
}


#myInput {
    display: none;
} 

label[for="myInput"] {
    display: none; 
    background-color: transparent;
    cursor: pointer;
    z-index: 3;
    position: fixed;
    transition-delay: 0.5s;
    top: 0;
    right: 8vw;
    flex-direction: column;
    height: 16vw;
    justify-content: center;
}

.bar {
    display: block;
    background-color: #fff;
    width: 9vw;
    height: 0.3vw;
    border-radius: 0.347vw;
    margin: 1.2vw auto;
    transition: background-color .5s ease-in, transform .5s ease-in, width .5s ease-in;
}


.modal {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none
}

.modal:target {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }


.modal-dialog {
    display: flex;
    width: 55%;
    height: auto;
    background: #0B2263;
    margin: auto;
    border-radius: 0.347vw;
    position: relative;
}

.modal-content {
    display: block;
    width: 60%;
    height: auto;
    margin: auto;
    font-size: 1.15vw;
    color: #ffffff;
    line-height: 1.5;
}

.modal-content.download {
    width: 90%;
}

h2 {
    color: #F4B962;
    font-family: 'Roboto-Medium';
    font-size: 1.15vw;
    padding-left: 20px;
}


.modal-dialog .download ul li {
    list-style-type: disc;
    width: inherit;
}

.modal-content ul:nth-child(2) {
    margin-bottom: 8vw;
}


.modal-dialog ul li {
    margin-top: 0px;
    width: 50%;   
}


.modal-dialog a {
    display: inline;
    font-size: inherit;
    color: inherit;
}

.close {
    position: absolute;
    top: 2vw;
    right: 2vw;
    width: 3vw;
}

.close img {
    width: 100%;
}

h3 {
    text-align: center;
    font-size: 1.15vw;
    font-family: 'Roboto-Medium';
    margin-bottom: 2vw;
}


.modal-dialog .service {
    margin: 2vw auto;
}


.modal-dialog .service span {
    color: #F4B962;
    font-family: 'Roboto-Medium';
    padding: 1vw auto;
}

.modal-dialog .specification {

    margin: 2vw auto;
}

.modal-content {
    margin: 5vw auto;
}

.modal-content p {
    margin: 2vw auto;
}


.modal-content .back {
    display: block;
    text-align: center;
    margin: 7vw auto auto;
    
}

.extra-contacts {
    display: flex;
    justify-content: space-around;
    margin: 2vw auto;
}

.extra-contacts a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}

.extra-contacts a img {
    width: 30%;
    margin: 0 auto;
}

.extra-contacts a p {
    margin: 1vw auto;
}


.user-form {
    width: 100%;

}

.user-box {
    width: 100%;
    height: auto;
    position: relative;
    margin: 2vw auto;
}

.user-box input {
    width: calc(100% - 1vw);
    padding:7px  0.5vw;
    height: 20px;
    background-color: transparent;
    border: 0;
    outline: 0;
    border-bottom: 1px solid #76305A;
    -moz-border-image: -moz-linear-gradient(110.85deg, #F4B962 -4.1%, #76305A 104.49% );
    -webkit-border-image: -webkit-linear-gradient(110.85deg, #F4B962 -4.1%, #76305A 104.49% );
    border-image: linear-gradient(110.85deg, #F4B962 -4.1%, #76305A 104.49% );
    border-image-slice: 1;
    border-style: solid;
    color: #ffffff;
    font-size: 1.5vw;
    font-family: "Roboto-Light";
}

.user-box input::-webkit-outer-spin-button,
.user-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


.user-box-label {
    position: absolute;
    display: block;
    bottom: 7px;
    left: 0;
    top: 10px;
    width: calc(100% - 2vw);
    height: auto;
    padding: 0px 0.5vw;
    font-size: 1.15vw;
    color: #ffffff;
    opacity: 0.8;
    pointer-events: none;
    transition: all .7s;
	  
}


.user-box input:valid ~  .user-box-label, 
.user-box input:focus ~ .user-box-label
{
    top: -15px;
    left: 0.5vw;
    font-size: 1vw;
    transition: all 0.7s;
    opacity: 0.5;
}


.user-box input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px transparent inset; /* можно изменить на любой вариант цвета */
    -webkit-text-fill-color: #646464;
}


.select-css {
    margin-bottom: 30px;
	display: block;
	width: 100%;
	padding: 7px 0.5vw;;
	border: 0;
	outline: none;
    border-bottom: 1px solid #76305A;
    -moz-border-image: -moz-linear-gradient(110.85deg, #F4B962 -4.1%, #76305A 104.49% );
    -webkit-border-image: -webkit-linear-gradient(110.85deg, #F4B962 -4.1%, #76305A 104.49% );
    border-image: linear-gradient(110.85deg, #F4B962 -4.1%, #76305A 104.49% );
    border-image-slice: 1;
    border-style: solid;
    font-family: 'Roboto-Light';
    color: #ffffff;
    font-size: 1.15vw;
    color: #ffffff;
    opacity: 0.8;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url(../img/select-arrow.png);
	background-repeat: no-repeat;
	background-position: right 10px top	65%;
	background-size: 1rem 0.5rem;
    background-color: transparent;
}


.upload-box {
    width: 50%;
    margin:auto;
    
}

.upload {
    display: flex;
    height: 3vw;
    margin: 2.5vw auto;
    justify-content: space-between;
    position: relative;
}

input[type="file"] {
    width: 20%;
    outline:0;
    opacity:0;
    pointer-events:none;
    user-select:none
}

.label-upload-file {
    line-height: 1.2;
    opacity: 0.8;
}
.label-upload-file::before{
    content: "";
    position: absolute;
    width: 2.5vw;
    height: 2.5vw;
    top: 0;
    left: -1vw;
    background-image: url(../img/upload.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
}


.user-textarea  {
    width: calc(100% - 2vw);
    height: 12vw;
    background-color: #394D82;
    border: 0;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1.5vw;
    font-family: 'Roboto-Light'!important;
    outline: 0;
    padding: 7px 1vw 0;
    resize: none;
}

.user-textarea::placeholder {
    color: #ffffff;
    font-size: 1.15vw;
    opacity: 0.8;
}


.input-submit {
    width: 15vw;
    height: 4.5vw;
    border-radius: 3vw;
    margin: 4vw auto;
    display: block;
    background: -webkit-gradient(#F4B962,#F4B962);
    background: -ms-linear-gradient(#F4B962,#F4B962);
    background: -moz-linear-gradient(#F4B962,#F4B962);
    background: linear-gradient(#F4B962,#F4B962);
    color: #76305A;
    font-size: 1.25vw;
    border: 0;
    font-family: "Roboto-Medium";
}

.input-submit:hover{
    transform: scale(1.03);

}


.radio-box p {
    opacity: 0.8;
    margin: 2vw auto 1vw 0.5vw;
}

.radio-button {
    display: flex;
    margin: 1vw auto 3vw;
}
.radio-button input {
    margin-right: 0.5vw;
}


.radio-button label {
    margin-right: 1vw;
}


.select-css .like-input {
    font-size: 1.5vw;
    opacity: 1;
}

.link-icon {
    position: relative;
}



.link-icon::after {
    content: '';
    position: absolute;
    width: 1vw;
    height: 1vw;
    background-image: url(../img/link_icon.png);
    background-size: 100%;
    background-repeat: no-repeat;
    top: 0;
    right: -1.5vw;
    opacity: 0.8;
}

.white-background {
    background-color: #ffffff;
    height: 55vw;
}


.white-background h3, .white-background .back {
    color: #000000;
}

.modal-content.operator {
    width: 90%;
}

.operator-box {
    width: 100%;
    height: calc(100% - 7vw);
    overflow-y: auto;
}


.op-box {
    width: 100%;
    height: 20%;
    display: flex;
    color: #000000;
}

.op-box div {
    display: flex;
}

.op-web, .op-name {
    width: 35%;
    margin: auto;
    justify-content: center;
}

.op-logo {
    flex: 1;
}


.op-logo div {
    display: flex;
    width: 50%;
    height: 100%;
    margin: auto;
    align-self: center;
}

.op-logo div img {
    display: block;
    max-width: 70%;
    max-height: 65%;
    margin: auto;
}


.channel-describe {
    width: 70%;
}

.channel-box {
    height: auto;
    align-items: center;
}


.scroll {
    width: 10%;
    margin: 2vw auto;
}


.scroll img {
    width: 40%;
    margin: auto;
    display: block;
}