@import url('fonts.css');
*,
*::after,
*::before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --titleFont: "Gotham XNarrow", sans-serif;
    --textFont: "Neu", sans-serif;
    --yellow: #e4bc5c 
}

body {
    padding: 0;
    margin: 0;
    line-height: 1.618;
    font-family: var(--textFont);
}

h1,
h2 {
    margin: 0;
    font-family: var(--titleFont);
    line-height: 1;
}

h1 {
    font-size: 6em;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1::after {
    content: attr(data-title);
    position: absolute;
    top: 0;
    transform: scale(1.5);
    opacity: .25;
    pointer-events: none;
}

h2 {
    font-size: 2.25em;
    color: #fff;
		font-weight:bold;
}

/*
ul,
li {
    list-style: none;
    padding: 0;
    margin: 0
}
*/

a {
    color: inherit;
    text-decoration: none;
}

.flex-area {
    display: flex;
    flex-direction: column;
}


/* Start */

body {
    background: url(background.jpeg);
    background-size: 1920px;
    background-position: center top;
    background-attachment: fixed;
    background-color: transparent;
		
    color: #fff
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: -2;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: -1;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
}


/* Header */
header {
	
	display:none;
}
header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0em 0;
		margin-top:25px;
}

header nav ul {
    display: block;
    /* flex-direction: row; */
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline-flex;
}

header nav ul li:not(:first-child) {
    margin-left: 1em
}

header nav ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.25em 2em;
    transition: all 200ms ease-in-out;
    background: #d8ad48;
    color: #fff;
    border-radius: 15px;
}
/*
header nav ul li a>* {
    transform: skew(11deg)
}
*/
/*
header nav ul li a:hover {
    letter-spacing: 1px;
}
*/
header nav ul li a.active {
    background: #fff;
    color: #000
}

header nav ul li svg {
    width: 1em;
    margin-left: 1em
}

.pageskin {
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 625px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -3;
    
    background-size: 100%;
    : 100% 50%; background-position-y:50% 
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-color {
    color: var(--yellow)
}

.logo img {
    width: 40%;
}

@media screen and (max-width:900px) {
	.logo img {
		width: 100%;
	}
}

/* Content */

.content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.content p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin: 1em auto 0 auto;
    max-width: 50%;
}

.login-site {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: transparent linear-gradient(180deg, #e4bc5c  0%, #52421e 51%, #e4bc5c  100%) 0% 0% no-repeat padding-box;
    color: #fff;
    font-weight: 700;
    padding: 1em 2em;
    font-size: 1.5em;
    transition: all 200ms ease-in-out
}

.login-site:hover {
    letter-spacing: 1px;
}

.login-site::after {
    content: "";
    position: absolute;
    top: 0;
    right: -43px;
    border-left: 43px solid var(--yellow);
    border-bottom: 43px solid transparent;
    border-top: 43px solid transparent;
}

.login-site svg {
    width: 1em;
    margin-left: 1em;
}

.site-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1em;
    justify-content: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    margin-top: 1em;
    margin-left: 28px
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    background: transparent linear-gradient(180deg, #e4bc5c  0%, #52421e 51%, #e4bc5c  100%) 0% 0% no-repeat padding-box;
    height: 56px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2)
}

.social-links a:hover {
    background: #fff;
    color: var(--yellow)
}

.instagram {
    color: rgba(195, 42, 163, 1)
}

.twitter {
    color: rgba(29, 161, 242, 1)
}

.telegram {
    color: rgba( 0, 136, 204, 1)
}

.tv {
    color: #000
}

.social-links svg {
    width: 1.5em;
}
.grid-curacao {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    justify-content: space-between;
    margin-top: 1em
}

.grid-yontemler {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    justify-content: space-between;
    margin-top: 2em
}

.grid-yontemler.hizlilink {
    grid-template-columns: repeat(5, 1fr);
}


/* Footer */

footer {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 0px 2em 0 2em;
}

footer span {
    font-size: .875em;
}

footer strong {
    font-weight: 400;
}

footer>div {
    margin-bottom: 1em
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1em;
    align-items: stretch;
}

.image-grid img {
    transition: all 200ms ease-in-out
}

.image-grid img:hover {
    transform: scale(1.1)
}

.image-grid.saglayici {
    grid-template-columns: repeat(11, 1fr);
}

.image-grid>div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-licence {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1em
}








.custom-button,
.custom-button-2 {
    background-color: #e4bc5c;
    color: #fff;
    padding: 15px 50px;
    font-size: 16px;
    margin: 20px auto;
    width: 70%;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    display: block;
    animation: zoominoutsinglefeatured 1.5s infinite;
    transition: transform .2s
}
.custom-button-2 {
    width: 200px;
    margin: 10px 0 10px 30px;
    padding: 10px 20px
}
@keyframes zoominoutsinglefeatured {
    0% {
        transform-origin: bottom top;
        transform: scale(1)
    }
    50% {
        transform: scale(1.2)
    }
    100% {
        transform: scale(1)
    }
}


