* {
	box-sizing: border-box;
}
:root {
  --main-color: #120031;
}
html {
  scroll-behavior: smooth;
}
body {
    background: #25293c;
	font-family: "Public Sans", "Helvetica Neue", "Droid Sans", "Barlow Semi Condensed";
    //font-family: Montserrat, Arial Fallback, arial, sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: white;
    margin: 0;
}
[id] {
  scroll-margin-top: 150px;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
	margin:0 auto;
}
article img { 
    border-radius: 5px;
}
p {
    color: #acabc1;
}
table {
    border-collapse: collapse;
    color: #acabc1;
    margin: 0 auto;
}
thead tr {
    border-bottom: solid 1px #626784;
    //color: #120031;
    color: #f5f5f5;
    text-align: left;
}
tr {
    border-bottom: solid 1px #44485e;
}
th, td {
    padding: 2px 0 2px 5px;
}
tr:hover, th:hover {
    border-bottom: solid 1px #120031;
}
h2 {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 20px;
    text-align: center;
    //color: #120031;
    color: #f5f5f5;
}
h3 {
    text-align: center;
    //color: #120031;
    color: #f5f5f5;
}
h4 {
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    iframe {
        width: 100%;
        height: 300px;
    }
    th, td {
        line-height: 22px;
    }
}
.header_block {
	display: block;
	position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: .3s;    
    background: #2f3349;
    padding: 12px 0;
    box-shadow: 0 1px 1px #2f2b3d;
}
.header_gamburger {
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
    background: none;
    border: none;
    padding: 10px;
}
.header_gamburger span:first-child {
    top: 5px;
}
.header_gamburger span:last-child {
    top: 21px;
}
.header_gamburger.active span:first-child {
    transform: rotate(135deg);
    top: 14px;
}
.header_gamburger.active span:nth-child(2) {
    display: none;
}
.header_gamburger.active span:last-child {
    transform: rotate(-135deg);
    top: 14px;
}
.header_gamburger span {
    width: 26px;
    height: 3px;
    left: 3px;
    position: absolute;
    background: #ffffff;
    top: 13px;
    transform: rotate(0);
    transition: .2s;
    border-radius: 4px;
    cursor: pointer;
}
.header_button {
    max-width: 150px;
    min-width: 105px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: #120031;
    //color: #131313;
    color: #f5f5f5;
    width: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    font-size: 15px;
    padding: 10px;
    //animation: pulse 1.8s infinite;
}
.header_button2 {
    max-width: 150px;
    border: 1px solid #cfcde4;
    color: #cfcde4;
    width: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    font-size: 15px;
    padding: 10px 0;
    margin-right: 40px;
}
@media only screen and (max-width: 767px) {
    .header_button2 {
        display: none;
    }
}
.header_button:hover {
    background: none;
    border: solid 1px #cfcde4;
    color: #cfcde4;
}
.header_button2:hover {
    background: #cfcde4;
    color: #252422;
}
.header_nav_list.active {
  display: block;
}
.header_nav {
	//margin-right: 70px;
    overflow-x: auto;
    overflow-y: hidden;
}
section {
	margin-top: 20px;
}
article {
    //background-color: #212529;
    //color: #acabc1;
    //padding: 40px 0;
    margin-top: 20px;
}
article li, section li {
    color: #acabc1;
}
.article_text {
    padding: 20px;
    border-radius: 5px;
    background: #2f3349;
}
main a {
	color: red;
	text-decoration: none;
}
main a:hover {
	//color: #120031;
    text-decoration: underline;   
}
article a {
	color: red;
	text-decoration: none;
}
article a:hover {
	color: #120031;
}
.header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    //margin-bottom: 10px;
}
.header_box_logo_links {
    display: flex;
    grid-gap: 20px;
    align-items: flex-end;
}
.header_box1 {
    display: flex;
    justify-content: left;
    align-items: center;
    //box-shadow: 0 1px 0 #44485e;
    border-top: solid 1px #44485e;
    margin: 10px 0 -8px 0;
    padding-top: 5px;
}
.logo {
    display: block;
    position: relative;
    z-index: 3;
    //margin-top: 5px;
}
@media only screen and (min-width: 768px) {
    .header_gamburger {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .header_box1 {
        display: none;
    }
}
.header_nav_button {
	display: flex;
	align-items: center;
}
.header_nav_list
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    grid-gap: 8px;
    list-style: none;
    margin: 0;
    text-align: center;
    padding: 20px;
    background-color: #2f3349;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .5);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
.header_nav_list1
{
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
    grid-gap: 8px;
    list-style: none;
    margin: 0;
    text-align: center;
    padding: 20px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .5);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    background-color: #001d3d;
}
.header_nav_list1_text
{
    padding: 5px;
}
@media only screen and (max-width: 767px) {
	.header_nav_list, .header_nav_list1 {
		display: none;
	}
    .header_nav {
        margin-right: 50px;
    }
}
@media only screen and (min-width: 768px) {
    .header_nav_list, .header_nav_list1
	{
        background: none;
        box-shadow: none;
        position: static;
        padding: 4px 0;
    }
}
.header_nav_link {
    display: inline-flex;
    width: 100%;
    padding: 5px 20px;
    font-size: 16px;
    transition: .3s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    color: #cfcde4;
}
.header_nav_link1 {
    display: inline-flex;
    width: 100%;
    padding: 5px 10px;
    font-size: 15px;
    transition: .3s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    border-radius: 5px;
    border: solid 1px #2f3349;
    color: #cfcde4;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .header_nav_link1 {
        padding: 5px;
    }
}
.header_nav_link1_active {
    display: inline-flex;
    border-radius: 5px;
    width: 100%;
    padding: 5px 20px;
    font-size: 15px;
    transition: .3s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    border: solid 1px #120031;
    background: #120031;
    //color: #131313;
    color: #f5f5f5;
}
.header_nav_link1_active:hover {
    background: none;
    border: solid 1px #cfcde4;
    color: #cfcde4;
}
@media only screen and (max-width: 768px) {
	.header_nav_link {
		border-bottom: solid 1px;
	}
}
.header_nav_link:hover, .header_nav_link1:hover {
	color: #cecfe4;
    background: color-mix(in sRGB, #e1def5 6%, #2f3349);
    border-radius: 5px;
}
.main {
    position: relative;
    overflow: hidden;
}
main {
    display: block;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
.container_75 {
    width: 75%;
    margin: 0 auto;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
}
.container_50 {
    width: 50%;
    margin: 0 auto;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
}
@media only screen and (max-width: 767px) {
    .container_50 {
        width: 100%;
        padding: 0 20px;
    }
}
.container_50_2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
    padding: 0 40px;
}
.container_40_60 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 20px;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
    padding: 0 40px;
}
@media (max-width: 1023px) {
    .container_40_60 {
        grid-template-columns: 1fr;
    }
}
.container_60_40 {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 20px;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
    padding: 0 40px;
}
@media (max-width: 1023px) {
    .container_60_40 {
        grid-template-columns: 1fr;
    }
}
.container_25_2 {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
    //padding: 0 40px;
}
.container_33_3 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
    padding: 0 40px;
}
.container_75_2 {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
    //padding: 0 40px;
}
.container_25 {
    width: 25%;
    margin: 0 auto;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
}
@media only screen and (max-width: 767px) {
    .container, .container_75, .container_33_3, .container_40_60, .container_60_40 {
        width: 100%;
        padding: 0 20px;
    }
    .header_box {
        margin: 0;
    }
    .container_50_2 {
        padding: 0 20px;
    }
}
.bordered, .bordered-green, .bordered-red {
    border: solid 1px #44485e;
    border-radius: 5px;
    padding: 0 20px;
}
.bordered:hover {
    border: solid 1px #120031;
}
.bordered-green:hover {
    border: solid 1px green;
}
.bordered-red:hover {
    border: solid 1px red;
}
.bordered-inv {
    border: solid 1px #555555;
    border-radius: 5px;
    padding: 0 20px;
}
.bordered-inv:hover {
    border: solid 1px #cccccc;
}
.welcome_block_left {
    flex: 1;
	padding-right: 40px;
	font-weight: 400;
    color: #ffffff;
}
.welcome_block_left p {
    color: #f5f5f5;
    font-weight: 300;
}
@media only screen and (max-width: 767px) {
	.welcome_block_left {
		padding-right: 0px;
	}
	.welcome_block_container img {
        flex: 1;
		margin-bottom: 20px;
	}
}	
@media only screen and (min-width: 1024px) {
    .welcome_block_container {
        border-radius: 5px;
        padding: 20px 40px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
}
.welcome_block_container {
    position: relative;
    display: flex;
    border-radius: 5px;
    padding: 20px 15px;
    //background: linear-gradient(130deg, white, #0353a4 70%, #120031);
    flex-direction: column-reverse;
    justify-content: center;
    min-height: 152px;
    background: #120031;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(19, 17, 32, 0.2);
}
@media only screen and (min-width: 1024px) {
    .welcome_block_container  {
        padding: 20px 40px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
}
.first_block_h1 {
    //color: #120031;
    color: #fefefe;
    margin: 30px 0 20px 0;
    line-height: 40px;
    text-align: center;
}
.welcome_block_h1 {
    color: #f5f5f5;
    margin: 30px 0 20px 0;
    line-height: 40px;
}
@media only screen and (max-width: 1023px) {
	.welcome_block_h1 {
		margin: 0 0 20px 0;
	}
}
@media only screen and (min-width: 1024px) {
    .welcome_block_h1, .first_block_h1 {
        font-size: 44px;
        line-height: 48px;
    }
}
@media only screen and (max-width: 1279px) {
    .welcome_block_h1, .first_block_h1 {
        font-size: 36px;
    }
}
@media only screen and (max-width: 767px) {
    .welcome_block_h1, .first_block_h1 {
        font-size: 32px;
    }
}
.welcome_block_img {
    flex: 1;
	display: block;
    border-radius: 5px;
}
@media only screen and (max-width: 1023px) {
    .welcome_block_img img {
        width: 100%;
        margin-bottom: 20px;
    }
}
.top-image img {
    object-fit: cover;
}
.top-image  {
    margin: 0 !important;
    padding: 0 !important;
}
.block_on_background_container {
    padding: 20px;
    border-radius: 5px;
    background: #2f3349;
}
.block_with_gradient_container {
    flex: 1;
    padding: 20px;
    border-radius: 5px;
    background: #2f3349;   
}
.block_with_color_container {
    flex: 1;
    padding: 20px;
    border-radius: 5px;
    background: #120031;
}
.block_with_color_container p, .block_with_color_container li {
    color: #f5f5f5;
    font-weight: 300;
}
.block_with_color_container h2, .block_with_color_container h3 {
    color: #f5f5f5;
}
@media only screen and (max-width: 767px) {
    h2 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }
}
.block_with_gradient2_in {
        background: linear-gradient(90deg, rgb(0, 116, 255), rgb(92, 162, 248) 50%, rgb(0, 116, 255));
}
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.modal-content {
    position: relative;
    background: #000;
    width: 80%;
    height: auto;
    max-width: 1200px;
    border-radius: 5px;
    overflow: visible;
}
.modal-controls {
    position: absolute;
    top: 0px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}
@media (max-width: 767px) {
    .modal-controls {
        right: -32px;
    }
}
.close {
    position: relative;
    font-size: 38px;
    color: #cfcde4;
    cursor: pointer;
    z-index: 2;
}
.close:hover {
    color: white;
}
.fullscreen {
    position: relative;
    font-size: 32px;
    color: #cfcde4;
    cursor: pointer;
}
.fullscreen:hover {
    color: white;
}
.modal-content iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 5px;
}
.int-award-block {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 20px auto;
    grid-gap: 20px;
    border-radius: 20px;
    font-weight: 400;
}
.int-award-block-img {
    //text-align: center;
    padding: 20px;
}
.int-award-block h4 {
    //text-transform: uppercase;
    //text-align: center;
    font-weight: 700;
    margin: 20px;
}
.int-award-block-img p {
    padding: 0 5px;
    font-size: 15px;
    text-align: center;
    line-height: 22px;
    margin-bottom: 0;
}
.int-award-block1 {
    width: 100%;
    display: grid;
    grid-template-columns: 200px 1fr;
    justify-content: center;
    align-items: center;
    //margin: 20px auto;
    grid-gap: 20px;
    border-radius: 5px;
    padding-right: 20px;
}
.int-award-block1 div {
    flex: 1;
}
.int-award-block1-text {
    line-height: 22px;
}
.int-award-block1-img {
    min-width: 80px;
    border-radius: 5px 0 0 5px;
    padding: 20px 0;
}
@media (max-width: 1279px) {
    .int-award-block1-text {
        line-height: 18px;
    }
}
@media (max-width: 767px) {
    .int-award-block1 {
        align-items: center;
        width: 100%;
        display: block;
        padding: 0;
    }
    .int-award-block1-img {
        border-radius: 5px;
        //margin: 10px 0 10px 10px;
    }
    .int-award-block1-text {
        font-size: 13px;
    }
    article table, main table {
        width: 100%;
    }
}
.int-award-block-text {
    flex: 1;
    padding-right: 20px;
}
.int-award-block2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 20px auto;
    justify-content: center;
    grid-gap: 20px;
}
.int-award-block2-img {
    padding: 10px;
    text-align: center;
}
.welcome_button {
    max-width: 200px;
    margin: 0 auto 15px;
    border: 1px solid rgba(0, 0, 0, 0);
    //background: #ca0c19;
    background: yellow;
    //color: #120031;
    color: red;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;    
}
.text_card_button {
    width: 250px;
    margin: 0 auto 15px;
    border: 1px solid rgba(0, 0, 0, 0);
    //background: #120031;
    background: yellow;
    //color: #e42401;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    line-height: 30px;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;    
}
.text_card_button img {
    margin: 0;
}
.welcome_button:hover, .text_card_button:hover {
    background: #2f3349;
    border: solid 1px yellow;
    color: yellow;
	text-decoration: none;
}
.demo_block {
    position: relative;
}
.demo_button {
	position: absolute;
	top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}
