/*!
Theme Name: alkua
Theme URI: http://underscores.me/
Author: Preoni Oy
Tested up to: 5.4
Requires PHP: 5.6
*/


/*** UNIVERSAL ***/
body {
    background:var(--white);
    opacity: 0;
}
* {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
	margin: 0;
}
img {
    display: block;
}
a:focus, button:focus, input:focus {
	outline:none;
}
:root {    
    --black: #000000;
    --dark: #0E0E0E;
    --white: #ffffff;
    --light: #f7f7f7;
    --grey: #cdcdcd;
    --green: #6C9386;
    --dark-green: #3f4e51;
    --light-green: #97C4B8;
    --beige: #ddd7c9;
    --red: #be1e2d;
    --dark-red: #9f1b27;
}

/*** TYPOGRAPHY ***/
.site-content ul, .fixed-width-content ul {
    padding-left: 20px;
}
p, a, em, strong, span, li, label, button, h1.page-title, nav, select,div {
    font-family: 'Inter', sans-serif;
}
p {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.2px;
    font-weight: 400;
    color:var(--dark);
}
p strong {
    color:var(--black);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-top:0;
    font-family: 'Literata', serif;
}
h2 {
    font-size:56px;
    line-height: 72px;
}
h3 {
    font-size: 32px;
}
h4 {
    font-size: 26px;
    margin-bottom: 16px;
}
img {
    width:100%;
}
.post, .page {
	margin:0;
}


/*** HEADER ***/
#headercontainer {
	position: fixed;
	height:90px;
    background:transparent;
	width:100%;
	max-width: 100%;
	z-index: 9999;
    transition: 0.2s all ease-in-out;
}
.site-header {
    max-width: calc(100% - 80px);
    margin:0 auto;
	position: relative;
	height:90px;
    transition: 0.2s all ease-in-out;
}
.site-title {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.site-title a img {
    height: 60px;
    width:auto;
    transition: 0.2s all ease-in-out;
}

.header-active {
    background:var(--white) !important;
    height: 75px !important;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
}
.site-title-active img {
    height: 50px !important;
}
.site-header-active {    
    height: 75px !important;
}


/*** MAIN MENU ***/
.main-navigation {
    position: absolute;
    right:42px;
    top:50%;
    transform: translateY(-50%);
}
.main-navigation ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    margin: 0 6px;
    cursor:pointer;
}
.main-navigation ul li a {  
    text-decoration: none;
    color:var(--black);
    padding:8px 22px;
    font-weight:500;
    font-size:15px;
    letter-spacing: 0.2px;    
    position: relative;
    transition: 0.2s all ease-in-out;
    border-radius: 50px;
}
.main-navigation ul li a:hover {  
    background: var(--red) !important;
    color:var(--white) !important;
}
.current-menu-item a {
    background: var(--red) !important;
    color:var(--white) !important;
}
.current-menu-item a:hover {
    background:var(--dark-red) !important;
}


.facebook {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 7.5px;
    border-radius: 50%;
    transition: 0.2s all ease-in-out;
}
.facebook img {
    width:20px;
    height: auto;
}
.facebook:hover {
    background:var(--red);
}
/*** MOBILE MENU ***/
.mobile-menu {  
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
    transition: all 300ms ease-in-out;
}
#nav-icon {
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 100; 
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: var(--dark);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
    top: 0px;
}
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 8px;
}
#nav-icon span:nth-child(4) {
    top: 16px;
    width:16px;
}
#nav-icon.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
}
#nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
}
#nav-icon.open span {
}


/*** SIDENAV ***/
.overlay {
    height: 100%;
    width: 400px;
    /*max-width:100%;*/
    position: fixed;
    z-index: 101;
    top: 0;
    left:-400px;
    /*background: rgb(63 78 81 / 80%) !important;    */
    /*background:var(--white);*/
    /*backdrop-filter: blur(10px);*/
    visibility: hidden;
    transition: 0.3s;
}
.overlay-content {
    position: absolute;
    top: 90px;
    left: 0;
    width: 400px;
    /*transform: translateX(-50%);*/
    padding: 60px;
    text-align: left;
    background: var(--dark-green);
    transition: 0.2s all ease-in-out;
}
.overlay-content-active {
    top:75px !important;
}
.overlay ul {
    padding:0;
    margin:0;
}
.overlay ul li {
    padding:0;
    margin:0 0 10px 0;
    cursor:pointer;
    list-style-type: none;
    position: relative;
}
.overlay ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color:var(--white);
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 36px;
    font-weight: 500;
    padding:10px 0px;
    transition: 0.2s all ease-in-out;
    font-family: 'Literata', serif;
}
.overlay ul li a:after {
    content: '→';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    transition: 0.2s all ease-in-out;
    opacity: 0;
}
.overlay ul li a:hover:after {
    left: calc(100% + 10px) !important;
    opacity: 1 !important;
}
.overlay ul ul {
    display: none !important;
}
.overlay .current-menu-item a {
    padding: 10px 20px;
    color: var(--dark);
}
.open-menu {
    left:0;
    visibility: visible;
}



