.banner-course {
    background: url(../images/rimr_banner.jpg);
    background-size: cover;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.banner-course h1 {
    font-family: 'Open Sans';
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 40px;
    margin-top: 0;
}

.banner-content {
    max-width: 80%;
}

.banner-btn {
    width: 250px;
    height: 46px;
    line-height: 44px;
    background-color: #007EB1;
    color: #fff;
    text-align: center;
    font-size: 15px;
    display: block;
    box-sizing: border-box;
    text-transform: uppercase;
}

.banner-btn:hover {
    background-color: #134f8b;
    color: #fff;
    cursor: pointer;
	text-decoration: none;
}
.banner-btn:active, .banner-btn:focus {
	background-color: #134f8b;
    color: #fff;
	border: none;
	text-decoration: none;
}

.banner-logo {
    position: absolute;
    width: 152px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 90px;
    top: 0;
    background: rgba(255,255,255,0.5);
    border-radius: 0 0 28px 28px;
}

.banner-logo:after {
    position: absolute;
    content:'';
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 0 28px 28px;
    padding: 10px;
    left: -10px;
    top:-10px;
}

.banner-logo img {
    margin-top: 100px;
}

.basic-info {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 16px rgba(0,0,0,0.2);
}

.basic-info-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-ic {
    flex-basis: 48px;
}

.info-desc {
    flex-basis: calc(100% - 48px - 8px);
    font-size: 16px;
}

.info-title {
    font-weight: 600;
    line-height: 1.375;
    margin-bottom: 4px;
}

.course-h2 {
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 18px 0 16px 38px;
    background: url(../images/title.svg) left top no-repeat;
    position: relative;
    margin-bottom: 50px;
}

.about p {
    font-size: 16px;
}

.course-section {
    padding: 80px 0;
}

.day-title {
    font-size: 30px;
    line-height: 32px;
    color: #5A6468;
    padding: 10px 24px;
    border: 1px solid #5A6468;
    border-radius: 60px;
    max-width: fit-content;
    margin-bottom: 32px;
}

.accordion-item {
    padding-bottom: 8px;
    margin-bottom: 32px;
    border-bottom: 1px solid #5A6468;
}

.accordion-item.last {
    border-bottom: none;
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-header {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    padding-right: 80px;
}

.accordion-header.has-content {
    cursor: pointer;
}

.accordion-content {
    padding-top: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; 
    font-size: 16px;
}

.accordion-content.active {
    max-height: unset;
}

.accordion-header.has-content::before {
    content: '';
    background: url(../images/arrow.svg);
    width: 32px;
    height: 32px;
    transform: rotate(180deg);
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.accordion-header.active::before {
    transform: rotate(0deg);
}

.accordion-content ul {
    list-style: none;
    padding-left: 5px;
}

.accordion-content li {
    padding-left: 15px;
    position: relative;
}

.accordion-content li:before {
    content: '';
    background: #000;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
}

.about-course-banner {
    background: url(../images/course-banner.jpg) no-repeat;
    background-size: cover;
    padding: 58px;
    text-align: center;
    margin-bottom: 80px;
}

.banner-title {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
}

.about-course-banner .banner-btn {
    width: 410px;
    margin: 32px auto 0;
}

.teachers-flex {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.teacher-info {
    flex-basis: 33%;
}

.teacher-detail {
    flex-basis: calc(66% - 40px);
    font-size: 16px;
}

.teacher-name {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.teacher-position {
    font-size: 16px;
}

.sertificate {
    display: flex;
    gap: 70px;
    padding: 40px 144px;
    align-items: center;
    background: url(../images/sertificate_bg.jpg) no-repeat;
    background-size: cover;
}

.sertificate-img {
    flex-basis: 45%;
}

.sertificate .banner-title {
    flex-basis: 55%;
}

.partner-sertificate {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.partner-sertificate .sertificate-img {
    flex-basis: 40%;
}

.sertificate-info {
    flex-basis: 60%;
}

.form-group-flex {
    display: flex;
    gap: 80px;
}

.modal .form-group-flex {
    gap:48px;
}

.study-form .form_bottom {
    max-width: 1186px;
}

.form-group-col {
    flex-basis: 50%;
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #000;
}

select.form-control {
    padding: 12px 40px 12px 15px;
    background-color: #fff;
    background-image: url(../images/down.svg);
    background-repeat:no-repeat;
    background-position: 96% center;
    display: block;
    height: unset;
    white-space: break-spaces;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    white-space: break-spaces;
}

select.form-control.big-select {
    height: 92px;
}

select.form-control[disabled] {
    padding: 12px 35px 12px 15px;
    height: unset;
    white-space: break-spaces;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/down.svg);
    background-repeat:no-repeat;
    background-position: 96% center;
    background-color: #F9F9F9;
    color: rgba(90, 100, 104, 0.9);
}

select.form-control[disabled].big-select {
    height: 92px;
}


select option {
    position: relative;
    box-shadow: 0px 0px 16px 0px #00000033;
    border: 1px solid #007EB1;
}


.form-control {
    height: 48px;
}

.form_bottom .checkbox {
    padding-left: 30px;
}

.checkbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.checkbox__custom {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: unset;
}

.checkbox__label {
    display: block;
    padding-left: 30px;
    font-size: 14px !important;
    cursor: pointer;
    margin-bottom: 0;
    font-size: calc(10px + 4*(100vw - 320px) / 1600);
    line-height: 1.25;
    line-height: 20px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.checkbox__label:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #CCCCCC;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.checkbox__custom:checked+.checkbox__label:before {
    background-image: url(../images/check-input.svg);
    background-size: 32px 32px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}

.checkbox a {
    font-size: 14px;
}

.checkbox__label small {
    color: #5A6468;
    font-size: 14px;
}

.form_bottom .main_btn {
    font-size:15px;
    font-family: 'Open Sans';
    font-weight: 400;
    height: 46px;
    line-height: 44px;
    padding: 0;
}

.form_bottom .main_btn:hover {
   background: #134f8b;
    color: #fff;
}

.error-message {
    color: #DD4545;
}

input.error {
    border-color: #DD4545;
}

.modal-content {
    background: #F2F3F5;
}

#modal-smetcurs .modal-dialog, #modal-consult .modal-dialog, #modal-order .modal-dialog {
    max-width: 1258px;
    width: 100%;
}

#modal-smetcurs .modal-content, #modal-consult .modal-content, #modal-order .modal-content {
    box-shadow: none;
    border: none;
}

.modal-content .header_second {
    margin-top: 0;
    font-size: 38px;
}

.modal .form_bottom {
    max-width: 100%;
}

#modal-smetcurs .main_btn, #modal-consult .main_btn, #modal-order .main_btn {
    margin-left: auto;
    margin-right: auto;
    max-width: 157px;
}

#modal-smetcurs .modal-body, #modal-consult .modal-body {
    padding-bottom: 5px;
}

.modal .form_bottom .checkbox, #modal-consult .modal-body  .checkbox label {
    margin-bottom: 0;
}

