﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto' , sans-serif;
    font-weight: 400;
}
body{
    background-color: #20716c;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 400;
}
a{
    text-decoration: none;
    display: inline-block;
}
p{
    margin: 0;
}
ul{
    margin-bottom: 0;
    padding: 0;
}
ul li{
    list-style: none;
}

/* Header-top Section */

.header-top {
    background-color: #FFD36C;
    padding: 10px 0;
}
.logo img {
    width: 150px;
}
.reg a {
    font-size: 14px;
    line-height: 40px;
    color: #000;
    position: relative;
}
.reg a::before {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    bottom: 10px;
    right: 0;
    height: 1px;
    width: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}
.reg a:hover:before {
    left: 0;
    width: 100%;
}
.menu-sticky {
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999;
    background-color: #FFD36C;
}
mark { 
  background-color: #20716C;
  color: #FFD36C;
  font-weight: 600;
}

/* footer  */

.footer {
    padding: 5px 0;
    border-top: 5px solid #FFD36C;
}
.payment h4 {
    font-size: 25px;
}
.cards ul li {
    display: inline-block;
}
.cards ul li a img {
    margin-right: 5px;
    width: 105px;
    opacity: 80;
    transition: all 0.3s ease-in-out;
}
.cards ul li a img:hover {
    filter: grayscale(50);
    opacity: 80;
}
.footer-credit p {
    font-size: 14px;
    line-height: 2;
}
.footer-credit p a {
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
	text-align: center;
	
	
}
.footer-credit p a:hover {
    color: #FFD36C;
}
.footer-social ul li {
    display: inline-block;
    margin: 0 5px;
}
.footer-social ul li a i {
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    height: 34px;
    width: 34px;
    line-height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.footer-age p a {
    font-size: 12px;
    padding: 7px 5px;
    border: 2px solid #f41901;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.footer-age p a:hover {
    background-color: #f41901;
}
.footer-des p {
    font-size: 12px;
}

/* Responsive  */


@media all and (max-width: 767px){
    .cards ul li {
        display: inline-block;
        margin-bottom: 8px;
		opacity: 80%;
    }
    .cards ul li a img {
        margin-right: 0;
    }
}