.demo_button2 {
	position: absolute;
	top: 45%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;	
}
.demo_button2 img {
    width: 40px;
    height: 32px;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .demo_button {
    	top: 15%;
    }
    .demo_button2 {
    	top: 50%;
    }
}
.demo_iframe {
	width: 900px;
	height: 540px;
	display: block;
	margin:0 auto;
	border: 0;
}
.img_on_iframe {
	position: absolute;
	left: 50%;
  	transform: translate(-50%, 0);
  	filter: brightness(60%);
    border-radius: 5px;
}
@media only screen and (max-width: 1023px) {
    .demo_iframe {
    	width: 100%;
        height: 50vw;
    }
}
.casino img {
    //margin: 20px 0 20px -20px;
    padding: 20px 0; 
}
.block_faq_container {
    padding: 20px;
    border-radius: 5px;
    background: #2f3349;
}
.faq_wrapper {
    padding-right: 40px;
}
.faq_item
{
    flex-direction: column;
    padding: 0 10px 0 20px;
    border-radius: 5px;
    border: 1px solid #44485e;
    //background: linear-gradient(180deg, #2f3d61, #202f55);
    //background: #252422;
    font-size: 14px;
}
.faq_item {
	list-style: none;
	margin-bottom: 20px;
}
.faq_item:hover{
	border: solid 1px #120031;
}
.faq_item .faq_question
 {
    padding: 8px 0;
    min-height: 30px;
    width: 100%;
    line-height: normal;
    font-style: normal;
    font-weight: 500;
    align-items: center;
}
.faq_item, .faq_item .faq_question {
    display: flex;
    justify-content: space-between;
    transition: all .2s ease-in-out;
    position: relative;
    color: white;
}
.faq_text h3{
	font-size: 18px;
	margin: 0;
}
.faq_answer {
	margin: -10px 20px 25px 25px;
}
@media only screen and (max-width: 767px) {
    .author {
        //padding: 40px 40px;
        padding: 0;
    }
    .faq_wrapper {
        padding: 0;
    }
}
@media only screen and (max-width: 767px) {
    blockquote {
        border: 0 !important;
        padding-left: 0 !important;
        margin: 0px !important;
    }
}
.block_author {
    border-radius: 5px;
    overflow: hidden;
    background: #120031;
    position: relative;
    z-index: 1;
    align-items: center;
}
.block_author a {
    color: #f5f5f5;
    font-weight: 400;
}
.block_author a:hover {
    color: black;
    text-decoration: underline;
}
@media only screen and (min-width: 768px) {
    .block_author {
        display: grid;
        grid-template-columns: 0.8fr 2fr;
    }
}
@media only screen and (min-width: 1280px) {
    .block_author {
        grid-template-columns: 0.8fr 2fr;
    }
}
.author_h2 {
    line-height: 16px;
    color: #f5f5f5;
}
.author-photo {
    object-fit: cover;
    display: block;
    border-radius: 5px;
    margin-top: 10px;
}
@media only screen and (max-width: 767px) {
    .author_photo {
        margin-top: 40px;
    }
}
.author_header {
    display: flex;
    gap: 10px;
    text-align: center;
}
.social {
    padding-top: 22px;
}
.social:hover {
    transform: translateY(-3px) scale(1.05);
}
.reviews {
    padding-top: 5px;
}
@media only screen and (max-width: 767px) {
    .block_author {
        margin: 0 auto;
        padding-top: 40px;
    }
}
.author_link {
    width: 100%;
    text-align: center;
}
.author_text {
    padding: 20px;
    text-align: left;
}
@media only screen and (min-width: 768px) {
    .author_name {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }
}
blockquote {
    border-left: dashed 1px #f5f5f5;
    color: #f5f5f5;
    padding: 5px 30px;
    margin: 0;
    line-height: 24px;
    font-weight: 300;
}
.footer {
    padding: 24px 0 0;
    margin-top: 20px;
    background: #2f3349;
    color: #fff;
}
.footer a {
	color: #cfcde4;
    text-decoration: none;
}
.footer_box {
    padding-bottom: 36px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
@media only screen and (min-width: 1024px) {
    .footer_box {
        flex-direction: row;
        gap: 20px;
    }
}
.footer_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}
@media only screen and (min-width: 1024px) {
    .footer_logo {
        gap: 23px;
        text-align: left;
        align-items: flex-start;
        max-width: 250px;
    }
}
.footer_column {
    display: grid;
    width: 70%;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
    font-size: 14px;
    color: #acabc1;
    padding-top: 10px;
}
@media only screen and (min-width: 1024px) {
    .footer_column {
		grid-gap: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .footer_column div:nth-child(3) {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    .footer_column div:nth-child(4) {
        grid-column: 1 / -1;
        margin-top: 10px;
        padding: 10px;
    }
    .footer_column {
        grid-template-columns: 1.3fr 1fr;
        width: 100%;
    }
}
.footer_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
}
.footer_list_link {
	color: #cfcde4;
    text-decoration: none;
    font-size: 14px;
    line-height: 12px;
    padding: 5px 10px;
}
.footer_list_link:hover {
    background: color-mix(in sRGB, #e1def5 6%, #2f3349);
}
.footer img:hover {
    transform: translateY(-3px) scale(1.05);
}
.office:hover {
    background: color-mix(in sRGB, #e1def5 6%, #2f3349);
}
@media only screen and (min-width: 1024px) {
    .footer_copyright {
        padding: 0 0 15px;
        display: flex;
        justify-content: space-between;
        grid-gap: 40px;
        align-items: center;
    }
}
@media only screen and (max-width: 1023px) {
    .footer_copyright {
        padding: 15px 0 15px;
    }
}
.footer_copyright {
	font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .5);
    padding: 10px 0;
    text-align: center;
}
.footer_logos {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
}