.complex-version .txt {
	font-size: 16px;
	max-width: 84%;
}
.complex-version .sub_main {
	justify-content:center;
}
.complex-version .sub_main .item {
	padding: 2px 15px;
	font-size: 16px;
}
.version-list {
	display: flex;
	gap: 40px;
}
.version-item {
	max-width: 892px;
	margin: 56px auto;
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
	padding: 48px 40px;
	background: #fff;
	flex:1;
	position: relative;
}
.version-title {
	font-size: 26px;
	font-weight: 600;
	margin-top: 0;
	padding-bottom: 32px;
	border-bottom: 1px solid #5A6468;
	margin-bottom: 40px;
}
.version-price  {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items:  baseline;
	margin-bottom: 32px;
}
.trial-days {
	color: #5A6468;
	font-size: 14px;
}
.item-price {
	color: #007EB1;
	font-size: 26px;
	font-weight: 600;
}
.version-text {
	font-size: 16px;
	margin-bottom: 108px;
}
.version-text p {
	margin-bottom: 24px;
}
.version-text p + ul {
	margin-top: -16px;
}
.version-text ul {
	list-style: none;
	padding-left: 0;
}
.version-text li {
	padding-left: 32px;
	position: relative;
	margin-bottom: 6px;
	line-height: 1.4;
}
.version-text li:before {
	position: absolute;
	content:'';
	background: url(../images/check-thin.svg);
	width: 23px;
	height: 24px;
	left: 0;
	top: 0;
}
.version-btn {
	padding: 13px 44px;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	background: #007EB1;
	margin: 0 auto;
	display: block;
	max-width: fit-content;
	position: absolute;
	bottom: 44px;
	left: 0;
	right: 0;
}
.version-btn.main_btn {
	padding: 0 44px;
	font-weight:400;
}
.banner-btn.main_btn {
	padding: 0 44px;
	font-weight:400;
}
.modal-subtitle {
	margin:40px 0;
	font-size: 16px;
}
.version-btn:hover {
	background-color: #134f8b;
	cursor: pointer;
	
}
.possibilities-list {
	display: flex;
	gap: 56px 40px;
	flex-wrap: wrap;
}
.possibilities-item {
	flex-basis: calc(50% - 20px);
}
.possibilities-item img {
	margin-bottom: 32px;
}
.possibilities-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom:24px;
}
.possibilities-txt {
	font-size: 16px;
}
.invite-course-banner {
	background: linear-gradient(67.23deg, #0884B6 -13.56%, #1D4B94 94.69%);
	padding: 36px 114px 40px 80px;
	display: flex;
	gap: 120px;
	align-items: center;
	color: #fff;
	margin-bottom: 40px;
}
.banner-text {
	font-size:22px;
	margin-bottom: 32px;
}
.invite-course-banner .banner-title {
	margin-bottom: 24px;
}
.invite-course-banner .banner-btn {
	background: #fff;
	color: #000;
}
.invite-course-banner .banner-btn:hover, .normative-doc-banner  .banner-btn:hover {
	background-color: #134f8b;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
}
.invite-banner-img {
	flex-basis: 35%;
}
.invite-banner-desc {
	flex-basis: 65%;
}
.leave-quastion-text {
	font-size: 16px;
	margin-bottom: 56px;
}
.leave-quastion .form_bottom {
	max-width: 1184px;
}
.banner-trial {
	background: url(../images/banner-trial.jpg);
	background-size: cover;
	padding: 46px 80px;
}
.banner-list {
	display: flex;
	gap: 170px;
	align-items: center;
}
.banner-trial .banner-desc {
	flex-basis: calc(65% - 85px);
}
.banner-trial .banner-img {
	flex-basis: calc(35% - 85px);
}
.banner-trial .banner-title {
	margin-bottom: 24px;
}
.banner-trial .banner-btn {
	width: 480px;
}
.banner-trial .banner-btn:hover {
	background-color: #134f8b;
	cursor: pointer;
	text-decoration:none;
	color: #fff;
}
.tabs-list {
    display: flex;
    justify-content: center;
}
.tab-item {
	display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-bottom: #dedede 3px solid;
    color: #c0c0c0;
    padding: 0 15px;
    cursor: pointer;
    text-decoration: none;
}
.tab-item.active {
    border-bottom: #007db3 3px solid;
    color: #000;
}
.tab-content {
	display: none;
	padding-top: 56px;
	padding-bottom: 64px;
}
.tab-content.active {
	display: block;
}
.maintenance-list {
    display: flex;
    gap: 40px;
}
.maintenance-item {
	max-width: 659px;
    margin: 0 auto 56px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 48px 40px;
    background: #fff;
    flex: 1;
    position: relative;
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.maintenance-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.maintenance-row:first-child .maintenance-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}
.maintenance-title {
	font-size: 16px;
	max-width: 430px;
}
.maintenance-price {
	font-size: 26px;
	font-weight: 600;
	color: #007EB1;
	white-space: nowrap;
}
.includes-wrap {
	display: flex;
	gap: 40px;
}
.includes-title {
	flex-basis: 310px;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
}
.includes-list {
	flex-basis: calc(100% - 310px);
	padding-left: 0;
	list-style: none;
	font-size: 16px;
}
.includes-list li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 16px;
}
.includes-list li:before {
	position: absolute;
	content:'';
	background: url(../images/include-check.svg);
	width: 24px;
	height: 24px;
	left: 0;
	top: 0;
}
.version-link {
	font-size: 22px;
	color: #007EB1;
	text-decoration: underline;
}
.normative-doc-banner {
	margin-bottom: 80px;
	background: url(../images/normative-doc.jpg);
	padding: 80px;
}
.normative-doc-banner .banner-title {
	margin-bottom: 24px;
}
.normative-doc-desc {
	max-width: 690px;
}
.version-price + .version-price {
	margin-top: -16px;
}
.system-list {
	max-width: 1125px;
}
.system-item {
	display: flex;
	gap: 32px;
	flex-direction: column;
	padding-bottom: 40px;
	border-bottom: 1px solid #5A6468;
	margin-bottom:40px;
}
.system-list .system-item:last-child {
	border-bottom: none;
}
.module-item {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: baseline;
}
.module-name {
	flex-basis: calc(100% - 248px);
}
.module-name p {
	font-size: 16px;
}
.module-name a {
	color: #000;
	text-decoration: underline;
}
.module-name a:hover {
	text-decoration: none;
}
.module-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}
.module-title+p, .module-title+ul {
	margin-top: 8px;
}
.module-title strong {
	font-size: 26px;
}
.module-price {
	font-size: 26px;
	font-weight: 600;
	color: #007EB1;
	width: 248px;
	text-align: right;
	
}
.module-price p {
	font-size: 16px;
	color: #000;
	font-weight: 400;
}
.module-price small {
	color: #5A6468;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.28;
	display: inline-block;
	margin-right: 8px;
}
.currency {
	font-weight: 400;
}
.complex-version .txt a {
	color: #000;
	text-decoration: underline;
}
.complex-version .txt a:hover {
	text-decoration: none;
}
.normative-doc-banner+.support-service {
	padding-top:40px;
}
.course-section .course-h2 {
	margin-top: 0;
}
.includes-wrap+.version-link {
	margin-top: 100px;
	display: inline-block;
}
.system-list+.version-link {
	margin-top: 80px;
	display: inline-block;
}
.system-item:last-child {
	padding-bottom:0;
	margin-bottom: 0;
}
.system-item ul {
    list-style: none;
    padding-left: 0;
}
.system-item li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 6px;
    line-height: 1.4;
	font-size: 16px;
}
.system-item li:before {
    position: absolute;
    content: '';
    background: url(../images/check-thin.svg);
    width: 23px;
    height: 24px;
    left: 0;
    top: 0;
}
.module-item.sub {
	margin-left: 117px;
}
.service .system-item {
	gap: 24px;
}
.banner-info {
	background: linear-gradient(96.72deg, #E9EEF2 -1.69%, #DEE5E9 86.99%);
	padding: 32px 100px 32px 80px;
}
.banner-info .banner-title {
	margin-bottom: 24px;
}
.banner-info .banner-img {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 61px;
}
.banner-info .banner-desc {
    flex-basis: calc(62% - 85px);
}
.banner-info .banner-img {
    flex-basis: calc(38% - 85px);
}
.base .sub_main {
    justify-content: center;
}
.price-table {
	width: 100%;
}
.price-table thead {
	background: #fff;
	border-bottom: 8px solid #F1F3F4;
}
.price-table th {
	padding: 24px 32px;
	font-size: 22px;
	font-weight: 600;
	border: 1px solid #F1F3F4;
}
.price-table th:first-child, .price-table th:last-child,
.price-table td:first-child, .price-table td:last-child {
	text-align: center;
}
.price-table th:last-child {
	width: 222px;
}
.price-table tbody {
	background: #fff;
}
.price-table td {
	padding: 24px 32px;
	font-size: 16px;
	vertical-align: middle;
	border: 1px solid #F1F3F4;
}

.price-table td:last-child {
	font-size: 22px;
	font-weight: 600;
	color: #007EB1;
	padding: 21px;
}
.price-table td:last-child small {
	color:#5A6468;
	font-size: 14px;
	font-weight: 400;
	margin-right: 8px;
}

.price-table td:nth-of-type(2)  {
	border-right: none;
}
.price-table td:nth-of-type(3)  {
	border-left: none;
}
.price-table td[colspan="4"] {
	font-size: 16px;
	font-weight:400;
	color: #000;
	text-align: left;
}
.more-link span{
	text-decoration: underline;
}
.more-link {
	position: relative;
	padding-right: 20px;
	display: block;
    color: #007EB1;
    cursor: pointer;
}
.more-link:after {
	position: absolute;
	content:'';
	background: url(../images/arrow-blue.svg);
	width: 15px;
	height: 9px;
	top: calc(50% - 4.5px);
	right: 0;
}
.filter-container {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}
.filter-container label {
	margin-bottom: 0;
}

.base .sub_main {
	margin-bottom:33px;
}
.base .tabs-list {
	gap: 8px;
}
.base .tab-item {
	padding: 10px 16px;
	color: #7B7B7B;
	background: #E8E8E8;
	border: none;
}
.base .tab-item.active {
	background: #007EB1;
	color:#fff;
}
.custom-select { 
	position: relative; 
	display: inline-block; 
}
.custom-select select { 
	display: none; 
}
.select-trigger { 
	cursor: pointer; 
	padding: 16px; 
	font-size: 16px;
	background: #fff url(../images/arrow-select.svg) 94% center no-repeat;
	border: 1px solid #E7E7E7;
	width: 240px;
	position:relative;
	z-index:2;	
	
}
.custom-select .dropdown { 
	position: absolute; 
	background: #fff; 
	box-shadow: 0px 0px 16px 0px #00000033; 
	display: none; 
	z-index: 1; 
	padding: 24px 0;
	width: 240px;
}
.custom-select .dropdown.show { 
	display: block; 
}
.custom-select .dropdown a { 
	display: block; 
	padding: 4px 16px;
    margin-bottom: 10px;
	font-size: 16px;
	color: #000;
	text-decoration: none;
 }
.custom-select .dropdown a:hover { 
	background:rgba(204, 204, 204, 0.4);
}

@media screen and (max-width: 1366px) {
    .banner-course {
        padding: 0 40px;
    }

    .banner-course h1 {
        font-size: 36px;
    }

    .sertificate {
        padding: 40px;
    }

    .banner-title {
        font-size: 32px;
    }

    .form-group-flex {
        gap: 40px;
    }
	.invite-course-banner, .banner-trial, .normative-doc-banner, .banner-info {
		padding: 30px 40px;
	}
	.banner-text {
		font-size: 18px;
	}
	.banner-list {
		gap: 40px;
	}
	.base .tabs-list {
		gap: 8px;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 1280px) {
    .banner-course h1 {
        font-size: 30px;
    }

    .banner-logo {
        width: 100px;
        height: 150px;
        right: 40px;
    }

    .banner-course {
        height: 350px;
    }

    .basic-info {
        flex-wrap: wrap;
        gap: 30px;
    }

    .basic-info-item {
        width: calc(50% - 30px);
    }

    .day-title {
        font-size: 24px;
    }

    .accordion-header {
        font-size: 21px;
    }

    .teacher-name {
        font-size: 22px;
    }

    .banner-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .form-group-flex {
        flex-direction: column;
        gap: 0;
    }

    .checkbox {
        margin: 0;
    }
	.possibilities-title {
		font-size: 20px;
	}
	.possibilities-item img {
		margin-bottom: 24px;
	} 
	.includes-title {
		font-size: 22px;
	}
	.includes-title {
		flex-basis: 210px;
	}
	.includes-list {
		flex-basis: calc(100% - 310px);
    }
	.version-link {
		font-size: 20px;
	}
	.module-item.sub {
		margin-left: 40px;
	}
	.price-table th {
		padding: 16px 24px;
		font-size: 20px;
	}
	.price-table td {
		padding: 16px 24px;
		font-size: 15px;
	}
	.price-table td:last-child {
		font-size: 20px;
		padding: 16px 16px;
	}
}

@media screen and (max-width: 1280px) and (min-width: 992px) {
	.version-list, .maintenance-list {
		flex-direction: column;
	}
	.version-item + .version-item, .maintenance-item + .maintenance-item {
		margin-top: -56px;
	}
}

@media screen and (max-width: 991px) {
    .course-h2 {
        font-size: 30px;
        padding: 24px 0 16px 38px;
    }

    .course-section {
        padding: 60px 0;
    }

    .day-title {
        font-size: 21px;
    }
	.version-title, .maintenance-price {
		font-size:24px;
	}
	.maintenance-row:first-child .maintenance-title {
		font-size: 20px;
	}
	.module-title {
		font-size: 20px;
	}
	.module-title strong {
		font-size: 22px;
	}
	.module-price {
		font-size: 24px;
	}
}

@media screen and (max-width: 767px) {
    .teachers-flex {
        flex-direction: column;
    }

    .sertificate {
        gap: 24px;
    }

    .banner-course {
        padding: 0 20px;
    }

    .banner-logo {
        width: 60px;
        height: 100px;
        right: 20px;
    }

    .banner-logo img {
        margin-top: 40px;
    }

    .banner-content {
        max-width: calc(100% - 70px);
    }

    .basic-info {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .accordion-header {
        font-size: 20px;
    }

    .sertificate {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .basic-info-item {
        width: 100%;
    }

    .partner-sertificate {
        flex-direction: column;
    }
    
    #modal-smetcurs .modal-dialog, #modal-consult .modal-dialog {
      max-width: 1258px;
      width: calc(100% - 20px);
   }
   .version-item {
		padding: 30px;
	}
	.version-title {
		padding-bottom: 24px;
		margin-bottom: 32px;
	}
	.version-price {
		margin-bottom: 24px;
	}
	.version-text {
		margin-bottom: 40px;
	}
	.version-item {
		margin: 40px auto;
	}
	.possibilities-title {
        font-size: 18px;
		line-height: 1.2;
    } 
	.possibilities-txt {
		font-size:15px;
	}
	.invite-banner-img, .invite-banner-desc {
		flex-basis: 100%;
	}
	.invite-course-banner {
		gap: 60px;
		flex-direction: column;
	}
	.complex-version .txt {
		max-width:100%;
	}
	.version-list {
		flex-direction: column;
	}
	.version-btn {
		position: unset;
	}
	.banner-list, .maintenance-list, .includes-wrap {
		flex-direction: column;
	}
	.banner-trial .banner-btn {
		width: 100%;
	}
	.version-item + .version-item, .maintenance-item + .maintenance-item {
		margin-top: -56px;
	}
	.includes-title {
        flex-basis: 100%;
    }
	.tab-content {
		padding-bottom: 40px;
	}
	.module-price {
		width: unset;
	}
	.module-price small {
		display: block;
	}
	.module-name {
		flex-basis: calc(100% - 160px);
	}
	.price-table {
		width: 767px;
	}
	.price-table th {
		padding: 12px 16px;
		font-size: 18px;
	}
	.price-table td {
		padding: 12px 16px;
		font-size: 14px;
	}
	.price-table td:last-child {
		font-size: 18px;
		padding: 12px 12px;
	}
}

@media screen and (max-width: 569px) {
	#modal-smetcurs .modal-dialog, #modal-consult .modal-dialog, #modal-order .modal-dialog {
		width: calc(100% - 20px);
	}
	.modal-content .header_second {
		font-size:30px;
	}
}

@media screen and (max-width: 480px) {
    .banner-course {
        padding: 0 16px;
    }

    .basic-info {
        padding: 20px 16px;
    }

    .course-h2 {
        margin-bottom: 30px;
    }

    .course-section {
        padding: 40px 0;
    }

    .day-title {
        font-size: 18px;
    }

    .accordion-header {
        font-size: 17px;
    }

    .about-course-banner {
        padding: 40px 16px;
    }

    .about-course-banner .banner-btn {
     width: 100%;
    }

    .sertificate {
        padding: 40px 16px;
        flex-direction: column;
    }

    .course-h2 {
        font-size: 25px;
        line-height: 29px;
        background-size: 50px auto;
        background-position: 25px 15px;
        padding: 27px 0 10px 38px
    }

    .about-course-banner .banner-btn {
        padding: 14px 10px;
        height: unset;
        text-align: center;
        line-height: 1.3;
    }
	.version-title, .item-price {
		font-size: 22px;
	}
	.possibilities-list {
		flex-direction: column;
	}
	.banner-btn {
		width: 100%;
	}
	.version-item {
        padding: 20px;
    }
	.invite-course-banner, .banner-trial, .normative-doc-banner, .banner-info {
        padding: 20px 30px;
    }
	.banner-trial .banner-title, .banner-info .banner-title {
		font-size:26px;
	}
	.banner-trial .banner-btn {
        width: 100%;
        height: unset;
        padding: 5px 20px;
        line-height: 1.4;
    }
	.maintenance-item {
		padding:20px;
	}
	.maintenance-row:first-child .maintenance-title {
        font-size: 18px;
    }
	.maintenance-price {
		font-size: 20px;
	}
	.maintenance-title, .version-text, .complex-version .txt, .includes-list li, .module-name p {
		font-size: 15px;
	}
	.banner-text {
		font-size:16px;
	}
	.modal-body {
        padding: 30px 20px;
    }
	.module-title {
        font-size: 17px;
    }
	.module-price {
        font-size: 20px;
    }
	.module-price {
		min-width: 90px;
	}
	.module-name {
		flex-basis: unset;
	}
	.module-title strong {
		font-size: 20px;
	}
	.module-item.sub {
        margin-left: 24px;
    }
	.system-list+.version-link {
		margin-top: 40px;
	}
}

.sub_main .item.active {
    border-bottom: #007db3 3px solid;
    color: #000;
}

.sub_main .item {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-bottom: #dedede 3px solid;
    color: #c0c0c0;
    padding: 0 15px;
    cursor: pointer;
    text-decoration: none;
}

.sub_main {
    display: flex;
}

.support-service .version-link {
    
    margin-top: 40px;
    display: block;
    padding: 13px 44px;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    background: #007EB1;
    margin: 0 auto;
    max-width: fit-content;
    text-decoration: none;
}

.support-service .version-link:hover {
    opacity: 0.8;
}

.brn{
    border-bottom: 0px;
    margin-bottom: 0px;
}

.table-responsive .text_more{
    display: none;
}
.more-link.active:after{
    transform: rotate(180deg);
}

.modal-body7 .error-message{
    margin-top: 19px;
}