.product-list-wrapper{ 
	height: auto;
	display: inline-block; 
}
.product-list-wrapper img {
	height:245px;
}



.product-list-wrapper > a {
    min-height: auto;
		display:block;
		padding: 10px;
		float:left;
		height:270px;
}

.product-list-wrapper>a.show{
    overflow:visible;
}
.product-list-wrapper>a:hover{
        margin-top: -15px;
}
.product-list-wrapper>a{
    transition: all .3s ease-out;
}

.product-list-wrapper>a.show{
    overflow:visible;
}
.product-list-wrapper>a:hover{
  margin-top: -15px;
}
.product-list-wrapper>a{
    transition: all .3s ease-out;
}
.product-list-wrapper > a img{
    transition: all .5s ease-out;
}
.product-list-wrapper > a:hover img{
    webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.better-homepage .row.guide:nth-child(5) .product-list-contain .product-list-wrapper>a{
    border-radius:24px;
}




.product-list-wrapper2{
	height: auto;
	display: inline-block; 
}
.product-list-wrapper2 img {
	height:185px;
}

.product-list-wrapper2 > a {
    min-height: auto;
		display:block;
		padding: 10px;
		float:left;
		height:185px;
}


.product-list-wrapper2>a.show{
    overflow:visible;
}
.product-list-wrapper2>a:hover{
        margin-top: -15px;
}
.product-list-wrapper2>a{
    transition: all .3s ease-out;
}






.bgContainer{
	padding:3rem;
}


table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
table td {
    border: 1px solid #fff;
    padding: 10px
}
table caption{
    font-size: 36px;
    font-weight: bold;
}
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}




.social-media-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0
}
.social-media-links a {
    height: 30px
}
svg {
    width: 30px;
    fill: #fff;
    height: 40px
}


.headLogo{
	  background: #336154!important;
    padding: 0px 90px 0px 90px!important;
}




.us_custom_c278ddf4 {
    color: #ffffff!important;
    font-weight: 600!important;
    font-size: 14px!important;
    width: 100%!important;
    padding-top: 5px!important;
    padding-bottom: 5px!important;
    position: fixed!important;
    bottom: 0!important;
    background: #e4bc5c !important;
}

.us_custom_b6904144 {
    color: #ffffff!important;
    font-weight: 600!important;
    font-size: 14px!important;
    width: 100%!important;
    padding-top: 5px!important;
    padding-bottom: 5px!important;
    
    top: 0!important;
    background: #e4bc5c !important;
}





:root {
  --textColor1: #008cff;
  --textColor2: #fff;
  --textColor3: #737594;
}

.button {
  display: block;
  margin: 20px 0;
  height: 50px;
	padding: 35px 37%;
  font-family: "Lucida Grande", "Helvetica", sans-serif;
  font-size: 30px;
  line-height: 6px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  background-position: top center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  transition-property: background, color;
}

.button2 {
  position: relative;
  color: var(--textColor2);
  border-radius: 50px 5px 50px 5px;
  background-image: linear-gradient(203deg, #279e46, #23d84e, #001d06, #00ff58, #fbff00, #00fff8);
  background-size: 400%;
  background-position: 0% 0%;
	animation: gradientRotate 2s infinite;
}
.button2::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50px 5px 50px 5px;
  background-image: linear-gradient(203deg, #279e46, #23d84e, #001d06, #00ff58, #fbff00, #00fff8);
  background-size: 500%;
  background-position: 0% 0%;
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s;
}
.button2:hover {
  animation: gradientRotate 2s infinite;
}
.button2:hover::before {
  opacity: 1;
  animation: gradientRotate 2s infinite;
}
.button2:active {
  color: #c3c4d5;
}
.button2:focus::before {
  opacity: 1;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.button2:before {
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 20px #82bedc, 0 0 30px #82bedc, 0 0 40px #82bedc, 0 0 50px #82bedc, 0 0 60px #82bedc;
  opacity: 1;
  animation: gradientRotate 4s infinite;
}

.button2 {
	border-radius: 50px 5px 50px 5px;
	animation: rotate 0.7s ease-in-out both;
	
}


@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}






.custom-heading {
    margin-top: 50px;
    border: 1px solid #f0f0f0;
    border-left: 14px solid #fb1010;
    background-color: #032f3e;
    padding: 20px;
}

.heading-title {
    font-weight: bold;
		font-size:26px;
}


.custom-box-1 {
    background-color: #031924;
    border-radius: 10px;
    padding: 20px;
    margin: 50px 0;
		border: 1px solid #cccccc63;
}








