@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');

body {
   overflow-x: hidden;
   min-height: 100vh;
   background: #203238;
   font-family: 'Lato', sans-serif;
   font-size: 15px;
   font-weight: 400;
   line-height: 1.66;
   color: #fff;
   text-align: left;
   -webkit-text-size-adjust: 100%;
   text-size-adjust: 100%;
}

p {
   margin-top: 25px;
   line-height: 1.66;
   width: 100%;
}

p+ul,
p+ol {
   margin-top: 25px;
}

ul,
ol {
   text-align: left;
   width: 100%;
}

nav ul {
   width: auto;
}

a {
   color: inherit;
}

/* Title */
h1,
h2,
h3,
.title {
   display: block;
   position: relative;
   width: 100%;
   font-weight: 700;
   line-height: 1.2;
}

h1,
.title.general {
   font-size: 45px;
   text-transform: uppercase;
}

h2,
.title.high {
   font-size: 40px;
}

h3,
.title.middle {
   font-size: 35px;
}

h4,
.title.mini {
   font-size: 24px;
}

/* Article */
article,
.article {
   font-size: 15px;
   font-weight: 400;
   line-height: 1.5;
   text-align: left;
}

article>*:first-child,
.article>*:first-child {
   margin-top: 0px;
}

article>*+*,
.article>*+* {
   margin-top: 25px;
}

article p:first-child,
.article p:first-child {
   margin-top: 0px;
}

/* Button */
.button {
   display: inline-block;
   position: relative;
   width: auto;
   height: auto;
   font-size: 15px;
   font-weight: 700;
   color: #fff;
   line-height: 1;
   text-transform: uppercase;
   text-align: center;
   white-space: nowrap;
   background: #ec632b;
   border: 2px solid #ec632b;
   min-width: 180px;
   border-radius: 30px;
   -webkit-border-radius: 30px;
   -moz-border-radius: 30px;
   -ms-border-radius: 30px;
   -o-border-radius: 30px;
   padding: 15px 10px;
   margin: 25px 0 0;
}

.button:hover {
   background: transparent;
   color: #ec632b;
}

.button img,
.button span {
   display: inline-block;
   vertical-align: middle;
}

.button img {
   margin-right: 10px;
}

.button span {
   text-align: left;
}

/* Special */
.image img,
.background img {
   display: block;
   position: relative;
   margin: auto;
}

.background {
   display: block !important;
   position: absolute !important;
   top: 0px;
   bottom: 0px;
   left: 0px;
   right: 0px;
}

.background img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.js-expand-content {
   display: none;
   overflow: hidden;
}

.js-expand-content.expanded {
   height: 100%;
}

svg {
   display: inline-block;
   position: relative;
   vertical-align: inherit;
   fill: rgba(255, 255, 255, 1);
   line-height: 1;
}

use {
   fill: rgba(255, 255, 255, 1);
   fill-rule: evenodd;
   -webkit-transition: all 0.5s;
   -o-transition: all 0.5s;
   -moz-transition: all 0.5s;
   transition: all 0.5s;
}

.path {
   fill: inherit;
   stroke: inherit;
   stroke-width: inherit;
}

/* Content */
.content,
.cover {
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-flex-direction: column;
   -moz-box-orient: vertical;
   -moz-box-direction: normal;
   flex-direction: column;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   height: 100%;
   width: 100%;
   max-width: 1290px;
   margin: 0px auto;
   position: relative;
   overflow: hidden;
}

.content {
   margin-top: 25px;
   padding: 25px 30px;
}

.cover {
   margin-top: 40px;
   max-width: 100%;
   overflow: hidden;
   padding-left: -webkit-calc(50% - (1290px / 2));
   padding-left: -moz-calc(50% - (1290px / 2));
   padding-left: calc(50% - (1290px / 2));
   padding-right: -webkit-calc(50% - (1290px / 2));
   padding-right: -moz-calc(50% - (1290px / 2));
   padding-right: calc(50% - (1290px / 2));
}

.content>*,
.cover>* {
   position: relative;
   -webkit-box-flex: 1;
   -webkit-flex: 1 1 auto;
   -moz-box-flex: 1;
   flex: 1 1 auto;
}

/* Header */
.header {
   background: #203238;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   overflow: visible;
   padding-top: 37px;
   padding-bottom: 39px;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   z-index: 100;
   height: auto;
   margin-top: 0;
}

.logo {
   display: inline-block;
}

.logo img {
   display: block;
}

.header__logo {
   max-width: 154px;
}

.header__menu-button,
.header__menu .header__button {
   display: none;
}

