@charset "utf-8";

@font-face {
  font-family: RobotoCondensed;
  src: url(../fonts/RobotoCondensed-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: OpenSans;
  src: url(../fonts/OpenSans-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: OpenSans;
  src: url(../fonts/OpenSans-Bold.ttf);
  font-weight: 700;
}

body {
	position: relative;
	overflow-x: hidden;
  font-family: OpenSans;
	font-weight: 400;
	font-size: 15px;
	line-height: 25px;
	color: rgba(50,55,70,1.00);
	text-align: left;
  word-break: break-word;
  background: rgba(10,100,105,1.00);
}

p {
  font-family: OpenSans;
	font-weight: 400;
	font-size: 15px;
	line-height: 25px;
	color: rgba(50,55,70,1.00);
	text-align: left;
}

a {
  font-weight: 700;
  text-decoration: underline;
  color: rgba(50,55,70,1.00);
  -webkit-transition: all 0.33s;
  -o-transition: all 0.33s;
  -moz-transition: all 0.33s;
  transition: all 0.33s;
}

a:hover {
  text-decoration: none;
  color: rgba(50,55,70,0.75);
}

a:visited {
  color: rgba(20,25,35,1.00);
}

ul {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  list-style: disc inside;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  padding-inline-start: 0;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-margin-start: 0;
  -moz-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  -moz-margin-end: 0;
  margin-inline-end: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}




/* Contents Type */

.content {
	position: relative;
	height: 100%;
	width: 100%;
	max-width: 1170px;
	text-align: center;
  overflow: hidden;
	margin: 0px auto;
	padding: 25px 30px;
}

.wrap-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.flex-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}



/* Titles Type */

h1, h2, h3, .title {
	display: block;
	position: relative;
  width: 100%;
	font-family: RobotoCondensed;
	font-weight: 700;
	font-size: 40px;
	line-height: 50px;
	color: rgba(255,255,255,1.00);
  text-transform: uppercase;
	text-align: left;
  padding-bottom: 25px;
}

h2, .title.medium {
	font-size: 20px;
	line-height: 25px;
  padding-bottom: 25px;
  text-align: left;
  padding-bottom: 0px;
}

h3, .title.small {
	font-size: 15px;
	line-height: 25px;
  padding-bottom: 25px;
  text-align: left;
  padding-bottom: 0px;
}

.text {
  position: relative;
	font-family: OpenSans;
	font-weight: 400;
	font-size: 15px;
	line-height: 25px;
	color: rgba(50,55,70,1.00);
	text-align: left;
}



/* Button */

.button {
	position: relative;
	display: block;
	width: auto;
	max-width: 200px;
  min-width: 160px;
	height: 100%;
	max-height: 50px;
	border: 2px solid rgba(150,250,250,1.00);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  background: rgba(150,250,250,1.00);
  font-family: OpenSans;
	font-weight: 700;
	font-size: 15px;
	line-height: 46px;
	text-align: center;
  text-transform: uppercase;
	padding: 0px 30px;
	color: rgba(50,50,50,1.00);
	white-space: nowrap;
	-webkit-transition: all 0.33s;
	-o-transition: all 0.33s;
	-moz-transition: all 0.33s;
	transition: all 0.33s;
}

.button:hover {
  background: rgba(150,250,250,0.00);
  color: rgba(255,255,255,1.00);
}



/* Header */

.header {
	display: block;
  position: relative;
	width: 100%;
  height: 100px;
  background: rgba(5,65,70,1.00);
  z-index: 999;
}

.header__content {
  position: relative;
	width: 100%;
	max-width: 1170px;
	height: 100px;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	padding: 0px 30px;
  margin: 0px auto;
}

.header__logo {
  display: block;
  position: relative;
  padding: 25px 0px;
}

.header__logo > img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.33s;
  -o-transition: all 0.33s;
  -moz-transition: all 0.33s;
  transition: all 0.33s;
}

.header__logo:hover > img {
  opacity: 0.50;
}