/*** BANNER ***/
.banner-container {
	position: relative;
	height:100vh;
}
.banner-content {
    width:100%;
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.banner-content h1 {
	font-size: 64px;
	line-height: 78px;
    margin-bottom:0px;
    color:var(--black);
    margin:0;
}
.banner-content h3 {
    margin-top:20px;
    margin-bottom:20px;
	font-size: 36px;
	line-height: 48px;
    font-weight: 400;
	color:var(--black);
}
.banner-content p {
    color:var(--black);
    margin-top:30px;
}
.cta {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 16px 40px;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    font-family: 'Literata', serif;
    transition: 0.2s all ease-in-out;
}
.cta:hover {
    background:var(--red);
}
.banner-contact {
    position: absolute;
    left: 45%;
    bottom: 0;
    background: var(--dark-green);
    padding: 20px;
    text-align: center;
    width: 35%;
}
.banner-contact p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color:var(--white);
    font-family: 'Literata', serif;
}
.banner-arrow {
    position: absolute;
    background:var(--red);
    color:var(--black);
    bottom:0;
    right: 0;
    padding: 20px;
    text-align: center;
    width: 20%;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
}
.banner-arrow:hover {
    background:var(--dark-red);
}
.banner-arrow p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Literata', serif;
    color:var(--white);
}
.banner-arrow p span {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 0;
    position: relative;
    left: 8px;
    top: 3px;
}





/*** SUB PAGE BANNER ***/


/*** CONTENT ***/
.white-container {
	background:var(--white);
    position: relative;
}

.light-container {
	background:var(--light);
    position: relative;
}
.dark-container {
    background:var(--dark);
    position: relative;
}
.red-container {
    background:var(--red);
    position: relative;
}
.dark-green-container {
    background:var(--dark-green);
    position: relative;
}


