@font-face {
    font-family: 'GT Walsheim Pro Medium';
    src: url("../fonts/GTWalsheimPro-Medium.woff");
}
@font-face {
    font-family: 'GT Walsheim Pro Medium';
    src: url("../fonts/GTWalsheimPro-Medium.woff2");
}
@font-face {
    font-family: 'BravoRG';
    src: url("../fonts/BravoRG.otf");
}
@font-face {
    font-family: 'pKamerik';
    src: url("../fonts/Kamerik.woff");
}
@font-face {
    font-family: 'FuturaNewBook';
    src: url("../fonts/FuturaNewBook-Reg.woff");
}
@font-face {
    font-family: 'FuturaNewBookBold';
    src: url("../fonts/fnbBold.woff");
}
@font-face {
    font-family: 'AGFutura Regular';
    src: url("../fonts/ag-futura.otf");
}
html {
    font-size: 15px;
}
body {
    margin: 0;
    font-family: 'GT Walsheim Pro Medium', sans-serif;
    font-size: 1rem;
    line-height: 2.2rem;
    position: relative;
}
*, *:before, *:after {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
p {
    margin: 0 0 10px;
}
.page {
    width: 100%;
    height: 100vh;
}
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}

/*Header
======================*/
.header-inner {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}
.logo-img {
    width: 164px;
}
.header__menu {
    display: flex;
}
.header__menu > li {
    list-style: none;
    margin-right: 30px;
}
.nav {
    display: none;
    justify-content: space-between;
    flex-basis: 35%;
    align-items: center;
}
.header__private-link {
    font-size: 8pt;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}
.header__private-icon {
    width: 15px;
    color: #000;
}
.header__private-link:hover {
    color: #9E999F;
    transition: color .2s linear;
}
.header__private-text {
    font-weight: bold;
}
.header-navbar {
    float: left;
    margin: 0 30px;
}
.header__contacts-link {
    font-size: 8pt;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}
.header__contacts-link:hover {
    color: #9E999F;
    transition: color .2s linear;
}

@media (max-width: 767px) {
    .nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 25px;
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-end;
    }
    .header.opened .nav {
        display: flex;
    }
    .header__menu {
        display: none;
    }
}

/* ----------------index.html---------- */
/*Slides
======================*/
.swiper-container {
    width: 100%;
    height: 600px;
}
.swiper-content {
    position: absolute;
    left: 50%;
    width: 45%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    bottom: 225px;
}
.box {
    display: flex;
}
.box-img {
	width: 48px;
	height: 32px;
    margin-right: 8px;
    margin-top: 3px;
}
.box-img.wifi {
    height: 55px;
}
.banner-content-title {
    font-family: "FuturaNewBookBold";
    font-size: 24pt;
    color: #fff;
    line-height: 24pt;
    font-weight: bold;
}
.banner-content-text {
    font-family: "FuturaNewBook";
    font-size: 14pt;
    color: #fff;
    margin: 20px 0 88px 0;
    line-height: 16pt;
}
.btn {
    font-family: "FuturaNewBook";
    font-size: 29px;
    color: #fff;
    background-color: #c82229;
    border-radius: 7px;
    padding: 5px;
    margin-bottom: 2.1rem;
    border: 0;
    display: block;
    width: 200px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-weight: normal;
}
.btn-request.tv {
    background-color: #ff0000;
}
.btn:hover {
    background-color: #900d19;
    transition: background-color .2s linear;
}
.swiper-buttons {
    position: absolute;
    top: 75%;
    left: 50%;
}
.swiper-button-prev {
    position: relative;
    margin-top: 5px;
    border: 3px #fff solid;
    color: #fff;
    width: 90px;
    height: 60px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}
.swiper-button-next {
    position: relative;
    left: 97px;
    bottom: 38px;
    border: 3px #fff solid;
    color: #fff;
    width: 90px;
    height: 60px;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}
.swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 30px;

}

/* slide 1 */
.swiper-slide {
    background-size: cover !important;
}
.swiper-slide.ats {
    background: url("../img/slides/ats.png") center no-repeat;

}

/* slide 2 */
.swiper-slide.wifi {
    background: url("../img/slides/wifi.png") center no-repeat;
}

/* slide 3 */
.swiper-slide.video {
    background: url("../img/slides/vn.png") center no-repeat;
}



/*Media
======================*/

/*Header+content*/