.header__lang {
  display: block;
  position: relative;
}

.header-lang__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  height: 180px;
  background: rgba(5,65,70,1.00);
  -webkit-box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  padding: 0px;
}

.header-lang__list.active {
  display: block;
}

.header-lang__list li {
  display: block;
  position: relative;
}

.header-lang__item {
  display: block;
  position: relative;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(255,255,255,1.00);
  background-image: url("../images/icon-lang-en.png");
  background-repeat: no-repeat;
  background-position: 20px center, top center;
  -webkit-background-size: 22px 22px;
  -moz-background-size: 22px 22px;
  background-size: 22px 22px;
  padding: 10px 25px 10px 55px;
  cursor: pointer;
  -webkit-transition: all 0.33s;
  -o-transition: all 0.33s;
  -moz-transition: all 0.33s;
  transition: all 0.33s;
}

.header-lang__item:hover {
  color: rgba(255,255,255,1.00);
  background-color: rgba(255,255,255,0.05);
}

.header-lang__item:visited {
  color: rgba(255,255,255,1.00);
}

.header-lang__item.lang-ru {
  background-image: url("../images/icon-lang-ru.png");
}

.header-lang__item.lang-bg {
  background-image: url("../images/icon-lang-bg.png");
}

.header-lang__item.lang-tr {
  background-image: url("../images/icon-lang-tr.png");
}

.header-lang__item.lang-pt {
  background-image: url("../images/icon-lang-pt.png");
}



/* Main */

.main__content {
  text-align: left;
}

.main__title {
  display: inline-block;
  width: auto;
}

.main__title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: -999px;
  width: auto;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.main__title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  width: auto;
  height: 1px;
  background: rgba(10,145,155,1.00);
}

.main__text {
  font-size: 20px;
  line-height: 25px;
  color: rgba(255,255,255,1.00);
}

.main__list {
  list-style: none;
  padding-bottom: 25px;
}

.main__list > li h2 {
  padding: 12.5px 20px;
  background: rgba(5,65,70,1.00);
}

.main__list > li .main-item__content {
  padding: 20px 20px;
}

.main__list li:not(:first-child) {
  padding-top: 5px;
}

.main__list li {
  padding-left: 15px;
}

.main__list > li * + * {
  padding-top: 10px;
}

.main__list > li * + h3, .main__list > li > * + h4 {
  padding-top: 25px;
}

.main__list > li h2 + * {
  padding-top: 0px;
}

.main__list > li {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: rgba(255,255,255,1.00);
  overflow: hidden;
  padding: 0px;
  margin: 25px 0px 0px 0px;
}

.main__list > li:not(:first-child) {
  padding: 0px;
}

.main__list ol {
  list-style: decimal inside;
}

li.faq ul.faq__list {
  list-style: none;
}

li.faq ul.faq__list li {
  padding-left: 0px;
  padding-bottom: 5px;
}

li.faq ul.faq__list h3 {
  font-size: 18px;
  color: rgba(5,65,70,1.00);
}



/* Links List */

.links__list {
  list-style: none;
  width: -webkit-calc(100% + 30px);
  width: -moz-calc(100% + 30px);
  width: calc(100% + 30px);
  margin-right: -30px;
}

.links__list > li {
  display: inline-block;
  position: relative;
  width: 33%;
  height: 100%;
  padding: 0px 30px 0px 0px;
  margin: 0px 0px 25px 0px;
}

.links__list > li a, .links__list > li p {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
  -webkit-box-shadow: 0px 10px 20px rgba(0,0,0,0.10);
  -moz-box-shadow: 0px 10px 20px rgba(0,0,0,0.10);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.10);
  padding: 25px;
}

.links__list > li a:hover, .links__list > li p:hover {
  -webkit-box-shadow: 0px 15px 30px rgba(0,0,0,0.20);
  -moz-box-shadow: 0px 15px 30px rgba(0,0,0,0.20);
  box-shadow: 0px 15px 30px rgba(0,0,0,0.20);
}