.container {
    position: relative;
}
.site-content {
    padding:140px 0;
	margin:0 auto;
}
.padding-bottom {
    padding-bottom: 240px !important;
}
.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.align-top {
    align-items: flex-start;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
.flex-80 {
    width:80%;
    position: relative;
}
.flex-60 {
    width:60%;
    position: relative;
}
.flex-40 {
    width:40%;
    position: relative;
}
.flex-20 {
    width:20%;
}
.image-overlay {
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index: 1;
}


.before-element {
    position: relative;
}
.before-element:before {
    content:'';
    background:rgba(0,0,0,0.05);
    position: absolute;
    left:20%;
    top:0;
    height:100%;
    width:25%;
    z-index: 1;
}
.banner-container.before-element:before {
    /*background: rgba(255,255,255,0.4);*/
    background:url('https://www.seppalanmajakka.fi/wp-content/uploads/2022/11/seppalan-majakka.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
}


.flex-80 img {
    width:100%;
    height:65vh;
    min-height: 500px;
    object-fit: cover;
}
.flex-60-content {
    position: relative;
    margin-top:-100px;
    padding:120px;
    padding-right: 30%;
    background:var(--white);
    z-index: 2;
}
.flex-60-content h2 {
    color:var(--black);
}
.flex-60-content p {
    color:var(--dark-green);
}


.basic-box {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
.basic-box:last-of-type {
    margin-bottom: 0;
}
.basic-box-image {
    width:33.33%;
    position: relative;
}
.basic-box-image img {    
    width:100%;
    height:100%;
    object-fit: cover;
}
p.varattu {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--red);
    color: var(--white);
    padding: 6px 20px;
    font-size: 16px;
    margin: 0;
}
.single p.varattu {
    bottom:0;
    top:unset;
    left:calc(45% - 116px);
}
.basic-box-content  {
    padding:120px;
    background: var(--white);
    width:66.66%;
}
.basic-box-content p:last-of-type {
    margin-bottom: 0;
}
.basic-box-content h3 a {
    color: var(--dark);
    text-decoration: none;
    font-family: 'Literata', serif;
}




/*** SINGLE POST ***/
.single #headercontainer {
    background: var(--white);
}
.single .before-element:before {
    display: none;
}
.single .banner-content {
    background: var(--dark-green);
    padding: 60px;
    bottom: 0;
    top: unset;
    transform: none;
    left: 45%;
}
.single .banner-content h1 {
    font-size: 48px;
    line-height: 68px;
    color: var(--white);
}
p.banner-price {
    color: var(--white);
    background: var(--red);
    display: inline-block;
    padding: 20px;
    font-weight: bold;
    margin-bottom: 0;
    margin-top:20px !important;
}
.info-container {
    margin: 80px 0;
}
.info-content.flex-container {
    padding: 0 16px; 
}
.info-content.flex-container:nth-of-type(odd) {
    background: var(--light);
}
.label {
    width:calc(50% - 20px);
}
.data {
    width:calc(50% - 20px);
}

.gallery-container {  
    /*background: var(--light); 
    padding: 60px;*/
    margin-bottom: 80px;
}
.gallery-container ul {
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin:0;
  padding:0;
}
.gallery-container li {
  width: calc(25% - 10px);      
  margin-bottom:13.3333px;
  margin-right:13.3333px;
  list-style-type:none;
  position: relative;
  overflow:hidden;
}
.gallery-container li:nth-of-type(4n) {
    margin-right: 0;
}
.gallery-container img {
  width:100%;
  height:200px;
  object-fit: cover;
  transition: 0.2s all ease-in-out;
}
.image-overlay {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background: linear-gradient(rgb(63 78 81 / 60%), rgb(63 78 81 / 60%));  
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
img.zoom {
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.gallery-container li:hover .image-overlay {
  opacity: 1;
}
.gallery-container li:hover .gallery-image {
  transform: scale(1.1)
}
p.nakyvilla svg {
    width: 22px;
    margin-right: 6px;
    position: relative;
    top: 4px;
}
p.nakyvilla svg path {
    fill: var(--light-green);
}
p.ei-nakyvilla svg {
    width: 22px;
    margin-right: 6px;
    position: relative;
    top: 4px;
}
p.ei-nakyvilla svg path {
    fill: red;
}

.sketchfab-container {
    margin-bottom: 80px;
}
.sketchfab-embed-wrapper{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; 
}
.sketchfab-embed-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.map-container {
    margin-bottom: 80px;
}
.postid-122 .sisustus {
    display: none;
}


/*** SUB PAGES ***/
.sub-page-banner-container {
    background:var(--dark-green);    
}
.sub-page-banner-container h1 {
    color:var(--white);    
}
.sub-page-banner-container p {
    color:var(--white);
}
.page-template-kohteet #headercontainer {
    background: var(--white) !important;
}
.page-template-sub-page #headercontainer {
    background: var(--white) !important;
}
.page-template-kohteet .main-content {
    padding-top: 80px;
}
.page-template-sub-page .main-content {
    padding-top: 80px;
}
.sub-page-banner-container {
    height: 400px;
}
.sub-page-banner-container .banner-content {
    left: 20%;
}



/*** CONTACT FORM ***/
.wpforms-container input[type=text], .wpforms-container input[type=email] {
    height: 60px !important;
    background:var(--light) !important;
    border:none !important; 
    border-radius:0px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding-left:16px !important;
}
.wpforms-container textarea {
    height: 250px !important;
    background:var(--light) !important;
    border:none !important; 
    border-radius:0px !important; 
    padding-top:18px !important; 
    font-size: 16px !important;
    font-weight: 500 !important;
    padding-left:16px !important;
}
.wpforms-container button {
    display: inline-block !important;
    margin-top: 0px !important;
    background: var(--red) !important;
    padding: 20px 60px 20px 60px !important;
    text-decoration: none !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    font-family: 'Literata', serif !important;
    border:none !important;
    transition: all .2s ease-in-out;
}
.wpforms-container button:hover {
    background:var(--dark-red) !important;

}
.wpforms-one-half {
    width: calc(50% - 10px) !important;
}
#wpforms-97-field_4-container {
    margin-left: 20px;
}