@media (max-width: 1170px) {
    .swiper-content {
        left: 10%;
        width: 80%;
    }
    .swiper-pagination {
        left: 10%;
    }
    .swiper-buttons {
        left: 10%;
    }
}
@media (min-width: 768px) {
    .header-navbar {
        display: none;
    }
}
@media (max-width: 767px) {
    .header-private {
        display: none;
    }
    .header-contacts {
        margin: 10px;
        flex-direction: column;
        text-align: right;
    }
    .header-logo {
        margin: 0 auto;
    }

    .header-inner-link {
        display: none;
        font-size: 2.2rem;
        margin: 2rem auto 0 auto;
    }
    .swiper-content {
        width: 90%;
    }
    .banner-content-title {
        font-size: 40px;
    }
    .btn {
        font-size: 24px;
        width: 150px;
    }
    .header-private {
        padding-right: 2.0rem;
    }
    .header-navbar img {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .header-inner-link {
        display: none;
    }
    .banner-content-title {
        font-size: 35px;
        line-height: 35px;
    }
    .banner-content-text {
        font-size: 1.6rem;
        line-height: 1.8rem;
    }
    .swiper-content {
        bottom: 200px;
    }
    .swiper-buttons {
        top: 65%;
    }
    .swiper-button-prev {
        width: 80px;
        height: 60px;
    }
    .swiper-button-next {
        left: 88px;
        bottom: 38px;
        width: 80px;
        height: 60px;
    }
    .swiper-pagination.swiper-pagination-bullets {
        bottom: 60px;
    }
}

/*Services
======================*/
.services {
    width: 100%;
    background: #b9b9b9 url("../img/services/bg-2.png") center no-repeat;
    background-size: cover;
}

/* Servises items */
.services-items {
    padding-top: 50px;
}
.services-inner {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.services-title {
    font-family: "AGFutura Regular";
    font-size: 31px;
    font-weight: 500;
    border-bottom: 1px solid #e30505;
    padding-bottom: 10px;
    width: 114px;
    margin-bottom: 30px;
}

.servises-inner-box {
    display: block;
    width: 350px;
    border: 1px solid #fff;
    background-color: #fff;
    text-align: center;
    padding: 15px;
    margin: 15px;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.35);
}
.servises-inner-box img {
    height: 50px;
}
.box-title {
    font-size: 23px;
    padding-bottom: 5px;
    font-family: "FuturaNewBookBold";
}
.box-link {
    display: block;
    text-align: center;
    text-decoration: none;
    height: 100%;
    color: #000;
    cursor: pointer;
}
.box-link:hover {
    color: #c82229;
    transition: color .2s linear;
}
.box-text {
    font-family: "FuturaNewBook";
    font-size: 15px;
    line-height: 1.1rem;
}
/* Services about */
.services-about {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    opacity: 0.8;
}
.services-about-submit {
    display: flex;
    margin: 64px 0;
}
.about-title {
    font-size: 69px;
    font-family: "FuturaNewBookBold";
    color: #fff;
    line-height: 69px;
    margin-bottom: 70px;
}
.about-title span {
    text-transform: uppercase;
}
.about-text {
    font-family: "FuturaNewBook";
    font-size: 25px;
    color: #fff;
    line-height: 2rem;
    margin-bottom: 40px;
}
.btn-about {
    border: 3px solid#c82229;
    color: #c82229;
    background: 0;
    border-radius: 10px;
    font-size: 23px;
    font-weight: 600;
    padding: 10px 21px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn-about:hover {
    background-color: #e30505;
    color: #fff;
    transition: background-color, color .3s linear;
}
.services-about-logo {
    opacity: 0.2;
}


/* Media services */
@media (max-width: 1350px) {
    .services-inner {
        flex-wrap: wrap;
    }
    .services-packages {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 1260px) {
    .services-title {
        margin-left: 20px;
    }
}
@media (max-width: 1024px) {
    .services-about-logo {
        display: none;
    }
}

@media (max-width: 767px) {
    .services-items {
        display: block;
    }

    .services-about-submit {
        padding: 30px 40px;
    }

    .about-title {
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 25px;
    }
    .about-text {
        font-size: 22px;
    }
}
@media (max-width: 430px) {
    .box-title {
        font-size: 1.6rem;
        padding: 10px 0;
    }
    .box-text {
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
    .about-title {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
    .about-text {
        font-size: 1.3rem;
    }
    .btn-about {
        font-size: 1.7rem;
    }
}
/* ----------------/index.html---------- */


/*Footer
======================*/
.footer {
    background-color: #1a3a49;
    padding: 30px;
    line-height: 1.2rem;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 120px;

}
.footer-logo-title {
    font-family: 'BravoRG', sans-serif;
    color: #fff;
    font-size: 3rem;
    padding: 40px 20px;
    font-weight: 500;
    line-height: 3rem;
}
.footer-text {
    margin-top: 15px;
    font-family: 'pKamerik', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.footer-link {
    color: #fff;
}



/* Media footer */
@media (max-width: 480px) {
    .footer-logo img{
        height: 120px;
    }
    .footer-logo-title {
        font-size: 1.9rem;
    }
}


/* ----------------virt-ats.html---------- */
/*Virtual ATS
======================*/
.banner {
    background: rgba(0, 0, 0, 0.2) url("../img/ats/ats-banner.png") center;
    background-size: cover;
}
.banner-content {
    width: 30%;
    position: relative;
    left: 50%;
    top: 255px;
}
.banner-content.video {
    top: 290px;
}
.btn-request {
    font-family: "FuturaNewBook";
    font-size: 14pt;
    line-height: 14pt;
    color: #fff;
    background-color: #c82229;
    border-radius: 10px;
    padding: 7px 9px;
    border: 0;
    display: block;
    width: max-content;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
.btn-request:hover {
    background-color: #900d19;
    transition: background-color .2s linear;
}
.content-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 340px;
}
.content-box-inner {
    width: 360px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    margin: 0 0 100px 10%;
    padding-left: 47px;
}
.content-box-img {
    margin-top: 20px;
    height: 60px;
}

.content-box-img.ats {
    padding-left: 75px;
}
.content-box-title {
    font-size: 21px;
    font-family: "FuturaNewBookBold";
    padding-bottom: 10px;
    font-weight: 500;
    padding-left: 75px;
}
.content-box-text {
    width: 80%;
    font-family: "FuturaNewBook";
    font-size: 16.6px;
}
.red-line {
    width: 72px;
    border-bottom: 2px solid #e30505;
}
.red-line.ats {
    margin-left: 75px;
}
@media (max-width: 550px) {
    .red-line.ats {
        margin-left: 0;
    }
    .content-box-title {
        padding-left: 0;
    }
    .content-box-img.ats {
        padding-left: 0;
    }
}
/*connection
======================*/
.connection-banner {
    background: url("../img/form.png") center no-repeat;
    background-size: cover;
}
.connection-inner {
    width: 56%;
    position: relative;
    left: 45%;
    padding: 200px 0;
}
.connection-title {
    color: #fff;
    margin-bottom: 30px;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 50px;
    font-family: "FuturaNewBookBold";
}
.connection-text {
    color: #fff;
    font-family: "FuturaNewBook";
    font-size: 25px;
    line-height: 2.4rem;
    margin-bottom: 60px;
}

.btn-connection {
    font-size: 29px;
    color: #fff;
    font-family: "FuturaNewBook";
    background-color: #c82229;
    border-radius: 10px;
    padding: 15px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
.btn-connection:hover {
    background-color: #900d19;
    transition: background-color .2s linear;
}


/* Media function */
@media (max-width: 1264px) {
    .connection-inner {
        width: 80%;
        position: relative;
        left: 10%;
    }
}
@media (max-width: 570px) {
    .connection-title {
        font-size: 35px;
        line-height: 35px;
    }
    .btn-connection {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .btn-connection {
        font-size: 16px;
    }
    .content-box-text {
        width: 80%;
    }
}

/*Virtual function
======================*/
.virtual-function {
    background: rgba(185, 185, 185, 0.5) url("../img/services/bg-2.png") center no-repeat;
    background-size: cover;
}

.virtual-function-title {
    padding: 100px 0 100px 0;
    font-size: 50px;
    font-family: "FuturaNewBookBold";
    color: #c82229;
    text-align: center;
    font-weight: 500;
    line-height: 50px;
}
.function-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 230px;
    margin-left: 30px;
}

.function-inner-box {
    align-items: center;
    flex-basis: 30%;
    margin-right: 40px;
}
.icon-ats {
    text-align: center;
}
.function-img {
    height: 80px;
}
.line {
    border-top: 2px solid #c82229;
    width: 160px;
    margin: 18px 0;
}
.function-title {
    font-size: 29px;
    font-family: "FuturaNewBookBold";
    color: #333131;
}
.function-text {
    font-size: 20px;
    font-family: "FuturaNewBook";
    color: #333131;
}
/* Media function */
@media (max-width: 1240px) {
    .banner-content {
        left: 10%;
        width: 85%;
    }

}
@media (max-width: 900px) {
    .function-inner {
    flex-direction: column;
    }
    .icon-ats {
        text-align: left;
    }
    .virtual-function-title {
        text-align: left;
        margin-left: 30px;
    }
}
@media (max-width: 550px) {
    .banner-content {
        top: 30px;
        margin-bottom: 50px;
    }
    .banner-content-text {
        font-size: 24px;
    }
    .btn-request {
        font-size: 26px;
    }
    .virtual-function-title {
        font-size: 33px;
        padding: 50px 0;
    }
    .btn-request {
        width: 260px;
    }
    .content-box-inner {
        width: 80%;
    }
    .function-title {
        font-size: 24px;
    }
    .content-box {
        margin-top: 100px;
    }
}
@media (max-width: 410px) {
    .banner-content-title {
        font-size: 31px;
        line-height: 31px;
    }
    .banner-content-text {
        font-size: 20px;
    }
    .btn-request {
        width: 220px;
        font-size: 14pt;
    }
    .function-inner-box {
        margin-right: 10px;
    }

}
@media (max-width: 380px) {
    .content-box-inner {
        padding-left: 22px;
    }
}



/* ----------------wifi.html---------- */

.wifi-page {
    background: rgba(0, 0, 0, 0.2) url("../img/wifi/wi-fi-bg.png") center no-repeat;
    background-size: cover;
    height: 1000px;
}
.wifi-page-content {
    width: 50%;
    position: relative;
    left: 55%;
    top: 80px;
}
.function-inner-box.wifi {
    flex-basis: 45%;

}

/* Media function */
@media (max-width: 767px) {
    .wifi-page {
        height: 600px;
    }
}

@media (max-width: 550px) {
    .wifi-page {
        height: 500px;
    }
}



/* ----------------video.html---------- */
.video-page {
    background: rgba(0, 0, 0, 0.2) url("../img/video/banner-vn.png") center;
    background-size: cover;
    height: 1000px;
}
.banner-equipment {
    width: 60%;
    position: relative;
    left: 10%;
    top: 440px;
}
.equipment-text {
    font-size: 14pt;
    font-family: "FuturaNewBook";
    color: #fff;
    line-height: 16pt;
}
.btn-equipment {
    font-family: "FuturaNewBook";
    font-size: 14pt;
    line-height: 14pt;
    color: #fff;
    background-color: transparent;
    border-radius: 7px;
    padding: 7px 9px;
    border: 2px solid #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn-equipment:hover {
    background-color: #fff;
    color: #c82229;
    transition: background-color .2s linear;
}
/* Media video */
@media (max-width: 767px) {
    .equipment-text {
        font-size: 25px;
        line-height: 25px;
    }

}
@media (max-width: 550px) {
    .video-page {
        height: 800px;
    }
    .banner-equipment {
        top: 285px;
    }
    .equipment-text {
        font-size: 22px;
        line-height: 22px;
    }
    .btn-equipment {
        font-size: 24px;
    }
    .box-img {
        display: none;
    }
}
@media (max-width: 474px) {
    .btn-equipment {
        font-size: 16px;
        padding: 3px 12px;
    }

}


/* ----------------tv.html---------- */
.tv-page {
    background: url("../img/tvforbussines/banner-tv.png") center;
    background-size: cover;
}
.tv-content {
    width: 55%;
    padding-top: 17%;
    margin-left: 20px;
}
.content-box.tv {
    padding: 0 0 120px 0;
}
.services-packages {
    display: flex;
    margin-bottom: 100px;
}
.service-packages__box {
    width: 280px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    margin: 10px 18px;
    height: 207px;
    text-align: center;
}
.service-packages__title {
    margin-top: 60px;
    font-family: "FuturaNewBook";
    font-size: 29px;
    color: #000;
}
.service-packages__text {
    font-size: 23px;
    font-family: "FuturaNewBookBold";
    text-decoration: underline;
}

/* Media tv */
@media (max-width: 840px) {
    .tv-content {
        width: 80%;
        margin: 0 auto;
    }
}

/* ----------------forms.html---------- */
.form-page {
    background: rgba(185, 185, 185, 0.5) url("../img/services/bg-2.png") center no-repeat;
    background-size: cover;
    padding-bottom: 50px;
}
.form {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 20px;
}

.input {
    padding: 12px 18px;
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: 2rem;
    border: 0;
    color: #fff;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.7);
}

.form-checkbox {
    width: 15px;
    cursor: pointer;
    transform: scale(1.5);
}
.form-text {
    display: inline;
    line-height: 1rem;
}
.form-link {
    text-decoration: none;
    color: #eb021a;
}
.btn-form {
    width: 100%;
    font-size: 2rem;
    color: #fff;
    background-color: #c82229;
    border-radius: 10px;
    padding: 15px;
    border: 0;
    display: block;
    cursor: pointer;
}
.btn-form:hover {
    background-color: #900d19;
    transition: background-color .2s linear;
}
/* Media form */
@media (max-width: 460px) {
    .input {
        font-size: 1.3rem;
    }
    .btn-form {
        font-size: 1.5rem;
    }
    .content-box.tv {
        padding: 0;
    }
}
    
.form-error {
    max-width: 70%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 20px;
    background: #cb373d;
    border-radius: 7px;
    border: 1px solid #a32b30;
    color: #fff;
}

.form-success {
    max-width: 70%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 20px;
    background: #35c02c;
    border-radius: 7px;
    border: 1px solid #227c1c;
    color: #fff;
}