body{
	background: black;
}
.header-pc {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 0 solid transparent;
}

.header-pc {
	height: 100px;
}

.logo {
	width: 100px;
	height: 100px;
	object-fit: scale-down;
}

.p-menu {
	display: flex;
	align-items: center;
	list-style: none;
}

.hov-btn {
	display: flex;
	align-items: center;
	margin: 0 20px;
    height: 100px;
}

.p-menu a {
	color: white;
	font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.04em;
    font-size: 13px;
    transition: 0.3s;
    padding: 7px;
}

.hov-btn a:hover {
	background: #f1f1f1;
	color: black;
}

.header-pc-2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.icon-menu {
    padding-left: 23px;
    height: 100%;
    cursor: pointer;
    border-left: 2px solid #fff;
}

.searchform {
    display: flex;
    align-items: center;
    border: 1px solid gainsboro;
}

.csw-search-submit {
    border: none;
    color: black;
    font-size: 18px;
    width: 40px;
    height: 45px;
}

.search-field {
	font-family: Montserrat, sans-serif;
	border: none;
    font-size: 14px;
    padding-left: 10px;
}

.menu-item-19 {
	position: relative;
	transition: 0.3s;
}

.sub-menu {
	display: none;
	position: absolute;
	top: 90px;
    right: -20px;
    list-style: none;
    background: black;
    width: 200px;
    padding: 20px 25px;
    text-align: right;
    z-index: 3;
}

.sub-menu li {
	padding: 5px 0;
	transition: 0.3s;
}

.sub-menu a {
	color: white;
	font-size: 13px;
    font-style: italic;
    font-weight: 300;
}

.sub-menu a:hover {
	background: unset;
}

.sub-menu li:hover {
	background: #f1f1f1;
}

.sub-menu li:hover a {
	color: black;
	font-weight: 700;
	transition: left .2s ease-out, right .2s ease-out;
}

.menu-item-19:hover .sub-menu {
	display: block;
}

.m-menu,
.header-mobile {
	display: none;
}

@media(max-width: 991px) {
	.p-menu {
		display: none;
	}

	.m-menu,
	.header-mobile {
		display: block;
	}

	.icon-bar {
		margin-right: 23px;
	}

	.icon-bar svg {
		width: 25px;
        height: 25px;
	}

	.header-mobile {
		display: none;
		background: white;
        font-size: 14px;
        color: black;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom: 1px solid #e1e1e1;
        padding: 20px 0;
	}

	.m-menu-2 {
		list-style: none;
	}

	.hov-btn {
		display: block;
	    align-items: unset;
	    margin: 0;
	    height: unset;
	    padding: 10px 0;
	}

	.menu-item-19 {
		position: relative;
	}

	.arrow-dropdown {
		position: absolute;
        right: 0;
        font-size: 15px;
	}

	.sub-menu {
        position: unset;
        margin-top: 20px;
        width: 100%;
        text-align: left;
	}

	.sub-menu li {
		padding: 10px;
	}
}

@media(max-width: 450px) {
	.header-pc {
	    height: 70px;
	}

	.header-mobile {
		font-size: 13px;
	}

	.logo {
		width: 35px;
		height: 35px;
	}

	.icon-bar svg,
	.icon-menu svg {
        width: 15px;
        height: 15px;
    }
}

/*footer*/

.bg-footer {
	background: #080808;
	padding: 76px 0 53px;
    border-top: 0 solid #e1e1e1;
    margin-top: 80px;
}

.title-footer {
	font-size: 16px;
	color: white;
	font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-footer {
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 400;
    color: #ccc;
}

.list-contact {
	list-style: none;
	margin-top: 15px;
}

.list-contact i {
	padding-right: 10px;
}

.list-contact li,
.menu-blog li {
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 400;
    color: #ccc;
    padding-bottom: 10px;
}

.menu-blog,
.list-social {
	list-style: none;
}

.list-social {
	display: flex;
    align-items: center;
}

.list-social li {
	padding-right: 10px;
}

.list-social a {
    color: white;
    font-size: 16px;
}

.bg-footer-2 {
	background: black;
	padding: 19px 0 22px;
    border-top: 0 solid #e1e1e1;
}

.bg-footer-2 p {
	font-size: 11px;
	color: #ccc;
	text-align: center;
}

.black-top {
	display: flex;
	align-items: center;
	justify-content: center;
	background: black;
	color: white;
    font-size: 15px;
    width: 35px;
    height: 35px;
	position: fixed;
	bottom: 10px;
	right: 10px;
	border: 1px solid black;
	z-index: 10;
	transition: color .2s ease-out, 
	background-color .2s ease-out, 
	border-color .2s ease-out;
}

.black-top:hover {
	background: white;
	color: black;
}

@media(max-width: 991px) {
	.list-contact,
	.menu-blog {
		margin-bottom: 20px;
	}
}

@media(max-width: 450px) {
	.list-contact li, 
	.menu-blog li,
	.text-footer {
		font-size: 14px;
	}

	.black-top {
		display: none;
	}
}