/*** FOOTER ***/
.footercontainer {
    background:var(--dark-green);
}
.footercontainer .flex-50 {
    width:calc(50% - 20px);
}
.footercontainer h4 {
    margin-bottom: 32px;
    color:var(--white);
    font-weight: 400;
}
.footercontainer ul {
    margin:0;
    padding:0;
    list-style-type: none;
}
.footercontainer ul li {
    font-size:14px;
    line-height: 28px;
    color:var(--white);    
}
.footercontainer ul li a {
    color:var(--white);
    text-decoration: none;
}

.smallprint {
    text-align: center;
    margin-top: 80px;
}
.smallprint p, .smallprint p a {
    color: var(--white);
    text-decoration: none;
	font-size:14px;
    margin-bottom: 0;
}
.footercontainer .site-content {
    padding-bottom: 60px;
}


/*** MEDIA QUERIES ***/
@media(max-width:1920px){
    .banner-content h1 {
        font-size: 62px;
        line-height: 78px;
    }
    h2 {
        font-size: 46px;
        line-height: 62px;
    }

}

@media(max-width:1650px){ 
    .banner-content {
        left:45%;
    }
    .banner-content {
        max-width: 600px;
    }
    .banner-content h1 {
        font-size: 52px;
        line-height: 68px;
    }  
    .single .banner-content {
        left:40%;
        width:60%;
        max-width: unset;
    }
    .single p.varattu {
        left:unset;
        right:60%;
    }
    p {
        font-size:18px;
        line-height: 34px;
    }
    .flex-60 {
        width: 70%;
    }
    .flex-40 {
        width: 30%;
    }
    .flex-20 {
        width: 15%;
    }
    .before-element:before {     
        left: 15%;
    }
    .banner-contact {     
        left: 40%;
        width: 30%;
        padding:10px;
    }
    .banner-arrow {
        width: 30%;
        padding:10px;
    }
    .flex-60-content {
        padding-right: 20%;
    }    
    .sub-page-banner-container .banner-content {
        left: 15%;
    }
}

@media(max-width:1450px){  
    .banner-content h1 {
        font-size: 46px;
        line-height: 60px;
    }  
    .banner-content h3 {
        font-size: 28px;
        line-height: 40px;
    }
    h2 {
        font-size: 42px;
        line-height: 56px;
    }
    h3 {
        font-size: 28px;
        line-height: 40px;
    }
    .site-content {
        padding:100px 0;
    }  

}

@media(max-width:1367px){ 

}

@media(max-width:1200px){
    .before-element:before {
        display: none;
    }
    .banner-content {
        left: 50%;
        width: 100%;
        transform: translate(-50%,-50%);
        /*padding:40px;*/
        max-width: 80%;
    }
    .banner-contact {
        left: 0;
        width: 50%;
    }
    .single .banner-content {
        left: 0;        
        width: 100%;
    }
    .single p.varattu {
        z-index: 3;
        left: 50%;
        transform: translateX(-50%);
        right: unset;
        bottom: -20px;
    }
    .banner-arrow {
        width: 50%;
    }
    .flex-60-content {
        padding:80px;
    }
    .basic-box-content {
        padding:80px;
    }
    .sub-page-banner-container .banner-content {
        transform: translateY(-50%);
        left: 15%;
        padding: 0;
    }
}

