@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
body.lock {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: 400;
}

form {
  margin: 0;
}

fieldset {
  padding: 0;
  border: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

address {
  font-style: inherit;
}

p {
  margin: 0;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
}

button {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

input {
  border: inherit;
  padding: 0;
  margin: 0;
}

:root {
  --white: #fff;
  --black: #000;
  --gray: #808080;
  --light-gray:#ededed;
  --primary: #1C3F8B;
  --blue: #1E85E3;
  --green: #22bb33;
  --orange: #FFB623;
  --yellow: #F5B300;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #c8c8c8;
  border-radius: 18px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c8c8c8;
}

.btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 12px 24px !important;
  min-width: 100px;
}
.btn-blue {
  background: linear-gradient(90deg, #1B3B86 0%, #1E85E3 100%) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

.btn-green {
    /*background: linear-gradient(90deg, #1B3B86 0%, #1E85E3 100%) !important;*/
    background: linear-gradient(90deg, #4ADE80 0%, #16A34A 100%) !important;
    color: var(--white) !important;
    border-color: transparent !important;
}

.btn-red {
    background: linear-gradient(25deg, #fc7c7c 0%, #DC2626 100%) !important;
    color: var(--white) !important;
    border-color: transparent !important;
}

.btn-main {
  background-color: var(--orange) !important;
  color: var(--white) !important;
  border-color: var(--orange) !important;
}
.btn-black {
  background-color: #1E1E1E !important;
  color: var(--white) !important;
  border-color: #1E1E1E !important;
}
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}
.btn-transparent {
  background-color: none !important;
  border-color: none !important;
  color: var(--black) !important;
  padding: 0 !important;
  min-width: auto !important;
}
.btn-gray {
  background-color: none !important;
  border-color: #D1D5DB !important;
  color: var(--black) !important;
}
.btn-white {
  background-color: var(--white) !important;
  color: var(--primary) !important;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
}
.btn-success {
  background-color: var(--green) !important;
  border-color: var(--green) !important;
  color: var(--white) !important;
}
.btn-menu {
  content: "";
  background-image: url("../img/icons/ic-menu.svg");
  background-position: center;
  background-repeat: no-repeat;
  min-width: auto;
    padding: 0 !important;
    width: 24px;
    height: 24px;
}
.btn-close-menu {
  content: "";
  background-image: url("../img/icons/ic-close.svg") !important;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: auto;
}
.btn-yellow {
  background-color: var(--yellow) !important;
  border-color: none !important;
  color: var(--black) !important;
}
.btn-border {
  background-color: transparent !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
}
.btn:focus, .btn:active {
  box-shadow: none !important;
  outline: none !important;
}

.icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 48px;
  width: 48px;
  height: 48px;
}
.icon-individual {
  background-image: url("../img/icons/ic-advantages-1.svg");
}
.icon-task {
  background-image: url("../img/icons/ic-advantages-2.svg");
}
.icon-online {
  background-image: url("../img/icons/ic-advantages-3.svg");
}
.icon-test {
  background-image: url("../img/icons/ic-advantages-4.svg");
}
.icon-nis {
  background-image: url("../img/icons/ic-advantages-5.svg");
}

.section {
  padding: 40px 0;
}
.section-header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-header h2 {
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  color: var(--black);
}
.section-header h3 {
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  color: #4B5563;
}

.modal-content {
  border-radius: 16px !important;
  padding: 24px;
}
.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin-bottom: 24px;
}
.modal-body svg {
  margin-bottom: 16px;
}
.modal-body h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  text-align: center;
}
.modal-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  text-align: center;
}
.modal-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  text-align: center;
}
.modal-body h4.green {
  color: #22bb33;
}
.modal-body p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0px;
  text-align: center;
}
.modal-body .card-videolessons {
  padding: 16px;
  border-radius: 12px;
  background: #F3F3F3;
  border: 1px solid #E5E7EB;
  width: 100%;
  margin-top: 24px;
}
.modal-body .card-videolessons .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-body .card-videolessons .item + .item {
  margin-top: 16px;
}
.modal-body .card-videolessons .item .naming {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-body .card-videolessons .item .naming p {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}
.modal-body .card-videolessons .item .naming span {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.modal-body .card-videolessons .item .line {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: #E5E7EB;
}
.modal-body .card-videolessons .item .line span {
  display: block;
  height: 100%;
  border-radius: 100px;
  background: #8d8e91;
}
.modal-body .card-videolessons .item.yellow .naming span {
  color: #F5B300;
}
.modal-body .card-videolessons .item.yellow .line span {
  width: 100%;
  background: #F5B300;
}
.modal-body .card-videolessons .item.blue .naming span {
  color: #2184E2;
}
.modal-body .card-videolessons .item.blue .line span {
  width: 100%;
  background: #2184E2;
}
.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 !important;
  border: 0 !important;
}
.modal-footer .btn {
  width: 100%;
  margin: 0;
}

.header {
  padding: 16px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container nav {
  background-color: var(--white);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -1000%;
  transition: all 0.3s ease 0s;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
    z-index: 1000;
}
.header .container nav.active {
  left: 0;
}
.header .container nav > ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-x: hidden;
  overflow-y: auto;
}
.header .container nav > ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
.header .container nav > ul li a.bold {
  font-weight: 700;
  color: var(--primary);
}
.header .container nav > ul li a:hover, .header .container nav > ul li a:focus {
  color: var(--primary);
  transition: all 0.3s ease 0s;
}
.header .container nav .menu-right {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.header .container nav .menu-right .btn-transparent {
  color: var(--blue) !important;
  font-weight: 600 !important;
}
.header .dropdown {
  margin-bottom: 1rem;
}
.header .dropdown-toggle {
  color: var(--black);
  text-decoration: none;
}

.logo {
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}

.logo-mobile img {
    width: 50px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
}

.logo img {
  width: 96px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo:hover {
  color: var(--primary);
}

.section-hero {
  background: linear-gradient(20.74deg, #1B3B86 6.4%, #2563EB 142.08%);
}
.section-hero .section-body .card {
  background-color: transparent;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-hero .section-body .card .category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--yellow);
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 8.4px;
  font-weight: 600;
}
.section-hero .section-body .card .category svg {
  width: 9px;
  height: 9px;
}
.section-hero .section-body .card .course-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px;
}
.section-hero .section-body .card h1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
.section-hero .section-body .card h2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}
.section-hero .section-body .card .links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 32px 0;
}
.section-hero .section-body .card .links .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.section-hero .section-body .organizators {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-hero .section-body .organizators p {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
}
.section-hero .section-body .organizators ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
    list-style: none;
}
.section-hero .section-body .organizators ul li {
  width: auto;
  height: 45px;
}
.section-hero .section-body .organizators ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-authors {
  background: #F4F6FB;
}
.section-authors .section-header h3 {
  display: none;
}
.section-authors .section-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.section-authors .section-body .card {
  border-radius: 12px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 21px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.section-authors .section-body .card img {
  width: 56px;
  height: 56px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--blue);
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}
.section-authors .section-body .card .info .name {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 4px;
}
.section-authors .section-body .card .info .post {
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-authors .section-body .card .info .subject {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  color: #6B7280;
  margin-bottom: 0px;
}
.section-information {
  background: linear-gradient(222.67deg, #2184E2 -49.2%, #1C3E89 70.58%);
}
.section-information .section-header h2, .section-information .section-header h3 {
  color: var(--white);
}
.section-information .section-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-information .section-body .card {
  padding: 21px;
  background: linear-gradient(90deg, #EFF6FF 0%, #EEF2FF 100%);
  border: 1x solid #E5E7EB;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.section-information .section-body .card .info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.section-information .section-body .card .info p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-information .section-body .card .info ul {
  margin: 16px 0 0 0;
  padding: 0;
    list-style: none;
}
.section-information .section-body .card .info ul li {
  background: url("/assets/img/icons/done-yellow.svg") no-repeat 0;
  padding: 2px 0 2px 32px;
  font-size: 12px;
  color: var(--black);
}
.section-advantages .section-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-advantages .section-body .card {
  padding: 0px;
  background: none;
  border: none;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.section-advantages .section-body .card svg {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
}
.section-advantages .section-body .card svg path {
  width: 48px;
  height: 48px;
}
.section-advantages .section-body .card .info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.section-advantages .section-body .card .info p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-program {
  background-color: #F4F6FB;
}
.section-program .section-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-program .section-body .card {
  padding: 20px 10px;
  border: 1px solid #E5E7EB;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.section-program .section-body .card .number {
  background: linear-gradient(45deg, #FB923C 50%, #F5B300 120.71%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.43px;
  font-weight: 700;
  color: var(--white);
  flex: 0 0 auto;
}
.section-program .section-body .card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
}
.section-certificate-rules {
  background: linear-gradient(228.25deg, #2184E2 -40.59%, #1C3E89 95.38%);
}
.section-certificate-rules .section-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-certificate-rules .section-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.section-certificate-rules .section-body ul {
  margin: 24px 0;
  padding: 0;
    list-style: none;
}
.section-certificate-rules .section-body ul li {
  background: url("/assets/img/icons/done-yellow.svg") no-repeat 0;
  padding: 8px 0 8px 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.section-certificate-rules .section-body .btn {
  background: linear-gradient(90deg, #F58300 0%, #FACC15 100%);
  color: var(--white) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-top: 32px;
}
.section-certificate-rules .section-body .card {
  padding: 16px;
  border-radius: 16px;
}
.section-certificate-rules .section-body .card img {
  width: 100%;
  height: auto;
}
.section-stages {
  background: #F9FAFB;
}

.section-stages-contest {
    background: linear-gradient(75.74deg, #1C3E89 9.86%, #2184E2 137.42%);
}

.section-stages .section-body > h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.section-stages .section-body .stages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-stages .section-body .stages .card {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0px 4.78px 7.18px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 1.91px 2.87px 0px rgba(0, 0, 0, 0.1019607843);
}
.section-stages .section-body .stages .card:nth-child(1) {
  border-top: 1.91px solid #F5B300;
}
.section-stages .section-body .stages .card:nth-child(1) .icon {
  background: linear-gradient(90deg, #FB923C 0%, #EA580C 100%);
}
.section-stages .section-body .stages .card:nth-child(2) {
  border-top: 1.91px solid #9CA3AF;
}
.section-stages .section-body .stages .card:nth-child(2) .icon {
  background: linear-gradient(90deg, #9CA3AF 0%, #4B5563 100%);
}
.section-stages .section-body .stages .card:nth-child(3) {
  border-top: 1.91px solid #FB923C;
}
.section-stages .section-body .stages .card:nth-child(3) .icon {
  background: linear-gradient(90deg, #FACC15 0%, #CA8A04 100%);
}
.section-stages .section-body .stages .card .icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  box-shadow: 0px 4.78px 7.18px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 1.91px 2.87px 0px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-stages .section-body .stages .card .icon svg {
  width: 16px;
  height: 16px;
}
.section-stages .section-body .stages .card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}
.section-stages .section-body .stages .card p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #4B5563;
}
.section-stages .section-body .btn {
  background: linear-gradient(90deg, #F5B300 0%, #FB923C 100%);
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-top: 24px;
}
.section-stages .section-body .images {
  display: none;
}
.section-start {
  background: linear-gradient(135deg, #1B3B86 0%, #1E85E3 35.36%, #2563EB 70.71%);
}
.section-start .section-header h2, .section-start .section-header h3 {
  color: var(--white);
  text-align: center;
}
.section-start .section-body .card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
    align-items: center;
}
.section-start .section-body .card .info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.section-start .section-body .card .info p {
  font-size: 12px;
  color: var(--white);
  margin-bottom: 0;
}
.section-start .section-body .card .btn {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px !important;
  font-weight: 700 !important;
}
.section-start .section-body .format {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.section-start .section-body .format .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.section-certificate-hero {
  background: linear-gradient(75.74deg, #1C3E89 9.86%, #2184E2 137.42%);
}
.section-certificate-hero .section-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.section-certificate-hero .section-header h2 {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}
.section-certificate-hero .section-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.section-certificate-hero .section-body .free {
    background: linear-gradient(88.63deg, #F5B300 21.27%, #FFD365 43.65%, #EBA100 78.73%);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    border-radius: 100px;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.section-certificate-hero .section-body .btn {
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--white) !important;
}
.section-certificate-hero .section-body .btn.disabled-d {
  background: #9CA3AF !important;
  opacity: 1;
  border: none !important;
}
.section-certificate-hero .section-body .btn.disabled-d svg path {
  fill: var(--white);
}
.section-certificate-hero .section-body .warning {
  font-size: 8px;
  padding: 8px 20px;
  background-color: var(--white);
  color: #D97706;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-certificate-progress .section-body .tasks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section-certificate-progress .section-body .tasks .card {
  padding: 24px;
  border-radius: 16px !important;
  border: 0 !important;
  width: 100%;
}
.section-certificate-progress .section-body .tasks .card.-blue {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 70.71%);
}
.section-certificate-progress .section-body .tasks .card.-blue .count h4 {
  color: var(--blue);
}
.section-certificate-progress .section-body .tasks .card.-blue .progress-bar {
  background-color: #BFDBFE;
}
.section-certificate-progress .section-body .tasks .card.-blue .progress-bar .line {
  background: linear-gradient(90deg, #60A5FA 0%, #2563EB 100%);
}
.section-certificate-progress .section-body .tasks .card.-green {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 70.71%);
}
.section-certificate-progress .section-body .tasks .card.-green .count h4 {
  color: #16A34A;
}
.section-certificate-progress .section-body .tasks .card.-green .progress-bar {
  background-color: #BBF7D0;
}
.section-certificate-progress .section-body .tasks .card.-green .progress-bar .line {
  background: linear-gradient(90deg, #4ADE80 0%, #16A34A 100%);
}
.section-certificate-progress .section-body .tasks .card-header {
  display: flex;
  align-items: center;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
}
.section-certificate-progress .section-body .tasks .card-header .icon svg {
  height: 36px;
  width: 36px;
}
.section-certificate-progress .section-body .tasks .card-header .name {
  display: flex;
  flex-direction: column;
}
.section-certificate-progress .section-body .tasks .card-header .name h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.section-certificate-progress .section-body .tasks .card-header .name p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-certificate-progress .section-body .tasks .card-header .count {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  text-align: right;
}
.section-certificate-progress .section-body .tasks .card-header .count h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.section-certificate-progress .section-body .tasks .card-header .count p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-certificate-progress .section-body .tasks .card-body {
  padding: 0;
  margin-top: 16px;
}
.section-certificate-progress .section-body .tasks .card-body .progress-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-certificate-progress .section-body .tasks .card-body .progress-name p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 8px;
}
.section-certificate-progress .section-body .tasks .card-body .progress-bar {
  width: 100%;
  height: 16px;
  background-color: #E5E7EB;
  border-radius: 1000px;
}
.section-certificate-progress .section-body .tasks .card-body .progress-bar .line {
  width: 40%;
  height: 100%;
  border-radius: 1000px;
  background-color: #5c5c5c;
}
.section-certificate-progress .section-body .tasks .card-body .time {
  font-size: 12px;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.section-certificate-progress .section-body .all {
  margin-top: 24px;
}
.section-certificate-progress .section-body .all .card {
  padding: 24px;
  border-radius: 16px !important;
  border: 0 !important;
  width: 100%;
}
.section-certificate-progress .section-body .all .card.-pink {
  background: linear-gradient(90deg, #FAF5FF 0%, #FDF2F8 100%);
}
.section-certificate-progress .section-body .all .card.-pink .count h4 {
  color: #16A34A;
}
.section-certificate-progress .section-body .all .card.-pink .progress-bar {
  background-color: #E5E7EB;
}
.section-certificate-progress .section-body .all .card.-pink .progress-bar .line {
  background: linear-gradient(90deg, #C084FC 0%, #EC4899 100%);
}
.section-certificate-progress .section-body .all .card-header {
  display: flex;
  align-items: center;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: auto;
}
.section-certificate-progress .section-body .all .card-header .icon svg {
  height: 36px;
  width: 36px;
}
.section-certificate-progress .section-body .all .card-header .name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-certificate-progress .section-body .all .card-header .name h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.section-certificate-progress .section-body .all .card-header .name p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-certificate-progress .section-body .all .card-header .count {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  text-align: right;
}
.section-certificate-progress .section-body .all .card-header .count h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.section-certificate-progress .section-body .all .card-header .count p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-certificate-progress .section-body .all .card-body {
  padding: 0;
  margin-top: 16px;
}
.section-certificate-progress .section-body .all .card-body .progress-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.section-certificate-progress .section-body .all .card-body .progress-name p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 8px;
}
.section-certificate-progress .section-body .all .card-body .progress-bar {
  width: 100%;
  height: 16px;
  background-color: #E5E7EB;
  border-radius: 1000px;
}
.section-certificate-progress .section-body .all .card-body .progress-bar .line {
  width: 40%;
  height: 100%;
  border-radius: 1000px;
  background-color: #5c5c5c;
}
.section-certificate-progress .section-body .all .card-body .time {
  font-size: 12px;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.section-certificate-info {
  background: linear-gradient(73.73deg, #1C3C86 46.77%, #1D6FC8 82.1%);
}
.section-certificate-info .section-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-certificate-info .section-body .card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
}
.section-certificate-info .section-body .card .info p {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-certificate-info .section-body .card .info ul {
  margin: 0;
  padding: 0;
}
.section-certificate-info .section-body .card .info ul li {
  font-size: 14px;
  color: #374151;
}
.section-certificate-advantages .section-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-certificate-advantages .section-body .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-certificate-advantages .section-body .item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.section-certificate-advantages .section-body .item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.section-certificate-advantages .section-body .item p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0px;
}

.section-certificate-cert {
  background: linear-gradient(222.67deg, #2184E2 -49.2%, #1C3E89 70.58%);
}

.section-certificate-cert .container .section-header h2 {
    color: var(--white);
}
.section-certificate-cert .container .section-header h3 {
    color: var(--white);
}


.section-certificate-cert .section-body .card {
  padding: 24px;
  border-radius: 16px;
  border: 4px solid rgba(255, 215, 0, 0.3019607843);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.2509803922);
}
.section-certificate-cert .section-body .card img {
  width: 100%;
  height: auto;
}
.section-certificate-ready .section-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-certificate-ready .section-body .btn {
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--white) !important;
}
.section-certificate-ready .section-body .btn.disabled-d {
  background: #9CA3AF !important;
  opacity: 1;
  border: none !important;
}
.section-certificate-ready .section-body .btn.disabled-d svg path {
  fill: var(--white);
}
.section-certificate-paid .section-body .btn.disabled-d {
  background: #9CA3AF !important;
  opacity: 1;
  border: none !important;
}
.section-certificate-ready .section-body .warning {
  font-size: 8px;
  padding: 8px 20px;
  background: #FFFBEB;
  color: #D97706;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.section-certificate-paid {
  background: linear-gradient(224.36deg, #16508E 18.82%, #162F6B 75.28%);
}
.section-certificate-paid .section-body .card {
  padding: 24px;
  border-radius: 16px;
}
.section-certificate-paid .section-body .card h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--blue);
}
.section-certificate-paid .section-body .card h3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #374151;
}
.section-certificate-paid .section-body .card .pay-sum {
  background: linear-gradient(90deg, rgba(245, 179, 0, 0.1) 0%, rgba(245, 179, 0, 0.05) 100%);
  border-left: 4px solid #F5B300;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0;
}
.section-certificate-paid .section-body .card .pay-sum svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
}
.section-certificate-paid .section-body .card .pay-sum .info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.section-certificate-paid .section-body .card .pay-sum .info p {
  font-size: 12px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 0;
}
.section-certificate-paid .section-body .card .pay-sum.-blue {
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.5) 0%, #FFFFFF 100%);
  border: 1px solid #DBEAFE;
  align-items: flex-start;
}
.section-certificate-reviews .section-body .reviews {
  display: flex;
  overflow-x: auto;
  width: 100%;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  gap: 24px;
}
.section-certificate-reviews .section-body .reviews::-webkit-scrollbar {
  display: none;
}
.section-certificate-reviews .section-body .card {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
  padding: 24px;
  flex: 0 0 auto;
  width: 300px;
}
.section-certificate-reviews .section-body .card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-certificate-reviews .section-body .card .author img {
  width: 48px;
  height: 48px;
    flex: 0 0 auto;
}
.section-certificate-reviews .section-body .card .author .name h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.section-certificate-reviews .section-body .card .author .name p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 4px;
}
.section-certificate-reviews .section-body .card .description {
  font-size: 14px;
  font-weight: 400;
  color: #374151;
}
.section-competition-hero {
  background: linear-gradient(136.14deg, #1E85E3 -15.51%, #1B3B86 77.63%);
}
.section-competition-hero .section-header h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 135%;
  text-align: center;
}
.section-competition-hero .section-header h1 span {
  color: var(--yellow);
}
.section-competition-hero .section-header h2 {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
  line-height: 135%;
  text-align: center;
}
.section-competition-hero .section-header .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.section-competition-hero .section-body img {
  width: 100%;
  height: auto;
}
.section-competition-rules {
  background-color: #F5F7F8;
}
.section-competition-rules .rules {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-competition-rules .rules .card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
}
.section-competition-rules .rules .card .number {
  background: linear-gradient(180deg, #2184E2 0%, #1C3E89 100%);
  padding: 16px;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.section-competition-rules .rules .card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-competition-rules .rules .card p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0px;
}
.section-competition-rules .rules .card span {
  background-color: #FEF9C3;
  padding: 10px;
  color: #854D0E;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-top: 12px;
}
.section-competition-conditions .section-body .card {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section-competition-conditions .section-body .card .info h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}
.section-competition-conditions .section-body .card .info .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section-competition-conditions .section-body .card .info .list .item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--black);
}
.section-competition-conditions .section-body .card .info .list .item svg {
  flex: 0 0 auto;
}
.section-competition-conditions .section-body .card .info .list .item p {
  margin-bottom: 0;
}
.section-competition-conditions .section-body .card img {
  width: 100%;
  height: auto;
}
.section-competition-preparation .section-body iframe {
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.2509803922);
  width: 100%;
  height: 220px;
  border-radius: 24px;
}
.section-competition-preparation .section-body .preparation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.section-competition-preparation .section-body .preparation .card {
  background: #F5F7F8;
  padding: 20px;
  border-radius: 12px;
  border: 0;
  width: 100%;
}
.section-competition-preparation .section-body .preparation .card svg {
  margin-bottom: 12px;
}
.section-competition-preparation .section-body .preparation .card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-competition-preparation .section-body .preparation .card p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-competition-ready {
  background: linear-gradient(45deg, #1C3E89 50%, #2184E2 120.71%);
}
.section-competition-ready .section-body .card {
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-competition-ready .section-body .card > svg {
  margin-bottom: 8px;
}
.section-competition-ready .section-body .card h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
}
.section-competition-ready .section-body .card h3 {
  font-size: 16px;
  font-weight: 400;
  color: #4B5563;
  text-align: center;
  margin-bottom: 16px;
}
.section-competition-ready .section-body .card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 12px;
}
.section-competition-ready .section-body .card span {
  font-size: 12px;
  color: #6B7280;
  text-align: center;
}
.section-competition-schedule .section-body .schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section-competition-schedule .section-body .schedule .card {
  border-radius: 0px 8px 8px 0px;
  padding: 16px 20px;
  width: 100%;
  border: none;
}
.section-competition-schedule .section-body .schedule .card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.section-competition-schedule .section-body .schedule .card p {
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}
.section-competition-schedule .section-body .schedule .card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.section-competition-schedule .section-body .schedule .card.-blue {
  background-color: #EFF6FF;
  border-left: 4px solid #1E85E3;
}
.section-competition-schedule .section-body .schedule .card.-blue span {
  color: #1E85E3;
}
.section-competition-schedule .section-body .schedule .card.-yellow {
  background-color: #FEFCE8;
  border-left: 4px solid #F5B300;
}
.section-competition-schedule .section-body .schedule .card.-yellow span {
  color: #F5B300;
}
.section-competition-schedule .section-body .schedule .card.-green {
  background-color: #F0FDF4;
  border-left: 4px solid #22C55E;
}
.section-competition-schedule .section-body .schedule .card.-green span {
  color: #22C55E;
}
.section-competition-schedule .section-body .schedule .card.-pink {
  background-color: #FAF5FF;
  border-left: 4px solid #A855F7;
}
.section-competition-schedule .section-body .schedule .card.-pink span {
  color: #A855F7;
}
.section-competition-stat {
  background-color: #F5F7F8;
}
.section-competition-stat .section-body .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-competition-stat .section-body .stat .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  border: none;
  padding: 20px;
  width: 100%;
}
.section-competition-stat .section-body .stat .card svg {
  margin-bottom: 16px;
}
.section-competition-stat .section-body .stat .card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.section-competition-stat .section-body .stat .card p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0px;
}
.section-competition-faq {
  background: #F5F7F8;
}
.section-competition-faq .section-body .faq-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-competition-faq .section-body .faq-cards .item {
  border: none;
  background-color: var(--white);
  border-radius: 4px;
}
.section-competition-faq .section-body .faq-cards .item .accordion-button {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border: 0;
}
.section-competition-faq .section-body .faq-cards .item .accordion-button:after {
  background-image: url("../img/icons/ic-arrow-down-gray.svg");
}
.section-competition-faq .section-body .faq-cards .item .accordion-button:not(.collapsed) {
  color: var(--black);
  background-color: var(--white);
  box-shadow: none;
}
.section-competition-faq .section-body .faq-cards .item .accordion-button:focus {
  box-shadow: none;
}
.section-competition-faq .section-body .faq-cards .item .accordion-body {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  padding-top: 0;
}
.section-register .section-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.section-register .section-header h4 {
  font-size: 16px;
  font-weight: 400;
  color: #4B5563;
}
.section-register .section-header .line {
  display: flex;
  gap: 8px;
}
.section-register .section-header .line .item {
  width: 32px;
  height: 8px;
  border-radius: 100px;
  background-color: #E5E7EB;
}
.section-register .section-header .line .item.active {
  background-color: var(--blue);
}
.section-register .section-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-register .section-body > svg {
  margin-bottom: 32px;
}
.section-register .section-body h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 12px;
}
.section-register .section-body h2 {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  text-align: center;
  margin-bottom: 24px;
}
.section-register .section-body label {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-align: left;
  width: 100%;
}
.section-register .section-body input {
  border: 1px solid #E5E7EB;
  padding: 16px;
  border-radius: 12px;
  color: var(--black);
  font-size: 16px;
  outline: none;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 24px;
}
.section-register .section-body button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.section-register .section-body .btn-border {
  border: 1px solid var(--blue) !important;
  color: var(--blue) !important;
}
.section-register .section-body .warning {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
  margin-top: 32px;
  width: 100%;
}
.section-register .section-body .warning .info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-register .section-body .warning .info p {
  font-size: 12px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 0;
}
.section-register-last-form {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 70.71%);
}
.section-register-last-form .section-body .card {
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}
.section-register-last-form .section-body .card .head {
  padding: 20px;
  background: linear-gradient(90deg, #1C3E88 0%, #2184E2 100%);
}
.section-register-last-form .section-body .card .head h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.section-register-last-form .section-body .card .head p {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
}
.section-register-last-form .section-body .card .info form {
  padding: 20px;
}
.section-register-last-form .section-body .card .info form .inputs {
  display: grid;
  grid-template-columns: 1fr;
}
.section-register-last-form .section-body .card .info form .inputs .item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}
.section-register-last-form .section-body .card .info form .inputs .item + .item {
  margin-top: 32px;
}
.section-register-last-form .section-body .card .info form .inputs .item .form-input {
  display: flex;
  flex-direction: column;
}
.section-register-last-form .section-body .card .info form .inputs .item .form-input + .form-input {
  margin-top: 16px;
}
.section-register-last-form .section-body .card .info form .inputs .item .form-input label {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}
.section-register-last-form .section-body .card .info form .inputs .item .form-input input, .section-register-last-form .section-body .card .info form .inputs .item .form-input select {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  border: 1px solid #CBD5E1;
  padding: 16px;
  border-radius: 8px;
  outline: none;
}
.section-register-last-form .section-body .card .info form .inputs .item .form-input .warning {
  margin-top: 4px;
  font-size: 12px;
}
.section-register-last-form .section-body .card .info form .inputs .item .form-input .warning.-yellow {
  color: #D97706;
}
.section-register-last-form .section-body .card .info form .agree {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}
.section-register-last-form .section-body .card .info form .agree label {
  font-size: 14px;
  color: #64748B;
}
.section-register-last-form .section-body .card .info form .buttons {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  margin-top: 24px;
}
.section-register-last-form .section-body .card .info form .buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.section-register-last-form .section-body .card .info form .warn {
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 24px;
  color: #64748B;
}
.section-register-last-question {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 70.71%);
}
.section-register-last-question .section-body .card {
  background: #E8F3FF;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #BFDBFE;
}
.section-register-last-question .section-body .card .head {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}
.section-register-last-question .section-body .card .questions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.section-register-last-question .section-body .card .questions .item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
  color: var(--blue);
}
.section-register-last-question .section-body .card .questions .item p {
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0px;
}
.section-register-last-service .section-body .card {
  background: linear-gradient(92.93deg, #2184E2 0.4%, #1C3E89 99.31%);
  padding: 24px;
  border-radius: 16px;
}
.section-register-last-service .section-body .card h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}
.section-register-last-service .section-body .card .service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.section-register-last-service .section-body .card .service .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.section-register-last-service .section-body .card .service .item svg {
  margin-bottom: 16px;
}
.section-register-last-service .section-body .card .service .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-decoration: none;
}
.section-register-last-service .section-body .card .service .item p {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
  text-decoration: none;
}
.section-register-last-warning {
  padding-top: 0;
}
.section-register-last-warning .section-body .card {
  background: #E8F3FF;
  border: 1px solid #BFDBFE;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
}
.section-register-last-warning .section-body .card .info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.section-register-last-warning .section-body .card .info p {
  font-size: 12px;
  font-weight: 400;
  color: #334155;
  margin-bottom: 0px;
}
.section-kaspi .section-header {
  margin-bottom: 16px;
}
.section-kaspi .section-header img {
  width: 116px;
  height: 116px;
  margin: auto;
}
.section-kaspi .section-header h2 {
  text-align: center;
}
.section-kaspi .section-header h3 {
  font-size: 14px;
  text-align: center;
}
.section-kaspi .section-body .kaspi-qr {
  padding: 12px;
  border-radius: 12px;
  border: 2.5px solid #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.section-kaspi .section-body .kaspi-qr img {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-kaspi .section-body > p {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.section-kaspi .section-body .card {
  padding: 16px;
  background-color: #F9FAFB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.section-kaspi .section-body .card .info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 10px;
}
.section-kaspi .section-body .card h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.section-kaspi .section-body .card a {
  font-size: 14px;
  font-weight: 500;
  color: #20AFA3;
  margin-bottom: 0px;
  text-decoration: none;
}
.section-kaspi .section-body .btn-main {
  background-color: #ED1C24 !important;
  border: 0;
  width: 100%;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.section-kaspi .section-body span {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #6B7280;
  gap: 8px;
  text-align: center;
  justify-content: center;
}
.section-kaspi-pay .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-kaspi-pay .section-header .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-kaspi-pay .section-body .card {
  border: 0;
}
.section-kaspi-pay .section-body .card.-green {
  background: #F0FDF4;
  padding: 20px;
  border-radius: 12px;
}
.section-kaspi-pay .section-body .card .head {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.section-kaspi-pay .section-body .card .head svg {
  width: 48px;
  height: 48px;
}
.section-kaspi-pay .section-body .card .status {
  padding: 16px;
  border-radius: 8px;
  background-color: var(--white);
  margin-top: 24px;
  border: 1px solid #BBF7D0;
}
.section-kaspi-pay .section-body .card .status h4 {
  font-size: 14px;
  font-weight: 600;
  color: #16A34A;
  text-align: center;
}
.section-kaspi-pay .section-body .card .status h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.section-kaspi-pay .section-body .card .status .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-kaspi-pay .section-body .card .status .item p {
  font-size: 12px;
  color: #4B5563;
  margin-bottom: 0;
}
.section-kaspi-pay .section-body .card .status .item p:nth-child(2) {
  color: var(--black);
}
.section-kaspi-pay .section-body .card .status .item p span {
  color: #16A34A;
}
.section-kaspi-pay .section-body .info {
  padding: 24px 0;
}
.section-kaspi-pay .section-body .info .head {
  margin-bottom: 16px;
}
.section-kaspi-pay .section-body .info .head h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-kaspi-pay .section-body .info .head p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0px;
}
.section-kaspi-pay .section-body .info .warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  padding: 20px;
}
.section-kaspi-pay .section-body .info .warning .content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-kaspi-pay .section-body .info .warning .content p {
  font-size: 10px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0px;
}
.section-kaspi-pay .section-body .info form {
  width: 100%;
  margin-top: 24px;
}
.section-kaspi-pay .section-body .info form .items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.section-kaspi-pay .section-body .info form .form-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.section-kaspi-pay .section-body .info form .form-item label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.section-kaspi-pay .section-body .info form .form-item input {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #D1D5DB;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  width: 100%;
}
.section-kaspi-pay .section-body .info form .form-item span {
  font-size: 12px;
  color: #6B7280;
  margin-top: 8px;
}
.section-kaspi-pay .section-body .info form .btn {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}
.section-congrats .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-congrats .section-header svg {
  width: 75px;
  height: 75px;
  margin-bottom: 16px;
}
.section-congrats .section-header h3 {
  font-size: 14px;
  font-weight: 500;
  color: #16A34A;
}
.section-congrats .section-header h4 {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  text-align: center;
}
.section-congrats .section-body .card {
  padding: 20px;
}
.section-congrats .section-body .card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
}
.section-congrats .section-body .card p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  text-align: center;
  margin-bottom: 16px;
}
.section-congrats .section-body .card .cert {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 70.71%);
  padding: 16px;
  border-radius: 16px;
}
.section-congrats .section-body .card .cert img {
  width: 100%;
  height: auto;
}
.section-congrats .section-body .card .btn {
  font-size: 12px !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-congrats .section-body .card span {
  font-size: 10px;
  font-weight: 400;
  color: #4B5563;
  text-align: center;
  margin-top: 8px;
}
.section-congrats .section-body .achievements {
  margin-top: 24px;
}
.section-congrats .section-body .achievements h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  text-align: center;
}
.section-congrats .section-body .achievements .cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.section-congrats .section-body .achievements .item {
  padding: 16px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.section-congrats .section-body .achievements .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-congrats .section-body .achievements .item p {
  font-size: 12px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 0px;
}
.section-congrats .section-body .achievements .item.-green {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.section-congrats .section-body .achievements .item.-green h4 {
  color: #16A34A;
}
.section-congrats-advantages {
  background: linear-gradient(228.85deg, #2184E2 7.77%, #1C3E89 63.99%);
}
.section-congrats-advantages .section-header h2, .section-congrats-advantages .section-header h3 {
  color: var(--white);
}
.section-congrats-advantages .section-body .advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.section-congrats-advantages .section-body .advantages .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-congrats-advantages .section-body .advantages .item svg {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
}
.section-congrats-advantages .section-body .advantages .item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
}
.section-congrats-advantages .section-body .advantages .item p {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
  text-align: center;
}
.section-congrats-share .section-body .share {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-congrats-share .section-body .share .item {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
}
.section-congrats-share .section-body .share .item.instagram {
  background: linear-gradient(90deg, #EC4899 0%, #9333EA 100%);
}
.section-congrats-share .section-body .share .item.telegram {
  background: linear-gradient(90deg, #60A5FA 0%, #3B82F6 100%);
}
.section-congrats-share .section-body .share .item.whatsapp {
  background: linear-gradient(90deg, #22C55E 0%, #16A34A 100%);
}
.section-congrats-steps .section-body .steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.section-congrats-steps .section-body .steps .card {
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
}
.section-congrats-steps .section-body .steps .card .number {
  border-radius: 50%;
  background: linear-gradient(135deg, #2184E2 0%, #1C3E89 70.71%);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.section-congrats-steps .section-body .steps .card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.section-congrats-steps .section-body .steps .card p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0px;
}
.section-congrats-support {
  padding-top: 0;
}
.section-congrats-support .section-body .card {
  background: rgba(32, 113, 201, 0.0509803922);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-congrats-support .section-body .card > svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.section-congrats-support .section-body .card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-congrats-support .section-body .card p {
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 16px;
}
.section-congrats-support .section-body .card .btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #21C35D 0%, #16A34A 100%) !important;
}
.section-send-hero {
  background: linear-gradient(54.43deg, #1C3E89 47.57%, #2184E2 102.95%);
}
.section-send-hero .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-send-hero .section-header svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.section-send-hero .section-header h1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}
.section-send-hero .section-header h3 {
  font-size: 12px;
  font-weight: 400;
  color: #F3F4F6;
  text-align: center;
}
.section-send-steps .section-body .steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-send-steps .section-body .steps .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.section-send-steps .section-body .steps .item .number {
  background: linear-gradient(180deg, #2184E2 0%, #1C3E89 100%);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.section-send-steps .section-body .steps .item.disabled {
  color: #6B7280;
}
.section-send-steps .section-body .steps .item.disabled .number {
  background: #D1D5DB;
  color: #6B7280;
}
.section-send-steps .section-body .steps .item.green {
  color: #16A34A;
}
.section-send-steps .section-body .steps .item.green .number {
  background: #D1D5DB;
  color: #6B7280;
}
.section-send-member {
  padding-top: 0;
}
.section-send-member .section-body form .card {
  padding: 24px;
  border-radius: 16px;
}
.section-send-member .section-body form .card + .card {
  margin-top: 24px;
}
.section-send-member .section-body form .card .head {
  margin-bottom: 16px;
}
.section-send-member .section-body form .card .head h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.section-send-member .section-body form .card .head p {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 0;
}
.section-send-member .section-body form .card .info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.section-send-member .section-body form .card .info .item {
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.section-send-member .section-body form .card .info .item label {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}
.section-send-member .section-body form .card .info .item input {
  font-size: 14px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 8px;
  border: 1px solid #E5E7EB;
}
.section-send-member .section-body form .card .info .item span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #6B7280;
}
.section-send-member .section-body form .card .info .item span.green {
  color: #16A34A;
}
.section-send-member .section-body form .card .warning {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}
.section-send-member .section-body form .card .warning svg {
  flex: 0 0 auto;
}
.section-send-member .section-body form .card .warning .content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.section-send-member .section-body form .card .warning .content p {
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0px;
}
.section-send-member .section-body form .card-member {
  background: #F5F7F8;
  border: 0;
}
.section-send-member .section-body form .card-send {
  border: 2px solid #E5E7EB;
  background: var(--white);
}
.section-send-member .section-body form .card-send .info .file .upload-box {
  border: 2px dashed #aaa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  font-family: sans-serif;
  transition: 0.3s;
}
.section-send-member .section-body form .card-send .info .file .upload-box svg {
  width: 100px;
    height: 100px;
  margin-bottom: 16px;
}
.section-send-member .section-body form .card-send .info .file .upload-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 16px;
}
.section-send-member .section-body form .card-send .info .file .upload-box p {
  font-size: 12px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 16px;
}
.section-send-member .section-body form .card-send .info .file .upload-box .formats {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.section-send-member .section-body form .card-send .info .file .upload-box .formats .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
}
.section-send-member .section-body form .card-send .info .file .upload-box .formats .item.pdf {
  background-color: #FEE2E2;
  color: #B91C1C;
}
.section-send-member .section-body form .card-send .info .file .upload-box .formats .item.pptx {
  background-color: #FFEDD5;
  color: #C2410C;
}
.section-send-member .section-body form .card-send .info .file .upload-box .formats .item.doc {
  background-color: #DBEAFE;
  color: #1D4ED8;
}
.section-send-member .section-body form .card-send .info .file .upload-box span {
  font-size: 10px;
  margin-top: 24px;
  color: #9CA3AF;
}
.section-send-member .section-body form .card-send .info .file .upload-box:hover {
  border-color: #3b82f6;
  background: #f0f8ff;
}
.section-send-member .section-body form .card-send .info .file .file-name {
    font-size: 14px;
  margin-top: 15px;
  color: #333;
  font-weight: 500;
}
.section-send-member .section-body form .card-send .info .file input[type=file] {
  display: none;
}
.section-send-member .section-body form .card-send .info .warnings {
  display: flex;
    align-items: flex-start;
  flex-direction: column;
  gap: 12px;

}
.section-send-member .section-body form .card-send .info .warnings .item {
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
    width: 100%;
}
.section-send-member .section-body form .card-send .info .warnings .item.yellow {
  background: #FEFCE8;
  border: 1px solid #FEF08A;
}
.section-send-member .section-body form .card-send .info .warnings .item.yellow .content h4, .section-send-member .section-body form .card-send .info .warnings .item.yellow .content p, .section-send-member .section-body form .card-send .info .warnings .item.yellow .content li {
  color: #713F12;
}
.section-send-member .section-body form .card-send .info .warnings .item.green {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.section-send-member .section-body form .card-send .info .warnings .item.green .content h4, .section-send-member .section-body form .card-send .info .warnings .item.green .content p, .section-send-member .section-body form .card-send .info .warnings .item.green .content li {
  color: #14532D;
}
.section-send-member .section-body form .card-send .info .warnings .item.blue {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
}
.section-send-member .section-body form .card-send .info .warnings .item.blue .content h4, .section-send-member .section-body form .card-send .info .warnings .item.blue .content p, .section-send-member .section-body form .card-send .info .warnings .item.blue .content li {
  color: #1E3A8A;
}
.section-send-member .section-body form .card-send .info .warnings .item svg {
  flex: 0 0 auto;
}
.section-send-member .section-body form .card-send .info .warnings .item .content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.section-send-member .section-body form .card-send .info .warnings .item .content ul {
  list-style: disc !important;
  margin: 0;
  padding: 0;
}
.section-send-member .section-body form .card-send .info .warnings .item .content ul li {
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
}
.section-send-member .section-body form .card-info {
  background: #F5F7F8;
  border: 1px solid #E5E7EB;
}
.section-send-member .section-body form .card-info .info textarea {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  padding: 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  resize: none;
  height: 130px;
  border-radius: 16px;
  outline: none;
}
.section-send-member .section-body form .card-info .info span {
  font-size: 12px;
  font-weight: 400;
  color: #6B7280;
}
.section-send-member .section-body form .card-agree {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.section-send-member .section-body form .card-agree label {
  font-size: 14px;
}
.section-send-member .section-body form .card-agree label a {
  text-decoration: none;
}
.section-send-member .section-body form .buttons {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}
.section-send-member .section-body form .buttons .btn {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
}

.footer {
  background-color: #1E1E1E;
  padding: 20px 0;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
.footer-top .logo {
  color: var(--white);
}
.footer-top .logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-top .logo-block .text {
  display: flex;
  color: #9CA3AF;
  text-align: center;
  margin: 1rem 0;
}
.footer-top .logo-block .social {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}
.footer-top .logo-block .social a {
  width: 41.5px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #1F2937;
}
.footer-bottom {
  margin-top: 16px;
}
.footer nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer nav ul li a {
  color: var(--white);
  text-decoration: none;
}
.footer nav ul li a svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.footer nav ul li .title {
  color: var(--white);
}
.footer nav ul li .text {
  color: #9CA3AF;
}
.footer .tel {
  color: var(--white);
  font-weight: 400;
}
.footer .tel:after {
  background-image: url("../img/icons/ic-phone-white.svg");
}
.footer .copyright {
  color: #9CA3AF;
  margin-top: 36px;
  margin-bottom: 0;
  text-align: center;
}
.footer .payments {
  justify-content: center;
}

@media (min-width: 768px) {
  .header {
    padding: 20px 0;
  }
}
@media (min-width: 991px) {
  .header .container nav {
    background-color: transparent;
    position: relative;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    left: 0;
  }
  .header .container nav > .logo {
    display: none;
  }
  .header .container nav ul {
    flex-direction: row;
    gap: 24px;
  }
  .header .container nav ul li a {
    font-weight: 400;
  }
  .header .container nav .tel {
    font-weight: 400;
  }
  .header .container nav .menu-right {
    flex-direction: row;
    align-items: center;
    margin-left: 48px;
  }
  .header .dropdown {
    margin-left: 24px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  .logo {
      display: flex;
    font-size: 24px;
  }
  .logo img {
    width: 144px;
    height: 48px;
  }
  .btn-menu, .btn-close-menu {
    display: none !important;
  }
  .section-header {
    gap: 16px;
  }
  .section-header h2 {
    font-size: 40px;
  }
  .section-header h3 {
    font-size: 16px;
  }
  .section-header h2, .section-header h3 {
    text-align: center;
  }
  .section-hero {
    background: linear-gradient(45deg, #1B3B86 50%, #1E85E3 120.71%);
  }
  .section-hero .section-body {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  .section-hero .section-body .card {
    background: rgba(255, 255, 255, 0.1019607843);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    width: 70%;
    align-items: flex-start;
    text-align: left;
  }
  .section-hero .section-body .card .category {
    font-size: 14px;
  }
  .section-hero .section-body .card .category svg {
    width: 18px;
    height: 18px;
  }

    .section-hero .section-body .card h1  {
        font-size: 48px;
    }

  .section-hero .section-body .card .course-title  {
    font-size: 60px;
  }

  .section-hero .section-body .card h1 span {
    color: var(--yellow);
  }
  .section-hero .section-body .card h2 {
    font-size: 20px;
  }
  .section-hero .section-body .card h1, .section-hero .section-body .card h2 {
    text-align: left;
  }
  .section-hero .section-body .card .links {
    flex-direction: row;
  }
  .section-hero .section-body .card .links .btn {
    width: 250px;
    font-size: 18px !important;
    font-weight: 700 !important;
  }
  .section-hero .section-body .organizators p {
    display: none;
  }
  .section-hero .section-body .organizators ul {
    gap: 24px;
    flex-direction: column;
  }
  .section-hero .section-body .organizators ul li {
    height: 95px;
  }
  .section-authors .section-header h3 {
    display: block;
  }
  .section-authors .section-body {
    flex-direction: row;
    gap: 32px;
  }
  .section-authors .section-body .card {
    flex-direction: column;
    align-items: center;
    gap: 38px;
    width: 100%;
  }
  .section-authors .section-body .card img {
    width: 240px;
    height: 240px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 4px solid #F5B300;
  }
  .section-authors .section-body .card .info {
    text-align: center;
  }
  .section-authors .section-body .card .info .name {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .section-authors .section-body .card .info .post {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .section-authors .section-body .card .info .subject {
    font-size: 14px;
  }
  .section-information .section-body {
    flex-direction: row;
    gap: 32px;
  }
  .section-information .section-body .card {
    width: 33.33%;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1019607843);
    gap: 24px;
  }
  .section-information .section-body .card svg {
    width: 64px;
    height: 64px;
  }
  .section-information .section-body .card .info h4 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
  }
  .section-information .section-body .card .info p {
    font-size: 16px;
    color: var(--white);
  }
  .section-information .section-body .card .info ul li {
    font-size: 14px;
    color: var(--white);
  }
  .section-advantages .section-body {
    flex-direction: row;
    gap: 32px;
  }
  .section-advantages .section-body .card {
    width: 25%;
    padding: 32px;
    background: #F9FAFB;
    border-radius: 24px;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .section-advantages .section-body .card svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-advantages .section-body .card .info h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 14px;
  }
  .section-advantages .section-body .card .info p {
    font-size: 16px;
  }
  .section-program .section-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .section-program .section-body .card {
    width: 100%;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 24px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
  }
  .section-program .section-body .card:nth-child(2n+1) {
    border-left: 4px solid #1E85E3;
  }
  .section-program .section-body .card:nth-child(2n) {
    border-left: 4px solid #F5B300;
  }
  .section-program .section-body .card .number {
    width: 56px;
    height: 56px;
    background: linear-gradient(45deg, #1B3B86 50%, #1E85E3 120.71%);
    font-size: 20px;
  }
  .section-program .section-body .card p {
    font-size: 18px;
    font-weight: 400;
    color: #4B5563;
  }
  .section-certificate-rules {
    padding: 100px 0;
  }
  .section-certificate-rules .section-body {
    flex-direction: row-reverse;
    align-items: center;
    gap: 120px;
  }
  .section-certificate-rules .section-body .info {
    width: 60%;
  }
  .section-certificate-rules .section-body .info h2 {
    font-size: 24px;
  }
  .section-certificate-rules .section-body .info ul li {
    font-size: 16px;
  }
  .section-certificate-rules .section-body .info .btn {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
  }
  .section-certificate-rules .section-body .card {
    width: 40%;
  }
  .section-stages .section-body > h3 {
    display: none;
  }
  .section-stages .section-body .stages {
    flex-direction: row;
    gap: 32px;
  }
  .section-stages .section-body .stages .card {
    width: 33%;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    border-top-width: 4px !important;
  }
  .section-stages .section-body .stages .card .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
  }
  .section-stages .section-body .stages .card .icon svg {
    width: 20px;
    height: 20px;
  }
  .section-stages .section-body .stages .card h4 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .section-stages .section-body .stages .card p {
    font-size: 18px;
  }
  .section-stages .section-body > .btn {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    margin-top: 32px;
  }
  .section-stages .section-body .images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .section-stages .section-body .images img {
    width: 100%;
    height: 256px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
  }
  .section-start {
    background: linear-gradient(45deg, #1B3B86 50%, #1E85E3 120.71%);
  }
  .section-start .section-body .card {
    width: 80%;
    margin: auto;
    flex-direction: row;
    gap: 100px;
    justify-content: space-between;
  }
  .section-start .section-body .card .info h4 {
    font-size: 24px;
  }
  .section-start .section-body .card .info p {
    font-size: 16px;
  }
  .section-start .section-body .card .btn {
    width: 300px;
  }
  .section-start .section-body .format {
    flex-direction: row;
    gap: 32px;
  }
  .section-certificate-hero .section-header h1 {
    font-size: 60px;
  }
  .section-certificate-hero .section-header h2 {
    font-size: 24px;
  }
  .section-certificate-hero .section-body .free {
    font-size: 18px;
  }
  .section-certificate-hero .section-body .btn {
    font-size: 24px !important;
  }
  .section-certificate-hero .section-body .warning {
    font-size: 14px;
  }
  .section-certificate-progress .section-body .tasks {
    flex-direction: row;
  }
  .section-certificate-info .section-body {
    flex-direction: row;
  }
  .section-certificate-info .section-body .card {
    width: 100%;
  }
  .section-certificate-advantages .section-body {
    flex-direction: row;
  }
  .section-certificate-advantages .section-body .item {
    width: 100%;
  }
  .section-certificate-cert .section-body .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .section-certificate-cert .section-body .card img {
    width: 100%;
  }
  .section-certificate-paid .section-body .card {
    width: 70%;
    margin: auto;
  }
  .section-certificate-paid .section-body .card h2 {
    font-size: 24px;
  }
  .section-certificate-paid .section-body .card h3 {
    font-size: 16px;
  }
  .section-certificate-paid .section-body .card .pay-sum {
    font-size: 16px;
  }
  .section-certificate-paid .section-body .card .pay-sum .info h4 {
    font-size: 16px;
  }
  .section-certificate-paid .section-body .card .btn {
    margin-top: 24px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .section-competition-hero .container {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .section-competition-hero .section-header h1 {
    font-size: 48px;
    line-height: 120%;
    text-align: left;
  }
  .section-competition-hero .section-header h2 {
    font-size: 20px;
    text-align: left;
  }
  .section-competition-hero .section-header, .section-competition-hero .section-body {
    width: 50%;
  }
  .section-competition-rules .section-body .rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .section-competition-rules .section-body .rules .card {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .section-competition-rules .section-body .rules .card .number {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }
  .section-competition-rules .section-body .rules .card h4 {
    font-size: 24px;
  }
  .section-competition-rules .section-body .rules .card p {
    font-size: 16px;
  }
  .section-competition-rules .section-body .rules .card span {
    width: 100%;
  }
  .section-competition-conditions .section-body .card {
    flex-direction: row;
  }
  .section-competition-conditions .section-body .card .info {
    width: 60%;
  }
  .section-competition-conditions .section-body .card .info h2 {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .section-competition-conditions .section-body .card .info .list {
    align-items: flex-start;
  }
  .section-competition-conditions .section-body .card .info .list .item p {
    font-size: 16px;
  }
  .section-competition-conditions .section-body .card > img {
    width: 40%;
  }
  .section-competition-preparation .section-body {
    width: 60%;
    margin: auto;
  }
  .section-competition-preparation .section-body iframe {
    height: 468px;
  }
  .section-competition-preparation .section-body .preparation {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    gap: 24px;
  }
  .section-competition-preparation .section-body .preparation .card {
    align-items: center;
    text-align: center;
  }
  .section-competition-ready .section-body {
    width: 60%;
    margin: auto;
  }
  .section-competition-schedule .section-body .schedule {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    gap: 24px;
  }
  .section-competition-schedule .section-body .schedule .card h4 {
    font-size: 20px;
  }
  .section-competition-schedule .section-body .schedule .card p {
    font-size: 16px;
  }
  .section-competition-schedule .section-body .schedule .card span {
    font-size: 20px;
  }
  .section-competition-stat .section-body .stat {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
  .section-competition-stat .section-body .stat .card h4 {
    font-size: 30px;
  }
  .section-competition-stat .section-body .stat .card p {
    font-size: 16px;
  }
  .section-competition-faq .section-body {
    width: 60%;
    margin: auto;
  }
  .section-competition-faq .section-body .faq-cards {
    gap: 24px;
  }
  .section-competition-faq .section-body .faq-cards .item {
    border-radius: 16px;
  }
  .section-competition-faq .section-body .faq-cards .item .accordion-button {
    padding: 32px;
    font-size: 20px;
  }
  .section-competition-faq .section-body .faq-cards .item .accordion-body {
    padding: 32px;
    padding-top: 0;
    font-size: 16px;
  }
  .section-register .section-header, .section-register .section-body {
    width: 60%;
    margin: auto;
  }
  .section-register-last-form .section-body .card .info form .inputs {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .section-register-last-form .section-body .card .info form .inputs .item + .item {
    margin-top: 0;
  }
  .section-register-last-form .section-body .card .info form .buttons {
    flex-direction: row;
    justify-content: space-between;
  }
  .section-register-last-question .section-body .card .questions {
    grid-template-columns: 1fr 1fr;
  }
  .section-register-last-service .section-body .card .service {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .section-register-last-warning .section-body .card {
    flex-direction: row;
  }
  .section-kaspi .section-header, .section-kaspi .section-body {
    width: 50%;
    margin: 16px auto;
  }
  .section-kaspi .section-body .kaspi-qr img {
    width: 200px;
    height: 200px;
  }
  .section-kaspi-pay .section-header, .section-kaspi-pay .section-body {
    width: 50%;
    margin: auto;
  }
  .section-kaspi-pay .section-header .info h2 {
    margin-bottom: 16px;
  }
  .section-kaspi-pay .section-body .card {
    margin-top: 16px;
  }
  .section-kaspi-pay .section-body .info form {
    grid-template-columns: 1fr 1fr;
  }
  .section-congrats .section-body .card {
    width: 60%;
    margin: auto;
    border-radius: 16px;
  }
  .section-congrats .section-body .card h4 {
    font-size: 36px;
  }
  .section-congrats .section-body .achievements {
    margin-top: 48px;
  }
  .section-congrats .section-body .achievements .cards {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .section-congrats .section-body .achievements h2 {
    font-size: 36px;
  }
  .section-congrats .section-body .achievements .item h4 {
    font-size: 32px;
  }
  .section-congrats .section-body .achievements .item p {
    font-size: 16px;
  }
  .section-congrats-advantages .section-body .advantages {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .section-congrats-share .section-body .share {
    flex-direction: row;
    justify-content: center;
  }
  .section-congrats-share .section-body .share .item {
    width: 200px;
  }
  .section-congrats-steps .section-body .steps {
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .section-congrats-support .section-body .card {
    width: 60%;
    margin: auto;
  }
  .section-send-hero .section-header svg {
    width: 80px;
    height: 80px;
  }
  .section-send-hero .section-header h1 {
    font-size: 32px;
  }
  .section-send-hero .section-header h3 {
    font-size: 16px;
  }
  .section-send-steps .section-body .steps {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
  .section-send-member .section-body form .card .head h4 {
    font-size: 24px;
  }
  .section-send-member .section-body form .card .head p {
    font-size: 16px;
  }
  .section-send-member .section-body form .card .info {
    grid-template-columns: 1fr 1fr;
  }
  .section-send-member .section-body form .card-info .info {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 40px 0;
  }
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer-top .logo-block {
    align-items: flex-start;
    width: 600px;
  }
  .footer-top .logo-block .text {
    text-align: left;
  }
  .footer nav {
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-evenly;
  }
  .footer nav ul {
    gap: 12px;
    align-items: flex-start;
  }
  .footer .tel {
    order: 3;
  }
  .footer .payments {
    justify-content: left;
  }
}
@media (min-width: 1400px) {
  .header .container nav .menu-right {
    margin-left: 120px;
  }
}/*# sourceMappingURL=style.css.map */

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: auto !important;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 8px 20px 8px 8px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: unset !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px !important;
    right: 1px;
    width: 20px;
}

.header .container > .dropdown {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 1rem;
}


.header .container nav > .dropdown {
    display: none;
}


@media (min-width: 991px) {
    .header .container nav > .dropdown {
        display: flex;
    }
}


@media (min-width: 991px) {
    .header .container > .dropdown {
        display: none;
    }
}

.header .container .lang {
    background: #F4F4F4;
    border-radius: 8px;
    padding: 4px;
    align-items: center;
}

.header .container > .lang {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 1rem;
}

.header .container nav > .lang {
    display: none;
}


@media (min-width: 991px) {
    .header .container > .lang {
        display: none;
    }
}

@media (min-width: 991px) {
    .header .container nav > .lang {
        display: flex;
        align-items: center;
        height: -moz-fit-content;
        height: fit-content;
        margin: auto 0 auto 2rem;
    }
}

.header .container .lang .item {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #46454D;
    padding: 4px 12px;
}

.header .container .lang .item.active {
    background-color: var(--white);
    border-radius: 4px;
}

@media (min-width: 1200px) {
    .header .container nav {
        width: -moz-fit-content;
        width: fit-content;
    }
}

@media (min-width: 1200px) {
    .header .container .phone-number {
        display: none;
    }
}

@media (min-width: 991px) {
    .logo-mobile {
        display: none;
    }
}


.header .container .phone-number {
    display: none;
    text-decoration: none;
    color: var(--black);
    font-size: 11px;
    margin-left: 12px;
    margin-right: 12px;
}

section-register .section-body .form-input {
    display: flex
;
    flex-direction: column;
    width: 100%;
}

.mobile-only{display:none!important}

@media (max-width: 767px) {
    .mobile-only {
        display: inline-block !important;
        font-size: 14px !important;
        margin-left: 0px !important;
        padding: 8px 12px !important;
        margin-right: 0 !important;
    }
}

.header .container > .lang {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.section-stages .section-body .stages .card .icon img {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 991px) {
    .section-stages .section-body .stages .card .icon img {
        width: 48px;
        height: 48px;
    }
}

.section-competition-conditions .section-body .card .info .list .item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--black);
    width: 100%;
    padding: 12px;
    background: #bbd0ff47;
    border-radius: 12px;
}

.section-competition-conditions .section-body .card .info .list .item:nth-child(1) {
    background: rgba(187, 208, 255, 0.2784313725);
}
.section-competition-conditions .section-body .card .info .list .item:nth-child(2) {
    background: rgba(255, 187, 187, 0.2784313725);
}
.section-competition-conditions .section-body .card .info .list .item:nth-child(3) {
    background: rgba(202, 255, 187, 0.2784313725);
}
.section-competition-conditions .section-body .card .info .list .item:nth-child(4) {
    background: rgba(255, 232, 187, 0.2784313725);
}

.section-competition-schedule .section-body .schedule {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.section-competition-schedule .section-body .schedule .card {
    border-radius: 0px 8px 8px 0px;
    padding: 16px 20px;
    width: 100%;
    border: none;
}
.section-competition-schedule .section-body .schedule .card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}
.section-competition-schedule .section-body .schedule .card p {
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
}
.section-competition-schedule .section-body .schedule .card .date {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}
.section-competition-schedule .section-body .schedule .card.-blue {
    background-color: #EFF6FF;
    border-left: 4px solid #1E85E3;
}
.section-competition-schedule .section-body .schedule .card.-blue .date {
    color: #1E85E3;
}
.section-competition-schedule .section-body .schedule .card.-yellow {
    background-color: #FEFCE8;
    border-left: 4px solid #F5B300;
}
.section-competition-schedule .section-body .schedule .card.-yellow .date {
    color: #F5B300;
}
.section-competition-schedule .section-body .schedule .card.-green {
    background-color: #F0FDF4;
    border-left: 4px solid #22C55E;
}
.section-competition-schedule .section-body .schedule .card.-green .date {
    color: #22C55E;
}
.section-competition-schedule .section-body .schedule .card.-pink {
    background-color: #FAF5FF;
    border-left: 4px solid #A855F7;
}
.section-competition-schedule .section-body .schedule .card.-pink .date {
    color: #A855F7;
}
.section-competition-schedule .section-body .schedule .card .icon {
    display: none;
}

@media (min-width: 991px) {
    .section-competition-schedule .section-body .schedule {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 24px;
        position: relative;
    }
    .section-competition-schedule .section-body .schedule .line {
        position: absolute;
        width: 4px;
        height: 80%;
        background: linear-gradient(180deg, rgba(33, 132, 226, 0.2) 0%, rgba(28, 62, 137, 0.3019607843) 100%);
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    .section-competition-schedule .section-body .schedule .card {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: transparent !important;
        border: none !important;
    }
    .section-competition-schedule .section-body .schedule .card .item {
        background-color: #F5F7F8;
        padding: 24px;
        border-radius: 16px;
    }
    .section-competition-schedule .section-body .schedule .card .item, .section-competition-schedule .section-body .schedule .card .date {
        width: 45%;
    }
    .section-competition-schedule .section-body .schedule .card h4 {
        font-size: 20px;
    }
    .section-competition-schedule .section-body .schedule .card p {
        font-size: 16px;
        margin-bottom: 0;
    }
    .section-competition-schedule .section-body .schedule .card .date {
        font-size: 24px;
        display: flex;
        flex-direction: column;
    }
    .section-competition-schedule .section-body .schedule .card .date span {
        font-size: 16px;
        font-weight: 400;
        color: #4B5563;
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(2n+1) {
        flex-direction: row-reverse;
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(2n+1) .date {
        text-align: right;
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(2n) .item {
        text-align: right;
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(1) .date, .section-competition-schedule .section-body .schedule .card:nth-child(2) .date, .section-competition-schedule .section-body .schedule .card:nth-child(3) .date {
        color: #1C3E89;
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(4) .date {
        color: #F5B300;
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(4) .icon {
        background: linear-gradient(180deg, #FFDD7F 0%, #F5B300 100%);
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(5) .date {
        color: #DC2626;
    }
    .section-competition-schedule .section-body .schedule .card:nth-child(5) .icon {
        background: #EF4444;
    }
    .section-competition-schedule .section-body .schedule .card .icon {
        background: linear-gradient(180deg, #2184E2 0%, #1C3E89 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
    }
}

.section-send-member .section-body form .card-send .info .file .progress {
    height: 8px;
    margin-top: 10px;
    display: none;
}
.section-send-member .section-body form .card-send .info .file .success-message {
    display: none;
    color: #198754;
    font-weight: 500;
    margin-top: 10px;
}
.section-send-member .section-body form .card-send .info .file > .btn {
    width: 100%;
    margin-top: 1rem;
    gap: 16px;
}

.section-certificate-coupon {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 60px 0;
}

.section-certificate-coupon .section-header h2 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.section-certificate-coupon .section-header h3 {
    color: #4B5563;
    font-size: 16px;
    text-align: center;
}

.section-certificate-coupon .section-body .card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #BFDBFE;
}

.section-certificate-coupon .coupon-image {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 16px;
    border: 3px dashed #F59E0B;
}

.section-certificate-coupon .coupon-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
}

.section-certificate-coupon .btn {
    width: 100%;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s;
}

.section-certificate-coupon .btn:hover {
    transform: scale(1.02);
}

.section-certificate-coupon .coupon-description {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #2184E2;
}

.section-certificate-coupon .coupon-description p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
}

.section-certificate-coupon .contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #EFF6FF;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.section-certificate-coupon .contact-info span {
    font-size: 16px;
    font-weight: 600;
    color: #1E40AF;
}

.section-certificate-coupon .coupon-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #FFFBEB;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #FDE68A;
}

.section-certificate-coupon .coupon-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.section-certificate-coupon .coupon-note p {
    font-size: 14px;
    font-weight: 600;
    color: #92400E;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .section-certificate-coupon .section-header h2 {
        font-size: 36px;
    }

    .section-certificate-coupon .section-header h3 {
        font-size: 18px;
    }

    .section-certificate-coupon .section-body .card {
        padding: 48px;
    }

    .section-certificate-coupon .coupon-description p {
        font-size: 16px;
    }

    .section-certificate-coupon .btn {
        width: auto;
        min-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-gift-hero {
    background: url("../img/gift-bg.png");
    background-position: center;
    background-size: cover;
}
.section-gift-hero .section-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}
.section-gift-hero .section-header h1 span {
    background: linear-gradient(258.85deg, #9881EB 42.98%, #68A2FA 73.73%, #4DDC84 91.23%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-gift-hero .section-header h2 {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7647058824);
    text-align: center;
    margin: 8px 0;
}
.section-gift-hero .section-header .btn {
    background: linear-gradient(90deg, #2563EB 0%, #7C3AED 100%) !important;
    gap: 12px;
    box-shadow: 0px 0px 27.36px 0px rgba(0, 240, 165, 0.4117647059);
    border-radius: 9999px !important;
    margin-top: 20px;
}
.section-gift-hero .section-body img {
    width: 100%;
    display: none;
}
.section-gift-participate .section-header h2 {
    text-align: center;
}
.section-gift-participate .section-header h2 span {
    color: #2563EB;
}
.section-gift-participate .section-header .line {
    margin: auto;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
}
.section-gift-participate .section-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.section-gift-participate .section-body .card {
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843) !important;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843) !important;
    border-radius: 24px !important;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-gift-participate .section-body .card .icon {
    margin-bottom: 1rem;
}
.section-gift-participate .section-body .card .number {
    font-size: 24px;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 2px solid #3B82F6;
    color: #3B82F6;
    display: none;
    align-items: center;
    justify-content: center;
}
.section-gift-participate .section-body .card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1B3B86;
    margin-bottom: 8px;
    text-align: center;
}
.section-gift-participate .section-body .card p {
    font-size: 14px;
    font-weight: 400;
    color: #4B5563;
    margin-bottom: 14px;
    text-align: center;
}
.section-gift-participate .section-body .card .btn {
    gap: 8px;
    color: var(--white);
    font-size: 10px !important;
    border-radius: 10px !important;
}
.section-gift-participate .section-body .card.instagram .btn {
    background: linear-gradient(90deg, #AE54EF 0%, #FB923C 100%);
}
.section-gift-participate .section-body .card.whatsapp .btn {
    background: linear-gradient(90deg, #3DCF73 0%, #16A34A 100%);
}
.section-gift-participate .section-body .card.share .btn {
    background: linear-gradient(90deg, #5093F6 0%, #2563EB 100%);
}
.section-gift-screenshot {
    background: url("../img/gift-screen.png");
}
.section-gift-screenshot .section-body .card {
    padding: 33px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1019607843);
    border: 1px solid var(--white);
    border-radius: 24px;
    align-items: center;
    justify-content: center;
}
.section-gift-screenshot .section-body .card .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}
.section-gift-screenshot .section-body .card .icon svg {
    width: 100%;
    height: 100%;
}
.section-gift-screenshot .section-body .card h3 {
    display: none;
}
.section-gift-screenshot .section-body .card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin-top: 8px;
}
.section-gift-screenshot .section-body .card .btn {
    background: linear-gradient(90deg, #4ADE80 0%, #10B981 100%);
    border-radius: 24px !important;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    gap: 12px;
    margin-top: 8px;
}
.section-gift-gifts {
    background: #F3F6FF;
}
.section-gift-gifts .section-header h2 {
    text-align: center;
}
.section-gift-gifts .section-header h2 span {
    color: #2563EB;
}
.section-gift-gifts .section-header .line {
    margin: auto;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
}
.section-gift-gifts .section-body .main-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.section-gift-gifts .section-body .main-cards .card {
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
    border-radius: 24px;
    padding: 24px;
}
.section-gift-gifts .section-body .main-cards .card .title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3B86;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}
.section-gift-gifts .section-body .main-cards .card .list ul li {
    color: #374151;
    font-size: 14px;
    font-weight: 400;
}
.section-gift-gifts .section-body .main-cards .card p {
    color: #374151;
    font-size: 14px;
    font-weight: 400;
}
.section-gift-gifts .section-body .main-cards .card .date {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #2563EB;
    gap: 8px;
}
.section-gift-gifts .section-body .mini-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.section-gift-gifts .section-body .mini-cards .card {
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
}
.section-gift-gifts .section-body .mini-cards .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-gift-gifts .section-body .mini-cards .card p {
    display: none;
}
.section-gift-winners {
    background: #F8FAFF;
}
.section-gift-winners .section-header h2 {
    text-align: center;
    color: #1B3B86;
}
.section-gift-winners .section-header .line {
    margin: auto;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
}
.section-gift-winners .section-body .winners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.section-gift-winners .section-body .winners .card {
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
    padding: 20px;
    border-radius: 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-gift-winners .section-body .winners .card .image {
    width: 64px;
    height: 64px;
    border: 4px solid #F5B300;
    border-radius: 50%;
    position: relative;
    margin-bottom: 12px;
}
.section-gift-winners .section-body .winners .card .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.section-gift-winners .section-body .winners .card .image svg {
    position: absolute;
    top: -6px;
    right: -12px;
}
.section-gift-winners .section-body .winners .card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1B3B86;
    margin-bottom: 4px;
    text-align: center;
}
.section-gift-winners .section-body .winners .card p {
    font-size: 12px;
    font-weight: 400;
    color: #4B5563;
    margin-bottom: 0;
    text-align: center;
}








@media (min-width: 991px) {
    .section-gift-hero {
        height: 700px;
        display: flex;
    }
    .section-gift-hero .container {
        display: flex;
        align-items: center;
        gap: 64px;
    }
    .section-gift-hero .section-header h1, .section-gift-hero .section-header h2 {
        text-align: left;
    }
    .section-gift-hero .section-header h1 {
        font-size: 60px;
        line-height: 60px;
    }
    .section-gift-hero .section-header h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .section-gift-hero .section-header .btn {
        width: -moz-fit-content;
        width: fit-content;
        font-size: 18px;
        width: 180px;
        padding: 20px !important;
    }
    .section-gift-hero .section-body img {
        display: flex;
        width: 448px;
        height: auto;
    }
    .section-gift-participate {
        padding: 80px 0;
    }
    .section-gift-participate .section-body {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .section-gift-participate .section-body .card {
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1px solid rgba(30, 133, 227, 0.1490196078) !important;
        box-shadow: 0px 4px 20px 0px rgba(30, 133, 227, 0.1490196078) !important;
        align-items: flex-start;
    }
    .section-gift-participate .section-body .card .icon {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    .section-gift-participate .section-body .card .icon svg {
        width: 100%;
        height: 100%;
    }
    .section-gift-participate .section-body .card .number {
        display: flex;
        margin-bottom: 16px;
    }
    .section-gift-participate .section-body .card h3 {
        font-size: 24px;
        text-align: left;
    }
    .section-gift-participate .section-body .card p {
        font-size: 16px;
        text-align: left;
        margin-bottom: 24px;
    }
    .section-gift-participate .section-body .card .btn {
        width: 100%;
        margin-top: auto;
        font-size: 16px !important;
    }
    .section-gift-participate .section-body .card .btn svg {
        width: 20px;
        height: 20px;
    }
    .section-gift-screenshot {
        padding: 80px 0;
    }
    .section-gift-screenshot .section-body .card {
        width: 80%;
        margin: auto;
        border: 2px solid #2B5A4F;
    }
    .section-gift-screenshot .section-body .card .icon {
        width: 96px;
        height: 96px;
    }
    .section-gift-screenshot .section-body .card .icon svg {
        width: 100%;
        height: 100%;
    }
    .section-gift-screenshot .section-body .card h3 {
        display: flex;
        color: var(--white);
        font-size: 36px;
        font-weight: 700;
    }
    .section-gift-gifts {
        padding: 80px 0;
    }
    .section-gift-gifts .section-body .main-cards {
        grid-template-columns: 1fr 1fr;
    }
    .section-gift-gifts .section-body .main-cards .card .title {
        font-size: 24px;
    }
    .section-gift-gifts .section-body .mini-cards .card {
        display: flex;
        align-items: center;
        flex-direction: row;
    }
    .section-gift-gifts .section-body .mini-cards .card p {
        display: flex;
        margin-bottom: 0;
    }
    .section-gift-winners {
        padding: 80px 0;
    }
    .section-gift-winners .section-body .winners {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .section-gift-winners .section-body .winners .card {
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1px solid rgba(30, 133, 227, 0.1490196078) !important;
        box-shadow: 0px 4px 20px 0px rgba(30, 133, 227, 0.1490196078) !important;
    }
}

.section-program .section-body .faq-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.section-program .section-body .faq-cards .item {
    border: none;
    background-color: var(--white);
    border-radius: 24px !important;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
}
.section-program .section-body .faq-cards .item .accordion-button {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    border: 0;
    border-radius: 24px;
}
.section-program .section-body .faq-cards .item .accordion-button:after {
    background-image: url("../img/icons/ic-arrow-down-blue.svg");
}
.section-program .section-body .faq-cards .item .accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: var(--white);
    box-shadow: none;
}
.section-program .section-body .faq-cards .item .accordion-button:focus {
    box-shadow: none;
}
.section-program .section-body .faq-cards .item .accordion-button span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1E85E3;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}
.section-program .section-body .faq-cards .item .accordion-body {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    padding-top: 0;
    background-color: #EFF6FF;
    padding: 12px;
    border-radius: 16px;
    margin-top: 0;
    margin-bottom: 12px;
    margin-left: 12px;
    margin-right: 12px;
}
.section-program .section-body .faq-cards .item .accordion-body ul {
    margin: 0;
}




@media (min-width: 991px) {
    .section-program .section-body {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .section-program .section-body .card {
        width: 100%;
        padding: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        border-radius: 24px;
        box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1019607843);
        box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1019607843);
    }
    .section-program .section-body .card:nth-child(2n+1) {
        border-left: 4px solid #1E85E3;
    }
    .section-program .section-body .card:nth-child(2n) {
        border-left: 4px solid #F5B300;
    }
    .section-program .section-body .card .number {
        width: 56px;
        height: 56px;
        background: linear-gradient(45deg, #1B3B86 50%, #1E85E3 120.71%);
        font-size: 20px;
    }
    .section-program .section-body .card p {
        font-size: 18px;
        font-weight: 400;
        color: #4B5563;
    }
    .section-program .section-body .faq-cards {
        gap: 24px;
        width: 90%;
        margin: auto;
    }
    .section-program .section-body .faq-cards .item {
        border-radius: 16px;
    }
    .section-program .section-body .faq-cards .item .accordion-button {
        padding: 32px;
        font-size: 20px;
    }
    .section-program .section-body .faq-cards .item .accordion-body {
        padding: 32px;
        font-size: 16px;
        margin-bottom: 24px;
        margin-left: 24px;
        margin-right: 24px;
    }
}