.header__menu {
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
   margin: 0 auto 0 3vw;
}

.header__menu ul {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.header__menu ul li+li {
   margin-left: 35px;
}

.header__menu ul li a {
   display: block;
   font-size: 15px;
   font-weight: 400;
   color: #01a77f;
   text-transform: uppercase;
}

.header__menu ul li a:hover {
   color: #fff;
}

.header__button {
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
   margin-top: 0;
}

.header__button-login {
   color: #fff;
   background: #01a77e;
   border-color: #01a77e;
   margin-left: 30px;
}

.header__button-login:hover {
   color: #01a77e;
}

.header.scroll {
   padding-top: 10px;
   padding-bottom: 10px;
}

/* Main */
.main {
   padding-top: 125px;
   padding-bottom: 65px;
}

/* Prime */
.prime {
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   margin-top: 0;
   padding-top: 25px;
   padding-bottom: 25px;
}

.prime__item {
   width: -webkit-calc(50% - 15px);
   width: -moz-calc(50% - 15px);
   width: calc(50% - 15px);
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
}

.prime__desc {
   background: #01a67f;
   border-radius: 0 0 15px 15px;
   -webkit-border-radius: 0 0 15px 15px;
   -moz-border-radius: 0 0 15px 15px;
   -ms-border-radius: 0 0 15px 15px;
   -o-border-radius: 0 0 15px 15px;
   padding: 25px 30px;
}

.prime__banner {
   background: #fff;
   border: 1px solid #ec632b;
   border-radius: 15px 15px 0 0;
   -webkit-border-radius: 15px 15px 0 0;
   -moz-border-radius: 15px 15px 0 0;
   -ms-border-radius: 15px 15px 0 0;
   -o-border-radius: 15px 15px 0 0;
   overflow: hidden;
   padding: 40px 30px;
}

.prime__banner-text {
   position: relative;
   z-index: 1;
   font-weight: 700;
   font-size: 30px;
   color: #273a41;
   margin-top: 0;
}

/* Characteristics */
.content.characteristics {
   border: 1px solid #ec632b;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   padding: 0;
}

.characteristics__title {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   width: 100%;
   margin-bottom: 33px;
}

.characteristics__title .title {
   font-size: 30px;
   background: #ec632b;
   width: 420px;
   padding: 16px 30px;
   border-bottom-right-radius: 15px;
}

.characteristics__title p {
   background: #364d55;
   margin-top: 0;
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
   margin-left: 30px;
   padding: 16px 30px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   border-bottom-left-radius: 15px;
}

.characteristics__table {
   font-size: 24px;
   line-height: 1;
}

.characteristics__table th {
   background: #364d55;
   width: 420px;
}

.characteristics__table tr:first-child th {
   border-radius: 0 14px 0 0;
   -webkit-border-radius: 0 14px 0 0;
   -moz-border-radius: 0 14px 0 0;
   -ms-border-radius: 0 14px 0 0;
   -o-border-radius: 0 14px 0 0;
   padding-top: 50px;
}

.characteristics__table th,
.characteristics__table td {
   padding: 13.5px 56px;
}

.characteristics__table tr:last-child th,
.characteristics__table tr:last-child th {
   padding-bottom: 127px;
}

/* Pros Cons */
.pros-cons__wrap {
   background: #314a53;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   margin-top: 40px;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
}

.pros-cons__item {
   background: #3f5d67;
   width: -webkit-calc(50% - 15px);
   width: -moz-calc(50% - 15px);
   width: calc(50% - 15px);
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
   overflow: hidden;
}

.pros-cons__title {
   background: #203238;
   color: #ec632b;
   text-transform: uppercase;
   padding: 42px 30px;
}

.pros-cons__item ul {
   padding: 29px 30px 48px;
}

/* Banner */
.content.banner {
   padding: 300px 0 0;
   border-radius: 15px 15px 15px 0;
   -webkit-border-radius: 15px 15px 15px 0;
   -moz-border-radius: 15px 15px 15px 0;
   -ms-border-radius: 15px 15px 15px 0;
   -o-border-radius: 15px 15px 15px 0;
}

.banner__text {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   width: 100%;
   background: #405e69;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
}

.banner__title {
   background: #597884;
   font-size: 30px;
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
   padding: 25px 30px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   border-radius: 15px 0 15px 0;
   -webkit-border-radius: 15px 0 15px 0;
   -moz-border-radius: 15px 0 15px 0;
   -ms-border-radius: 15px 0 15px 0;
   -o-border-radius: 15px 0 15px 0;
}

.banner__title .title {
   font-size: 30px;
}

.banner__button {
   background: #405e69;
   padding: 25px 30px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}

.banner__button .button {
   margin-top: 0;
}

/* Account */
.list {
   background: #fff;
   color: #203238;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   padding: 30px;
}

.list li {
   min-height: 80px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   border: 2px solid #ec632b;
   padding: 10px 30px;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
}

.list li+li {
   margin-top: 25px;
}

.account__form-wrap {
   background: #314a53;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   width: 100%;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   padding: 100px 105px;
   margin-top: 25px;
}

.account__form-img {
   margin-right: 105px;
}

.account__form-form {
   max-width: 555px;
   width: 100%;
}

.account__form-field {
   font-family: 'Roboto', sans-serif;
   display: block;
   width: 100%;
   background: transparent;
   border-radius: 50px;
   -webkit-border-radius: 50px;
   -moz-border-radius: 50px;
   -ms-border-radius: 50px;
   -o-border-radius: 50px;
   border: 1px solid #fff;
   color: #fff;
   padding: 25px 30px;
   min-height: 75px;
   margin-bottom: 30px;
}

.account__form-field::placeholder {
   color: #fff;
   opacity: 1;
}

.account__form-field::-ms-input-placeholder {
   color: #fff;
}

.account__form-check {
   position: absolute;
   z-index: -1;
   opacity: 0;
   margin: 0;
}

.account__form-desk {
   display: block;
   font-size: 16px;
   position: relative;
   padding-left: 40px;

   text-align: left;
}

.account__form-desk:before {
   content: '';
   display: block;
   width: 21px;
   height: 21px;
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   margin: auto;
   border-radius: 3px;
   border: 2px solid #fff;
}

.account__form-check:checked+.account__form-desk:before {
   background: #fff;
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%221em%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M438.6%20105.4c12.5%2012.5%2012.5%2032.8%200%2045.3l-256%20256c-12.5%2012.5-32.8%2012.5-45.3%200l-128-128c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200L160%20338.7%20393.4%20105.4c12.5-12.5%2032.8-12.5%2045.3%200z%22%20fill%3D%22%23ec632b%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: 15px;
}

.account__form-buttton {
   background: #ec632b;
   border-color: #ec632b;
   color: #fff;
   min-width: 210px;
}

/* Promotions */
.promotions__list {
   background: #16252a;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.promotions__item {
   background: #eeeff4;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   max-width: 388px;
   width: -webkit-calc(33.3% - 20px);
   width: -moz-calc(33.3% - 20px);
   width: calc(33.3% - 20px);
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
   padding-bottom: 10px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
}

.promotions__img img {
   display: block;
}

.promotions__desk {
   background: #fff;
   color: #23564f;
   width: calc(100% - 23px);
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   margin: -75px auto 0;
   text-align: center;
   padding: 65px 15px 23px;
   position: relative;
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
}

.promotions__icon {
   background: #fff;
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   width: 100px;
   height: 100px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   position: absolute;
   top: -50px;
   left: 0;
   right: 0;
   margin: auto;
}

.promotions__title {
   position: relative;
   padding-bottom: 14px;
}

.promotions__title:before {
   content: '';
   position: absolute;
   width: 62px;
   height: 3px;
   background: #909191;
   right: 0;
   left: 0;
   bottom: 0;
   margin: auto;
}

.promotions__text {
   margin-top: 17px;
}

.promotions__text span {
   display: block;
}

.promotions__buttons {
   margin-top: auto;
}

.promotions__buttons .button {
   font-size: 9px;
   padding: 14px 15px;
   min-width: 135px;
   margin: 26px 7px 0;
}

.promotions__buttons .button:first-child {
   background: #05a980;
   border-color: #05a980;
}

.promotions__buttons .button:last-child {
   background: transparent;
   border-color: #d4d5d6;
   color: #4b504f;
}

/* Tournament */
.tournament__list {
   background: #334c55;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
}

.tournament__item {
   background: #eeeff4;
   color: #203138;
   width: -webkit-calc(33.3% - 20px);
   width: -moz-calc(33.3% - 20px);
   width: calc(33.3% - 20px);
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   padding: 0 30px 15px;
}

.tournament__item+.tournament__item {
   margin-left: 30px;
}

.tournament__list-title {
   background: #ec632b;
   font-weight: 700;
   color: #fff;
   display: inline-block;
   width: auto;
   margin: 0 0 0 -30px;
   border-radius: 15px 0 15px 0;
   -webkit-border-radius: 15px 0 15px 0;
   -moz-border-radius: 15px 0 15px 0;
   -ms-border-radius: 15px 0 15px 0;
   -o-border-radius: 15px 0 15px 0;
   padding: 12px 30px;
   max-width: 210px;
   width: 100%;
}

.tournament__list-text {
   margin-top: 10px;
}

/* Slots */
.slot__table {
   font-family: 'Roboto', sans-serif;
   background: #f8f9fd;
   color: #203138;
   margin: 50px 0 0;
   width: 100%;
   padding: 50px 30px 75px 105px;
   border-radius: 11px;
   -webkit-border-radius: 11px;
   -moz-border-radius: 11px;
   -ms-border-radius: 11px;
   -o-border-radius: 11px;
}

.slot__table th,
.slot__table td {
   font-weight: 700;
}

.slot__table th {
   padding-bottom: 34px;
}

.slot__table th:first-child,
.slot__table th:nth-child(2) {
   width: 23%;
}

.slot__table td {
   padding: 2.5px 10px 2.5px 0;
}

/* Games */
.games__table {
   margin: 25px 0 0 -30px;
   width: 100%;
}

.games__table table {
   border-collapse: separate;
   border-spacing: 30px 0;
}

.games__table th,
.games__table td {
   background: #314a53;
   font-size: 18px;
   line-height: 2;
   padding: 18px 30px;
}

.games__table th:first-child {
   width: 210px;
}

.games__table th span {
   display: inline-block;
   background: #ec632b;
   max-width: 210px;
   width: 100%;
   padding: 11px 35px;
   border-radius: 15px 0 15px 0;
   -webkit-border-radius: 15px 0 15px 0;
   -moz-border-radius: 15px 0 15px 0;
   -ms-border-radius: 15px 0 15px 0;
   -o-border-radius: 15px 0 15px 0;
}

.games__table tr:first-child th {
   border-radius: 15px 15px 0 0;
   -webkit-border-radius: 15px 15px 0 0;
   -moz-border-radius: 15px 15px 0 0;
   -ms-border-radius: 15px 15px 0 0;
   -o-border-radius: 15px 15px 0 0;
   padding: 0;
}

.games__table tr:last-child th,
.games__table tr:last-child td {
   border-radius: 0 0 15px 15px;
   -webkit-border-radius: 0 0 15px 15px;
   -moz-border-radius: 0 0 15px 15px;
   -ms-border-radius: 0 0 15px 15px;
   -o-border-radius: 0 0 15px 15px;
   padding-bottom: 45px;
}

/* FAQ */
.faq__list {
   margin-top: 42px;
}

.faq__item+.faq__item {
   margin-top: 28px;
}

.faq__item {
   background: #314a53;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   overflow: hidden;
   padding-right: 30px;
}

.faq-item__title {
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
   color: #fff;
   text-align: left;
   text-transform: none;
   padding: 23px 38px;
   -webkit-transition: all .4s;
   -moz-transition: all .4s;
   -ms-transition: all .4s;
   -o-transition: all .4s;
   transition: all .4s;
   cursor: pointer;
   border-bottom-right-radius: 15px;
}

.faq-item__title:hover,
.faq__item.active .faq-item__title {
   background: #ec632b;
}

.faq-item__desc {
   font-size: 16px;
   font-weight: 400;
   padding: 23px 0 23px 26px;
   color: #fff;
}

.faq-item__desc p:first-child {
   margin-top: 0;
}

/* Comments */
.comments__list {
   background: #334c55;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   grid-gap: 30px;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
   margin-top: 30px;
}

.comments__list li {
   background: #eeeff4;
   color: #203138;
   width: -webkit-calc(33.3% - 20px);
   width: -moz-calc(33.3% - 20px);
   width: calc(33.3% - 20px);
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
}

.comments__autor {
   display: inline-block;
   background: #ec632b;
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
   color: #fff;
   border-radius: 15px 0 15px 0;
   max-width: 210px;
   width: 100%;
   margin-top: 0;
   -webkit-border-radius: 15px 0 15px 0;
   -moz-border-radius: 15px 0 15px 0;
   -ms-border-radius: 15px 0 15px 0;
   -o-border-radius: 15px 0 15px 0;
   padding: 11px 30px 14px;
}

.comments__desc {
   padding: 18px 29px 20px;
   margin-top: 0;
}

/* Grades */
.grades {
   border: 1px solid #ec632b;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
}

.grades__list {
   margin-top: 32px;
}

.grades__list li+li {
   margin-top: 25px;
}

/* Summary */
.summary {
   background: #17262b;
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
}