@media(max-width:991px){
    .main-navigation {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .facebook {
        right: 50px;        
    }
    .site-content {
        padding:60px 0;
    }
    .banner-content {
        max-width: calc(100% - 120px);
    }
    .flex-60-content {
        padding:60px;
    }
    .basic-box-content {
        padding:60px;
    }
    .flex-20 {
        width: 60px;
    }
    .flex-60 {
        width: calc(100% - 120px);
    }
    .page-template-sub-page .flex-60 {
        width: calc(100% - 120px);
    }
    .page-template-sub-page .banner-content, .page-template-kohteet .banner-content {
        width: calc(100% - 120px);   
        padding:0;
        left:60px;
    }
    .flex-40 {
        width: 60px;
    }
    .basic-box-image {
        width: 100%;
    }
    .basic-box-content {     
        width: 100%;
    }
    .flex-80 {
        width:calc(100% - 60px);
    }
    .single .banner-content h1 {
        font-size: 36px;
        line-height: 58px;     
    }
    .single-post .flex-20 {
        width:0;
    }
    .single-post .flex-60 {
        margin: 0 auto;
    }
    .gallery-container img {
        height:160px;
    }
    .map-container iframe {
        height: 500px;
    }
    .banner-content h1 {
        font-size: 36px;
        line-height: 52px;
    }
    .banner-content h3 {
        font-size: 22px;
        line-height: 34px;
    }
    h2 {
        font-size: 36px;
        line-height: 52px;
    }
    h3 {
        font-size: 26px;
        line-height: 38px;
    }
    p {
        font-size:16px;
        line-height: 30px;
    }
    .basic-box-content {
        padding:80px;
    }
}

@media(max-width:768px){
    .single .banner-container {
        height:60vh;
    }
    .single .banner-content {
        padding:40px;
    }
    .single .banner-content h1 {
        font-size: 32px;
        line-height: 54px;     
    }
    .label {
        width: calc(40% - 20px);
    }
    .data {
        width: calc(60% - 20px);
    }
    .gallery-container img {
        height:140px;
    }
    .map-container iframe {
        height: 400px;
    }
    .banner-contact p {
        font-size: 16px;
    }
    .banner-arrow p {
        font-size: 16px;     
    }
    .banner-contact {     
        bottom: 78px;
        width: 100%;
    }
    .banner-arrow {
        width: 100%;
    }
    h2 {
        font-size: 28px;
        line-height: 42px;
    }
    h3 {
        font-size: 22px;
        line-height: 34px;
    }
    p {
        font-size:14px;
        line-height: 26px;
    }
    .wpforms-container input[type=text], .wpforms-container input[type=email] {
        font-size: 14px !important;
    }
    .wpforms-container textarea {
        font-size: 14px !important;
    }
    .padding-bottom {
        padding-bottom: 160px !important;
    }
    .overlay-content {     
        padding:40px;
    }
    .gallery-container li {
        width: calc(50% - 20px);     
    }
    .gallery-container li:nth-of-type(even) {
        margin-right: 0 !important;
    }

}


@media(max-width:520px){
    .site-header {
        max-width: calc(100% - 40px);     
    }
    .site-content {
        padding: 40px 0;
    }
    .banner-content {     
        transform: translateX(-50%);     
        bottom: 140px;
        top: unset;
        max-width: calc(100% - 80px);
    }
    .banner-content h1 {
        font-size: 28px;
        line-height: 40px;
    }    
    .banner-content h3 {
        font-size: 20px;
        line-height: 32px;
    }
    .banner-content p {
        font-weight: 500;
        margin-top:0;
    }
    .banner-contact{
        padding:0;
        bottom:58px;
    }
    .banner-arrow {
        padding:0;
    }
    h2 {
        font-size: 24px;
        line-height: 36px;
    }
    .cta {     
        padding: 12px 30px;        
        font-size: 14px;
        margin-top:20px;
    }
    .padding-bottom {
        padding-bottom: 120px !important;
    }
    .flex-20 {
        width: 40px;
    }
    .flex-60 {
        width: calc(100% - 40px);
    }
    .page-template-sub-page .flex-60 {
        width: calc(100% - 80px);
    }
    .page-template-sub-page .banner-content, .page-template-kohteet .banner-content {
        width: calc(100% - 80px);   
    }
    .single .banner-content {
        padding:20px;
    }
    .single .banner-content h1 {
        font-size: 26px;
        line-height: 42px;     
    }
    .gallery-container img {
        height:100px;
    }
    .map-container iframe {
        height: 300px;
    }
    .flex-80 img {     
        height: 50vh;
        min-height: 300px;        
    }
    .flex-40 {
        width: 40px;
    }
    .flex-60-content {
        padding: 40px;
    }
    .basic-box {     
        width: calc(100% - 40px);
    }
    .basic-box-content {
        padding: 40px;
    }
    .wpforms-container input[type=text], .wpforms-container input[type=email] {
        height:50px !important;
    }
    .footercontainer .flex-50 {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media(max-width:520px){
    
    .page-id-26 .banner-content {     
             
        bottom: 20px !important;
		top: 50%;
        
        
    }
    
}

@media(max-width:520px){
    
    .page-id-232 .banner-content {     
             
        bottom: 20px !important;
		top: 50%;
        
        
    }
    
}

@media(max-width:420px){

}

@media(max-width:360px){

}