@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.woff") format('woff'),
        url("../fonts/Montserrat-Regular.woff2") format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.woff") format('woff'),
        url("../fonts/Montserrat-SemiBold.woff2") format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.woff") format('woff'),
        url("../fonts/Montserrat-Bold.woff2") format('woff2');
    font-weight: 700;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }


  textarea:focus, input:focus{
    outline: none;
}

b{
    font-weight: 800;
}

.btn-primary{
    margin: 5px;
    border: none;
    background: #C0101D;
    box-shadow: 0px 10px 40px -20px rgb(192 16 29 / 25%);
    border-radius: 25px;
    color: #FFFFFF;
    margin-right: 25px;
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    padding: 0 20px 0 20px;
}

.btn-secondary{
    margin: 5px;
    border: 1px solid #C0101D;
    background: #FFFFFF;
    box-shadow: 0px 10px 40px -20px rgb(192 16 29 / 25%);
    border-radius: 25px;
    color: #C0101D;
    margin-right: 25px;
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    padding: 0 20px 0 20px;
}

* {
    box-sizing: border-box;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    color: #0D1F38;
    margin: 0;
    padding: 0;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-weight: 700;
    font-size: 38px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #2D71A4;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.02em;
    color: #2D71A4;
}

h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
}

p {
    font-size: 18px;
    line-height: 150%;
}

a {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    cursor: pointer;
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    margin-left: 0;
    padding-left: 0;
}

button {
    background: none;
    border: none;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(to right, #FFFFFF 54%, #D9E7F2 99%);
}

/*
.header .logo {
    background-image: url("../images/logo.svg");
    width: 70px;
    height: 44px;
}*/

.header .list {
    display: flex;
    margin-left: 35px;
    margin-right: auto;
}

.header .list li {
    margin-right: 30px;
}

.header .list li a {
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    color: #2D71A4;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header .list li a.active {
    color: #C0101D;
}

.header .list li a:hover {
    color: #C0101D;
}

.header .registration::before {
    content: '';
    display: block;
    background-image: url("../images/DNKCIBwhite.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    margin-right: 5px;
}

.header .registration {
    display: flex;
    align-items: center;
    line-height: 20px;
    padding: 15px 25px;
    background: #C0101D;
    color: #fff;
    border-radius: 25px;
}

.header_mobile {
    display: none;
}

.header .search {
    display: none;
    width: 56px;
    height: 56px;
    background-image: url("../images/Search.svg");
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.header .burger {
    width: 56px;
	height: 56px;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.header .burger span {
    width: 30px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #C0101D;
	transition: all 0.5s;
}

.burger span:nth-of-type(2) {
	top: calc(50% - 5px);
}

.burger span:nth-of-type(3) {
	top: calc(50% + 5px);
}

.burger_menu {
	position: absolute;
	top: 87px;
	right: 20px;
	width: 264px;
	height: fit-content;
    z-index: 11;
    background: #FFFFFF;
    box-shadow: 0px 15px 30px -22px rgba(12, 59, 95, 0.15);
    border-radius: 10px;
	transform: translateY(-150%);
	transition: transform 0.5s; 
}

.burger_menu.active {
	transform: translateY(0);
}

.burger_menu li {
	list-style-type: none;
}

.burger.active span:nth-of-type(1) {
    display: none;
}

.burger.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}

.burger.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg); 
}

.burger_list {
    padding: 20px;
    border-bottom: 1px solid #C0101D;
}

.burger_list li:not(:last-child) {
    margin-bottom: 20px;
}

.burger_list li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #2D71A4;
}

.burger_links {
    padding: 30px;
}

.burger_links li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #2D71A4;
}

.burger_links li:not(:last-child) {
    margin-bottom: 20px;
}

/* FOOTER */

.footer .content {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
    padding: 40px 0;
    border-top: 1px solid #C0101D;;
}

.footer .content .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45%;
}

.footer .content .top .top-item {
    display: flex;
    align-items: center;
}

.footer .content .top .top-item .info{
    text-align: right;
}

.footer .content .top .top-item .logo {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
}

.footer .content .top .top-item .chiz {
    width: 40px;
    height: 40px;
    background-image: url("../images/DNKCIB.svg");
}

.footer .content .top .top-item .ics {
    width: 145px;
    height: 34px;
    background-image: url("../images/ics.svg");
}

.footer .content .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    width: 45%;
}

.footer .content .bottom .link {
    font-weight: 400;
    font-size: 16px;
    text-decoration-line: underline;
    color: #2D71A4;
}

.footer .content .bottom .vk {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/vk.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.footer .content .bottom .youtube {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/youtube.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 1200px) {
    .header .list {
        display: none;
    }

    .header .registration {
        display: none;
    }

    .header .header_mobile {
        display: flex;
    }

    .header .header_mobile .search {
        display: block;
    }


}

@media (max-width: 1200px) {
    .content {
        max-width: 780px;
    }

    .footer .content .top,
    .footer .content .bottom {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .content {
        padding: 0 10px;
    }
}


.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 278;
  }

  .dropdown-content-user {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 278;
    border-radius: 10px;
    background: #f9f9f9;
    top: 75px;
    right: 20px;
  }
  
  .dropdown-content p{
    font-weight: 600;
    font-size: 13px;
    line-height: 25px;
    text-align: center;
    color: #2D71A4;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .dropdown-content-user p{
    font-weight: 600;
    font-size: 16px;
    line-height: 200%;
    text-align: center;
    color: #C0101D;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .dropdown-content p:hover{
    color: #C0101D;
  }

  input[type="radio"]{
    margin: 10px;
  }

  .flex-space{
    display: flex;
    justify-content: space-between;
  }

  .btn-white{
    margin: 3px;
    border: 2px solid #FFFFFF;
    background: #C0101D;
    box-shadow: 0px 10px 40px -20px rgb(192 16 29 / 25%);
    border-radius: 25px;
    color: #FFFFFF;
    font-size: 11px!important;
    margin-right: 25px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    padding: 0 10px 0 10px;
  }