/* reset css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -- reset css */
*{
    box-sizing: border-box;
}
html{
    font-family: "Exo 2", sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
    background: #000;
}
.container{
    max-width: 1234px;
    padding: 0 15px;
    margin: auto;
}
sup{
  font-size: 0.7em;
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
a{
    text-decoration: none;
    display: inline-block;
    color: #1248C6;
    transition: all .3s;
}
a:visited{
    color: #8250F4;
}
strong, b{
    font-weight: 600;
}
em{
    font-style: italic;
}
input,
button,
textarea{
    outline: none;
}
button{
    border: 0;
    cursor: pointer;
}
img{
    max-width: 100%;
    height: auto;
}
.section{
    padding: 60px 0;
}
p{
    line-height: 1.4;
}
h2.title-section{
    font-size: 64px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 30px;
}
p.subtitle-section{
    font-size: 18px;
    color: #8B8F97;
    font-weight: 400;
    line-height: 1.4;
}
.btn-light{
    font-size: 12px;
    background: #F4F5F7;
    border-radius: 5px;
    line-height: 20px;
    padding: 16px;
		min-width: 180px;
    font-family: "Geist Mono", monospace;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all .3s;
}
.btn-light span{
    position: relative;
    z-index: 9;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
}
.btn-light:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #A7A7A7 0%, #F4F5F7 100%);
    opacity: 0;
    transition: all .3s;
    z-index: 1;
}
.btn-light:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    border: 1px solid #8B8F97;
    border-radius: 5px;
    transition: all .3s;
    z-index: 10;
}
.btn-light:active:before{
    opacity: 1;
}
.btn-light:hover:after,
.btn-light:active:after{
    opacity: 1;
}
.btn-light:visited{
    color: #000;
}

.btn-transparent{
    font-size: 12px;
    background: transparent;
    border-radius: 5px;
    line-height: 20px;
    padding: 16px;
    font-family: "Geist Mono", monospace;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all .3s;
		min-width: 180px;
}
.btn-transparent span{
    position: relative;
    z-index: 9;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
}
.btn-transparent:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    opacity: 1;
    transition: all .3s;
    z-index: 1;
    border: 1px solid #fff;
    border-radius: 5px;
}
.btn-transparent:visited{
    color: #fff;
}
.btn-transparent:hover{
    background: #fff;
    color: #000;
}
.btn-transparent span svg path{
	transition: all .3s;
}
.btn-transparent:hover span svg path{
	fill: #000;
}

.btn-arrow{
    border: 1px solid #3A3A3E;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}
.btn-arrow:hover{
    border-color: #fff;
}
.btn-arrow span{
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 28px;
    font-family: "Geist Mono", monospace;
    transition: all .3s;
}
.btn-arrow span:first-child{
    padding: 0 15px;
    color: #535353;
}
.btn-arrow:hover span:first-child{
    color: #fff;
}
.btn-arrow span:last-child{
    width: 28px;
    height: 28px;
    border-left: 1px solid #3A3A3E;
    background-image: url(../images/arrow.svg);
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
}
.btn-arrow:hover span:last-child{
    background-image: url(../images/arrow-light.svg);
    border-left: 1px solid #fff;
}

.text-center, .aligncenter{
    text-align: center;
}
.aligncenter{
    margin: auto;
}
.wp-caption-text{
    text-align: center;
    font-size: 12px;
    color: #8B8F97;
}
hr{
    height: 1px;
    border: 0;
    background: #232325;
    margin: 0 0 30px;
}
.wp-caption{
    max-width: 100%;
    margin-bottom: 30px;
}
p.wp-caption-text{
    font-size: 14px!important;
    font-style: italic;
    margin-top: 5px;
}
code {
  font-family: monospace;
  background-color: #333;
  color: #f5f5f5;
  padding: 10px 15px 20px;
  border-radius: 4px;
  display: block;
  margin-bottom: 20px;
  overflow: auto;
  font-weight: 300;
  line-height: 1;
}
img.aligncenter{
    display: block;
    margin: auto;
}
.overflow-hidden{
	overflow: hidden;
}

@media screen and (max-width: 1199px) {

    h2.title-section{
        font-size: 40px;
    }
    p.subtitle-section{
        font-size: 16px;
    }
}
@media screen and (max-width: 991px) {

}
@media screen and (max-width: 767px) {
    h2.title-section{
        font-size: 28px;
    }
    p.subtitle-section{
        font-size: 14px;
    }
}
@media screen and (max-width: 479px) {
		.section{
		    padding: 40px 0;
		}
    section .btn-light{
        width: 100%;
    }
		.btn-transparent,
		.btn-light{
			min-width: 0;
		}
}

/* header */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all .3s;
		position: relative;
}
header .container:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	border-radius: 10px;
	opacity: .7;
	transition: all .3s;
	z-index: -1;
}
header .container:hover:after{
	opacity: 1;
}
header .btn-light{
    padding: 10px 30px;
}
header nav ul{
    display: flex;
    align-items: center;
    gap: 4px;
}
header nav > ul > li{
    position: relative;
    border-radius: 8px;
}
header nav > ul > li > span,
header nav > ul > li > a{
    line-height: 40px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    position: relative;
    border-radius: 8px;
    padding: 0 13px;
		cursor: pointer;
}