.links__list > li a:hover > span, .links__list > li p:hover > span {
  opacity: 0.5;
}

.links__list > li a > span, .links__list > li p > span {
  display: block;
  position: relative;
  font-family: RobotoCondensed;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: rgba(10,145,155,1.00);
  -webkit-transition: all 0.33s;
  -o-transition: all 0.33s;
  -moz-transition: all 0.33s;
  transition: all 0.33s;
}

.links__list > li a > span + span, .links__list > li p > span + span {
  font-family: OpenSans;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: rgba(50,50,50,1.00);
}



/* Skider */

.slider-section {
  margin-top: 25px;
}

.slider-arrow-prev, .slider-arrow-next {
  position: absolute;
  background-color: #0a626a;
  z-index: 9;
  width: 20px;
  height: 50px;
  top: -webkit-calc(50% - 25px);
  top: -moz-calc(50% - 25px);
  top: calc(50% - 25px);
  cursor: pointer;
}

.slider-arrow-prev::before, .slider-arrow-next::before {
  position: absolute;
  display: inline-block;
  content: '';
  background: #fff;
  top: -webkit-calc(50% - 5px);
  top: -moz-calc(50% - 5px);
  top: calc(50% - 5px);
}

.slider-arrow-prev {
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  left: 0;
}

.slider-arrow-prev::before {
  border-top: 5px solid #0a626a;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #0a626a;
  left: -webkit-calc(50% - 5px);
  left: -moz-calc(50% - 5px);
  left: calc(50% - 5px);
}

.slider-arrow-next {
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  right: 0;
}

.slider-arrow-next::before {
  border-top: 5px solid #0a626a;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #0a626a;
  right: -webkit-calc(50% - 5px);
  right: -moz-calc(50% - 5px);
  right: calc(50% - 5px);
}

.main__slider {
  width: 100%;
}

.main__slide .wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.main__slide .wrap img {
  position: absolute;
  z-index: -1;
  right: 0;
  width: auto;
  max-width: 500%;
  height: 100%;
}

.main__slide .wrap .descr {
  position: absolute;
  left: 40px;
  top: 30px;
}

.main__slide .wrap .descr .title {
  font-size: 18px;
  line-height: 21px;
  font-weight: bold;
  -webkit-transform: scaleX(0.8) translateX(-30px);
  -moz-transform: scaleX(0.8) translateX(-30px);
  -ms-transform: scaleX(0.8) translateX(-30px);
  -o-transform: scaleX(0.8) translateX(-30px);
  transform: scaleX(0.8) translateX(-30px);
  /*height: 100px;*/
  min-height: 100px;
}

.main__slide .wrap .descr .descr__btn {
  display: inline-block;
  padding: 10px 20px;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  border-radius: 19px;
  color: rgba(255,255,255,1.00);
  text-decoration: none;
  /*background-color: #599a51;*/
  background-color: #ff4b4b;
  text-transform: uppercase;
  min-width: 180px;
  text-align: center;
}

.main__slide .wrap::before {
  position: absolute;
  display: inline-block;
  content: '';
  width: 100%;
  max-width: 423px;
  height: 100%;
  background: url("../images/slider/arrow_big.png") center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.slick-dots {
  background-color: #0a626a;
  width: 108px;
  height: 17px;
  left: -webkit-calc(50% - 54px);
  left: -moz-calc(50% - 54px);
  left: calc(50% - 54px);
  bottom: 0;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
}

.slick-dots li {
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  top: -2px;
}

.slick-dots li.slick-active {
  background-color: #2da5b0;
}



/* Footer */

.footer {
	display: block;
  position: relative;
	width: 100%;
  height: 100%;
  background: rgba(5,65,70,1.00);
}

.footer__content {
  padding: 25px 30px;
}

.footer__copyright {
  color: rgba(10,145,155,1.00);
}

.vpn-links li {
    font-weight: 700;
    text-decoration: underline;
    color: rgba(50,55,70,1.00);
}