@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);

body, html{
    margin: 0;
    
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}


/* scrollbar */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-thumb {
  background-color: #ee2323;
  border-radius: 20px;
  border-left: 1px solid #ee2323;
}

*::-webkit-scrollbar-track {
  background-color: rgba(98, 0, 255, 0.05);
  width: 12px;
}

/* NavBar */
.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 1005;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
  }
  
  .header li a {
    color: rgb(233, 96, 96);
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }
  
  .header .logo {
    color: red;
    display: block;
    float: left;
    font-size: 1.9em;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    margin-top: 5px;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .header .logo{
     font-size: 1.6em;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .header .logo{
      font-size: 1.6em;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .header .logo{
      font-size: 1.6em;
    }
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 480px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 88em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }

  /* selectbox */
  .dropdown {
    float: left;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .dropdown .dropbtn {
    display: block;
    cursor: pointer;
    font-size: 20px;  
    border: none;
    outline: none;
    color: red;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    border-right: 1px solid #f4f4f4;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: #f4f4f4;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: rgb(199, 3, 3);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .show {
    display: block;
  }

   /* dropdown2 */
   .dropdown2 {
    float: left;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .dropdown2 .dropbtn2 {
    display: block;
    cursor: pointer;
    font-size: 20px;  
    border: none;
    outline: none;
    color: red;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    border-right: 1px solid #f4f4f4;
  }
  
  .navbar a:hover, .dropdown2:hover .dropbtn2, .dropbtn2:focus {
    background-color: #f4f4f4;
  }
  
  .dropdown2-content2 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown2-content2 a {
    float: none;
    color: rgb(199, 3, 3);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown2-content2 a:hover {
    background-color: #ddd;
  }
  
  .show2 {
    display: block;
  }

  /* dropdown3 */
  .dropdown3 {
    float: left;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .dropdown3 .dropbtn3 {
    display: block;
    cursor: pointer;
    font-size: 20px;  
    border: none;
    outline: none;
    color: red;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    border-right: 1px solid #f4f4f4;
  }
  
  .navbar a:hover, .dropdown3:hover .dropbtn3, .dropbtn2:focus {
    background-color: #f4f4f4;
  }
  
  .dropdown3-content2 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown3-content2 a {
    float: none;
    color: rgb(199, 3, 3);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown3-content2 a:hover {
    background-color: #ddd;
  }
  
  .show3 {
    display: block;
  }

  /* intro section */

  .intro{
      position: absolute;
      height: 300px;
      width: 100%;
      background-color: rgba(98, 0, 255, 0.05);
      margin-top: 150px;
      padding-top: 50px;
      padding-bottom: 50px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-content: space-around;
      justify-content: space-around;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .intro{
      height: 600px;
    }
    .dropdown{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .intro{
      height: 600px;
    }
    .dropdown{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .intro{
      height: 650px;
    }
    .dropdown{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
  }

 

/*! CSS Used from: https://www.mytrinity.com.ua/templates/Design/css/bootstrap.min.css */
h1{margin:.67em 0;font-size:2em;}
table{border-spacing:0;border-collapse:collapse;}
td,th{padding:0;}
@media print{
*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important;}
thead{display:table-header-group;}
tr{page-break-inside:avoid;}
h3,p{orphans:3;widows:3;}
h3{page-break-after:avoid;}
.table{border-collapse:collapse!important;}
.table td,.table th{background-color:#fff!important;}
}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
h1,h3{font-family:inherit;font-weight:500;line-height:1.1;color:inherit;}
h1,h3{margin-top:20px;margin-bottom:10px;}
h1{font-size:36px;}
h3{font-size:24px;}
p{margin:0 0 10px;}
.row{margin-right:-15px;margin-left:-15px;}
.col-xs-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px;}
.col-xs-12{float:left;}
.col-xs-12{width:100%;}
table{background-color:transparent;}
th{text-align:left;}
.table{width:100%;max-width:100%;margin-bottom:20px;}
.table>tbody>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd;}
.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd;}
.table>thead:first-child>tr:first-child>th{border-top:0;}
.table-hover>tbody>tr:hover{background-color:#f5f5f5;}
table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none;}
.table>tbody>tr>td.active{background-color:#f5f5f5;}
.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover{background-color:#e8e8e8;}
.table>tbody>tr>td.success{background-color:#dff0d8;}
.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover{background-color:#d0e9c6;}
.table>tbody>tr>td.info{background-color:#d9edf7;}
.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover{background-color:#c4e3f3;}
.table>tbody>tr>td.warning{background-color:#fcf8e3;}
.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover{background-color:#faf2cc;}
.table>tbody>tr>td.danger{background-color:#f2dede;}
.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover{background-color:#ebcccc;}
.table-responsive{min-height:.01%;overflow-x:auto;}
@media screen and (max-width:767px){
.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;}
.table-responsive>.table{margin-bottom:0;}
.table-responsive>.table>tbody>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap;}
}
.row:after,.row:before{display:table;content:" ";}
.row:after{clear:both;}
/*! CSS Used from: https://www.mytrinity.com.ua/templates/Design/css/main.css */
#dle-content{background:#fff;padding:40px 0; margin-top: 150px; position: absolute; width: 100%; font-size: 50px;}
h1{font-family:'Ubuntu', sans-serif;font-weight:700;letter-spacing:0;color:#000;font-size:40px;padding:0 0 20px;margin:0;}
.wrap{width:1280px!important;margin:0 auto;}
.section-name{margin:0 0 30px 0;}
@media (max-width: 425px){
#dle-content{padding:30px 0;}
}
@media only screen and (max-width: 1280px){
.wrap{width:calc(100% - 30px)!important;margin:0 auto;}
}
@media only screen and (max-width: 1024px){
.tariff-tabs .channel-container .ch-col-1:nth-child(1),.sticky .ch-col-1{display:none;}
.tv-content .channals-table th > h3{padding:10px!important;}
.tv-content .channals-table th > h3 > span{font-size:16px!important;}
.tv-content thead.sticky.on{max-width:96%!important;margin-top: 50px; }
.tv-content .channals-table .ch-col-2{overflow:hidden!important;white-space:nowrap!important;text-overflow:ellipsis!important;font-size:16px;}
.table-responsive{border:0!important;}
.tv-content .channals-table thead tr,.tv-content .channals-table tbody tr{grid-template-columns:0.5fr 1fr 1fr 1fr 1fr 0fr!important;}
}
@media only screen and (max-width: 940px){
.tv-content .channals-table th.ch-col-3{white-space:normal!important;}
}
@media only screen and (max-width: 768px){
.tv-content .channals-table .ch-col-2{font-size:14px;}
.tv-content .channals-table th > h3{padding:0px!important;}
}
@media only screen and (max-width: 600px){
.tv-content .channals-table th > h3 > span{font-size:14px!important;}
.tv-content .channals-table th{white-space:normal!important;}
.table>thead>tr>th{padding:0!important;}
}
@media only screen and (max-width: 576px){
h1{font-size:34px;}
}
@media only screen and (max-width: 414px){
.tv-content .channals-table th > h3 > span,.tv-content .channals-table .ch-col-2{font-size:12px!important;font-family:Arial;}
h1{font-size:30px;}
}
@media only screen and (max-width: 359px){
h1{font-size:26px;}
}
/*! CSS Used from: Embedded */
.tv-content thead{position:-webkit-sticky;position:sticky;top:0;}
.tv-content thead.sticky.on{position:fixed;overflow:hidden;width:100%;max-width:1250px;transition:all 0.5s ease-out; margin-top: 50px;margin-left: 20px;}
.tv-content .channals-table td{border:none;padding:0 10px;line-height:calc(2rem * 2);vertical-align:middle;text-align:left;font-size:2rem;height:calc(2rem * 2);}
.tv-content .channals-table tr{padding:0;height:auto;outline:none;}
.tv-content .channals-table thead tr{display:flex;justify-content:flex-end;}
.tv-content .channals-table th{border:none;}
.tv-content .channals-table th > h3{text-align:center;margin:0;padding:40px 0;}
.tv-content .channals-table th > h3 > span{font-size:2rem;color:white;}
.tv-content .channals-table .ch-col-1{width:8%;}
.tv-content .channals-table .ch-col-2{width:12%;}
.tv-content .channals-table .ch-col-3,.tv-content .channals-table .ch-col-4,.tv-content .channals-table .ch-col-5,.tv-content .channals-table .ch-col-6{width:20%;text-align:center;}
.tv-content .channals-table th.ch-col-1,.tv-content .channals-table th.ch-col-2{background:transparent;}
.tv-content .table-hover > tbody > tr:nth-of-type(1):hover{background-color:transparent;}
.tv-content .channals-table th.ch-col-3{background:#e8be53;}
.tv-content .channals-table th.ch-col-4{background:#6dbbc4;}
.tv-content .channals-table th.ch-col-5{background:#ed217c;}
.tv-content .channals-table th.ch-col-6{background:#83ae79;}
.tv-content tbody::-webkit-scrollbar{width:5px;background-color:white;}
.tv-content tbody::-webkit-scrollbar-thumb{border-radius:50px;background-color:blue;}
.tv-content tbody::-webkit-scrollbar-track{background-color:white;border-radius:10px;}
.tv-content .channals-table thead tr,.tv-content .channals-table tbody tr{display:grid;grid-template-columns:0.2fr 1fr 0.5fr 0.5fr 0.5fr 0.5fr;grid-template-rows:1fr 0;grid-gap:3px;}
.tv-content .channals-table .ch-col-1{width:auto;min-width:75px;}
.tv-content .channals-table .ch-col-2{width:auto;min-width:20vw;}
.tv-content .channals-table .ch-col-3,.tv-content .channals-table .ch-col-4,.tv-content .channals-table .ch-col-5,.tv-content .channals-table .ch-col-6{width:auto;min-width:7vw;text-align:center;}
@media only screen and (min-width: 1920px){
.tv-content .channals-table .ch-col-2{width:auto;min-width:15vw;}
}
@media only screen and (min-width: 1441px){
.tv-content thead.sticky.on{max-width:1250px;}
}
@media only screen and (max-width: 1440px){
.tv-content thead.sticky.on{max-width:1250px;}
}
@media only screen and (max-width: 1280px){
.tv-content thead.sticky.on{max-width:1169px;}
}
@media only screen and (max-width: 1024px){
.tv-content thead.sticky.on{max-width:1080px;}
}
/*! CSS Used fontfaces */
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:300;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoC1CzjvWyNL4U.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:300;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoC1CzjtGyNL4U.woff2) format('woff2');unicode-range:U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:300;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoC1CzjvGyNL4U.woff2) format('woff2');unicode-range:U+1F00-1FFF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:300;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoC1Czjs2yNL4U.woff2) format('woff2');unicode-range:U+0370-03FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:300;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoC1CzjvmyNL4U.woff2) format('woff2');unicode-range:U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:300;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoC1CzjsGyN.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCs6KVjbNBYlgoKcg72j00.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCs6KVjbNBYlgoKew72j00.woff2) format('woff2');unicode-range:U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCs6KVjbNBYlgoKcw72j00.woff2) format('woff2');unicode-range:U+1F00-1FFF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCs6KVjbNBYlgoKfA72j00.woff2) format('woff2');unicode-range:U+0370-03FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCs6KVjbNBYlgoKcQ72j00.woff2) format('woff2');unicode-range:U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCs6KVjbNBYlgoKfw72.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCjC3jvWyNL4U.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCjC3jtGyNL4U.woff2) format('woff2');unicode-range:U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCjC3jvGyNL4U.woff2) format('woff2');unicode-range:U+1F00-1FFF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCjC3js2yNL4U.woff2) format('woff2');unicode-range:U+0370-03FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCjC3jvmyNL4U.woff2) format('woff2');unicode-range:U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:500;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCjC3jsGyN.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2) format('woff2');unicode-range:U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2) format('woff2');unicode-range:U+1F00-1FFF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2) format('woff2');unicode-range:U+0370-03FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2) format('woff2');unicode-range:U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Ubuntu';font-style:normal;font-weight:700;src:url(https://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCxCvjsGyN.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}