header nav > ul > li > a:visited{
    color: #FFFFFF;
}

header nav > ul > li > .dropdown ul{
    flex-direction: column;
    background: #1E1E1E;
    padding: 8px;
    border-radius: 8px;
}
header nav > ul > li > .dropdown ul li{
    width: 100%;
}
header nav > ul > li > .dropdown ul li a{
    padding: 4px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    color: #fff;
    font-family: "Geist Mono", monospace;
    padding-right: 40px;
    text-transform: capitalize;
}

header nav > ul > li > .dropdown ul li a span.icon-menu{
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header nav > .btn-light{
    display: none;
}
header button,
header nav .btn-dropdown{
    display: none;
}
@media screen and (min-width: 992px){
    header nav > ul > li > .dropdown{
        position: absolute;
        top: 110%;
        width: max-content;
        padding-top: 20px;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
    }
    header nav > ul > li:hover{
        background: #1E1E1E;
    }
    header nav > ul > li:hover > .dropdown{
        visibility: visible;
        top: 100%;
        opacity: 1;
    }
    header nav > ul > li > .dropdown ul li a:hover{
        background: rgba(217, 217, 217, .2);
    }
}
@media screen and (max-width: 1199px) {

}
@media screen and (max-width: 991px) {
    header{
        padding: 20px 10px;
    }
    header .container{
        background: none;
        padding: 0;
				position: static;
    }
    header .container.header-scroll,
		header .container:after{
        background: none;
    }
		header .container > a,
    header .container > span{
        border-radius: 6px;
        padding: 12px 14px;
        background: rgba(1, 1, 1, .4);
        backdrop-filter: blur(12px);
        position: relative;
        z-index: 16;
        transition: all .1s;
    }
    header.open-menu .container > span{
        padding: 12px 0px;
        background: transparent;
    }
    header > .container > .btn-light{
        display: none;
    }
    header nav > .btn-light{
        display: block;
    }
    header button{
        display: block;
        width: 42px;
        height: 42px;
        border-radius: 6px;
        border: 1px solid #5A5A5A;
        background: rgba(1, 1, 1, .4);
        backdrop-filter: blur(12px);
        position: relative;
        z-index: 16;
    }
    header button:after{
        content: '';
        width: 20px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 16px;
        left: 11px;
        transition: all .3s;
    }
    header button:before{
        content: '';
        width: 20px;
        height: 2px;
        background: #fff;
        position: absolute;
        bottom: 16px;
        left: 11px;
        transition: all .3s;
    }
    header.open-menu button:after{
        top: 19px;
        left: 11px;
        transform: rotate(-135deg);
    }
    header.open-menu button:before{
        transform: rotate(135deg);
        bottom: 19px;
        left: 11px;
    }
    header nav{
        position: absolute;
        z-index: 11;
        top: -10px;
        width: 100%;
        left: 0;
        padding: 82px 10px 60px 10px;
        height: 100vh;
        background: rgba(1, 1, 1, .4);
        backdrop-filter: blur(12px);
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
    }

    header.open-menu nav{
        visibility: visible;
        opacity: 1;
        top: 0;
    }
    header nav > ul{
        margin-bottom: 40px;
    }
    header nav ul{
        flex-direction: column;
    }
    header nav > ul > li{
        border-bottom: 1px solid #5A5A5A;
    }
    header nav ul li{
        width: 100%;
        border-radius: 0;
    }
		header nav > ul > li > span,
    header nav ul li a{
        font-size: 16px;
        font-weight: 500;
        display: block;
        border-radius: 0;
        padding: 0;
    }
    header nav ul li .dropdown{
        position: relative;
        display: none;
        visibility: visible;
        opacity: 1;
        width: 100%;
        padding-bottom: 20px;
    }
    header nav > ul > li > .dropdown ul{
        background: none;
        padding: 0;
        gap: 20px;
    }
    header nav > ul > li > .dropdown ul li a span.icon-menu{
        width: 46px;
        height: 46px;
        padding: 0;
        background: #1C1C1E;
    }
    header nav > ul > li > .dropdown ul li a span.icon-menu img{
        width: 30px;
        height: 30px;
    }
    header nav > ul > li > .dropdown ul li a{
        gap: 20px;
    }
    header nav > ul > li > .dropdown ul li a span.icon-menu + span{
        width: calc(100% - 66px);
        line-height: 1.4;
    }
    header nav > ul > li > .dropdown ul li a{
        border-radius: 0;
        border: 0;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
    }
    header nav > ul > li > .dropdown ul li a > span:first-child{
        line-height: 24px;
    }
		header nav > ul > li > span,
    header nav > ul > li > a{
        line-height: 60px;
    }
    header nav .btn-dropdown{
        display: block;
        padding: 0;
        background-color: transparent;
        width: 35px;
        height: 60px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 9;
        background-image: url(../images/arrow-dropdown.svg);
        background-size: 12px;
        background-position: center;
        background-repeat: no-repeat;
        transition: all .3s;
    }
    header nav .btn-dropdown.active{
        transform: rotate(180deg);
    }
}
@media screen and (max-width: 767px) {

}
@media screen and (max-width: 479px) {

}
/* -- header */

/* footer */
.top-footer{
    border-top: 1px solid #3A3A3E;
    padding: 40px 0;
}
.top-footer .container{
    max-width: 996px;
}
.footer-contact-information{
    display: flex;
    flex-wrap: wrap;
    gap:  45px calc((100% - 650px) / 2);
}
.footer-contact-information .item:nth-child(1),
.footer-contact-information .item:nth-child(4){
    width: 290px;
}
.footer-contact-information .item:nth-child(2),
.footer-contact-information .item:nth-child(5){
    width: 180px;
}
.footer-contact-information .item:nth-child(3),
.footer-contact-information .item:nth-child(6){
    width: 180px;
}
.footer-contact-information .item p{
    margin-bottom: 20px;
    font-size: 12px;
    color: #fff;
		font-family: "Geist Mono", monospace;
}
.footer-contact-information .item p:last-child{
    margin-bottom: 0;
}
.footer-contact-information .item p.title{
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    color: #33D0E6;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}
.footer-contact-information .item a{
    color: #fff;
    display: block;
		font-family: "Geist Mono", monospace;
}
.center-footer{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    border-top: 1px solid #3A3A3E;
    padding: 40px 20px;
}
.center-footer > div{
    width: auto;
}
.center-footer p.title,
.center-footer p.title a{
    font-size: 10px;
    font-weight: 600;
    color: #8B8F97;
    text-transform: uppercase;
		font-family: "Geist Mono", monospace;
}
.center-footer p.title{
    margin-bottom: 20px;
}
.center-footer ul li{
    margin-bottom: 10px;
}
.center-footer ul li,
.center-footer ul li a{
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 400;
		font-family: "Geist Mono", monospace;
}
.center-footer .socials{
    width: 180px;
}
.bottom-footer{
    padding: 40px 0;
}
.bottom-footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.bottom-footer-menu{
    display: flex;
    align-items: center;
    gap: 60px;
}
.bottom-footer a,
.bottom-footer p{
    text-transform: uppercase;
    font-family: "Geist Mono", monospace;
    color: #8B8F97;
    width: auto;
		font-size: 10px;
}
footer a:hover{
    opacity: .7;
}
@media screen and (max-width: 1199px) {
    .center-footer{
        gap: 30px;
    }
    .center-footer > div,
    .center-footer .socials{
        width: calc((100% - 90px) / 4);
    }
}
@media screen and (max-width: 991px) {
    .bottom-footer a, .bottom-footer p{
        width: auto;
    }
    .bottom-footer .container{
        justify-content: space-between;
    }
}
@media screen and (max-width: 767px) {
    .center-footer p.title{
        margin-bottom: 0;
    }
    .footer-contact-information{
        gap: 35px 30px;
    }
    .footer-contact-information .item:nth-child(1),
    .footer-contact-information .item:nth-child(2),
    .footer-contact-information .item:nth-child(3),
    .footer-contact-information .item:nth-child(4),
    .footer-contact-information .item:nth-child(5){
        width: calc((100% - 30px) / 2);
    }
    .center-footer{
        gap: 35px;
    }
    .center-footer > div,
    .center-footer .socials{
        width: 100%;
    }
    .center-footer .logo{
        margin-bottom: 30px;
    }
    .center-footer ul li a{
        display: block;
    }
    .center-footer .services ul,
    .center-footer .portfolio ul,
    .center-footer .company ul,
    .center-footer .socials ul{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    .center-footer .services ul li,
    .center-footer .portfolio ul li,
    .center-footer .company ul li,
    .center-footer .socials ul li{
        width: 100%;
        margin-bottom: 0;
    }
    .bottom-footer .container{
        flex-wrap: wrap;
        gap: 30px;
    }
    .bottom-footer p{
        width: 100%;
        font-size: 10px;
    }
    .bottom-footer p{
        order: 2;
        text-align: center;
    }
    .bottom-footer {
        padding: 15px 0;
    }
    .bottom-footer-menu{
        width: 100%;
        justify-content: center;
    }
}
@media screen and (max-width: 479px) {
    .footer-contact-information .item:nth-child(1), .footer-contact-information .item:nth-child(2), .footer-contact-information .item:nth-child(3), .footer-contact-information .item:nth-child(4), .footer-contact-information .item:nth-child(5){
        width: 100%;
    }
}
/* -- footer */

/* form-plvision */
.form-plvision .form-group{
    margin-bottom: 40px;
}
.form-plvision .form-group label,
.form-plvision .form-group .form-group-label{
    text-transform: uppercase;
    font-size: 10px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}
.form-plvision .form-group textarea,
.form-plvision .form-group input{
    font-family: "Exo 2", sans-serif;
    width: 100%;
    bottom: 0;
    list-style: none;
    line-height: 24px;
    border: 0;
    border-bottom: 1px solid #3A3A3E;
    background: none;
    font-size: 12px;
    color: #fff;
    transition: all .3s;
}
.form-plvision .form-group input.error{
    border-bottom: 1px solid #FF4646;
}
.form-plvision .form-group input:hover{
    border-bottom: 1px solid #8C8C8C;
}
.form-plvision .form-group input::-webkit-input-placeholder,.form-plvision .form-group input:hover::-webkit-input-placeholder {
    color:#8B8F97;
}
.form-plvision .form-group input::-moz-placeholder, .form-plvision .form-group input:hover::-moz-placeholder{
    color:#8B8F97;
}
.form-plvision .form-group input:-moz-placeholder, .form-plvision .form-group input:hover:-moz-placeholder{
    color:#8B8F97;
}
.form-plvision .form-group input:-ms-input-placeholder, .form-plvision .form-group input:hover:-ms-input-placeholder{
    color:#8B8F97;
}

.form-plvision .form-group textarea::-webkit-input-placeholder,
.form-plvision .form-group textarea:hover::-webkit-input-placeholder {
    color:#8B8F97;
}
.form-plvision .form-group textarea::-moz-placeholder, .form-plvision .form-group textarea:hover::-moz-placeholder{
    color:#8B8F97;
}
.form-plvision .form-group textarea:-moz-placeholder, .form-plvision .form-group textarea:hover:-moz-placeholder{
    color:#8B8F97;
}
.form-plvision .form-group textarea:-ms-input-placeholder, .form-plvision .form-group textarea:hover:-ms-input-placeholder{
    color:#8B8F97;
}

.form-plvision .form-group textarea{
    min-height: 80px;
    border: 1px solid #3A3A3E;
    border-radius: 5px;
    padding: 15px;
    resize: none;
}
.form-plvision .form-group textarea:hover{
    border: 1px solid #8C8C8C;
}
.form-group-with-checkbox input[type="checkbox"]{
    display: none;
}
.form-group-with-checkbox input[type="checkbox"] + label{
    position: relative;
    color: #8B8F97;
    font-size: 10px;
    padding-left: 26px;
    line-height: 16px;
    cursor: pointer;
    transition: all .3s;
}
.form-group-with-checkbox input[type="checkbox"] + label a{
    color: #8B8F97;
    text-decoration: underline;
}
.form-group-with-checkbox input[type="checkbox"] + label:hover{
    color: #fff;
}
.form-group-with-checkbox input[type="checkbox"] + label:hover a{
    color: #fff;
}
.form-group-with-checkbox input[type="checkbox"] + label:hover a:hover{
    opacity: .7;
}
.form-group-with-checkbox input[type="checkbox"] + label:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid #3A3A3E;
		transition: all .3s;
}
.form-group-with-checkbox input[type="checkbox"].error + label:after{
	border-color: #FF4646;
}
.form-group-with-checkbox input[type="checkbox"]:checked + label:after{
    border: 1px solid #fff;
}
.form-group-with-checkbox input[type="checkbox"]:checked + label:before{
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #fff;
}
.form-plvision button{
    min-width: 150px;
    text-align: center;
}
form .form-error{
	padding: 25px 0 10px;
  font-size: 14px;
	color: #FF4646;
	font-weight: 600;
}
form .form-success{
	padding: 25px 0 10px;
  font-size: 14px;
	color: #33D0E6;
	font-weight: 600;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #111 inset;
  box-shadow: 0 0 0 1000px #111 inset;
}
@media screen and (max-width: 1199px) {

}
@media screen and (max-width: 991px) {

}
@media screen and (max-width: 767px) {

}
@media screen and (max-width: 479px) {

}
/* -- form-plvision */

/* swiper slider pagination */
.swiper-pagination{
    position: relative;
}
.swiper-pagination-bullet{
    background: #676767;
    width: 4px;
    height: 4px;
    transition: all .3s;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    height: 4px;
    width: 18px;
    background: #D9D9D9;
    border-radius: 13px;
}
/* -- swiper slider pagination */

/* page */
.section-page{
    padding: 150px 0 100px;
}
.section-page .container{
    max-width: 712px;
}
.section-page h1{
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-family: "Geist Mono", monospace;
    color: #535353;
    font-weight: 500;
    margin-bottom: 40px;
}
.section-page h2{
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Geist Mono", monospace;
    line-height: 1.5;
}
.section-page h2:first-of-type{
    font-size: 50px;
    color: #F4F5F7;
    font-weight: 500;
    text-transform: none;
    font-family: "Exo 2", sans-serif;
}
.section-page ul, ol{
    padding-left: 20px;
    margin-bottom: 30px;
}
.section-page ul li{
    list-style: disc;
}
.section-page ol li{
    list-style: decimal;
}
.section-page li,
.section-page p{
    font-size: 18px;
    color: #8B8F97;
    margin-bottom: 30px;
}
.section-page a{
    color: #8B8F97;
    text-decoration: underline;
}
.section-page a:hover{
    color: #fff;
}
.section-page table th,
.section-page table td{
    color: #8B8F97;
}
.section-page table th{
    color: #fff;
    font-family: "Geist Mono", monospace!important;
    text-transform: uppercase;
    font-weight: 400;
}
@media screen and (max-width: 1199px){
    .section-page{
        padding: 100px 0;
    }
}
@media screen and (max-width: 991px){
    .section-page h2:first-of-type{
        font-size: 40px;
    }
}
@media screen and (max-width: 767px){

}
@media screen and (max-width: 479px){
    .section-page h2:first-of-type{
        font-size: 30px;
    }
    .section-page li,
    .section-page p{
        font-size: 14px;
        margin-bottom: 15px;
    }
    hr{
        margin-top: 30px;
    }
}
/* -- page */


/* Cookie Page */
.CookieDeclarationDialogText{
    font-size: 50px!important;
    color: #F4F5F7!important;
    font-weight: 500!important;
    text-transform: none!important;
    font-family: "Exo 2", sans-serif!important;
}
.CookieDeclarationTableCell{
    border-color: #232325!important;
    font-size: 11px;
    padding: 10px 5px!important;
}
table tr:last-child td.CookieDeclarationTableCell{
    border: 0;
}
.CookieDeclarationTableHeader{
    border-color: #232325!important;
    font-size: 10px;
    padding: 10px 5px!important;
}
.CookieDeclarationTable{
    margin-bottom: 0!important;
}
.CookieDeclarationTypeHeader{
    font-size: 16px!important;
    color: #fff!important;
    margin-bottom: 30px!important;
    margin-top: 20px!important;
    text-transform: uppercase!important;
    font-weight: 500!important;
    font-family: "Geist Mono", monospace!important;
}
#CookieDeclarationUserStatusLabelOn{
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}
.CookieDeclarationType{
    border-radius: 8px;
    border-color: #232325!important;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
    .CookieDeclarationDialogText{
        font-size: 40px!important;
    }
}
@media screen and (max-width: 767px){

}
@media screen and (max-width: 479px){
    .CookieDeclarationDialogText{
        font-size: 30px!important;
    }
    .CookieDeclarationTypeHeader{
        font-size: 14px!important;
    }
}
/* -- Cookie Page */

/* section-contact-us */
.section-contact-us{
	position: relative;
}
.section-contact-us:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../images/section-line.svg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 1px;
}
/* -- section-contact-us */

/* modal */
.modal{
	position: fixed;
	visibility: hidden;
	opacity: 0;
	z-index: -99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.95);
	padding: 15px;
	transition: opacity .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal.open{
	visibility: visible;
	opacity: 1;
	z-index: 999;
}
.modal .close{
	width: 32px;
	height: 32px;
	background-image: url(../images/icon-close.svg);
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	transition: all .3s;
}
.modal .close:hover{
	opacity: .7;
}
.modal .content{
	width: 100%;
	max-width: 596px;
	margin: auto;
}
.modal .title-section{
	font-size: 24px;
  color: #F4F5F7;
  text-align: center;
  font-weight: 500;
	margin-bottom: 30px;
}
@media screen and (max-width: 991px){
	.modal{
		justify-content: flex-start;
		padding: 60px 15px;
	}
}
@media screen and (max-width: 767px){

}
@media screen and (max-width: 479px){

}
/* -- modal */
