@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Thin.woff') format('woff');
    font-weight: 100;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-ExtraLight.woff');
    font-weight: 200;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Light.woff');
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Regular.woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Medium.woff');
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-SemiBold.woff');
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Bold.woff');
    font-weight: 700;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-ExtraBold.woff');
    font-weight: 800;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Black.woff');
    font-weight: 900;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    min-height: 100vh;
}

.main {
    width: 100%;
    height: auto;
}

.header-container {
    width: 100%;
    background-color: #dbf0ff;
}

.head-subcontainer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.contact-info {
    text-align: left;
    width: 50%;
}

.contact-info a {
    font-size: 14px;
    font-weight: 400;
    color: black;
    text-decoration: none;
}

.country {
    text-align: right;
    width: 50%;
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.contact-info a:hover {
    color: #1970ae;
}

/* Language */




/* navbar */

.header-container-menu {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
}

.main-nav {
    position: relative;
    /* left: 0; */
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    /* box-shadow: 0 5px 25px rgb(0 0 0 / 20%); */
    /* padding: 0 0 0 10px; */
    /* transition: 0.6s; */
}

.main-nav .logo {
    color: black;
    font-size: 1.8em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    /* width: 30%; */
}

.main-nav .navigation {
    position: relative;
    line-height: 80px;
    transition: 0.6s;
    /* transition-property: line-height; */
    /* width: 70%; */
}

.main-nav.sticky .navigation {
    line-height: 60px;
}

.main-nav .navigation .menu {
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
}

/* .menu-item:hover {
    background-color: #0066b3;
} */

.menu {
    margin-bottom: 0px;
}

.menu-item>a {
    color: black;
    font-size: 14px;
    text-decoration: none;
    margin: 20px;
    padding: 25px 0;
}

.menu-item:hover>a {
    color: #0066b3;

}

.menu-item>a:hover {
    color: #0066b3;
    transition: 0.3s;
}

.menu-item .sub-menu {
    position: absolute;
    background: #ededed;
    top: 74px;
    line-height: 40px;
    list-style: none;
    border-radius: 0 0 8px 8px;
    /* box-shadow: 0 5px 25px rgb(0 0 0 / 20%); */
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
    transition-property: transform, opacity;
    border: 1px solid #e1e1e1;
    z-index: 999;
}

.main-nav .sticky .menu-item .sub-menu {
    top: 60px;
}

.menu-item:hover .sub-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;

}

.menu-item .sub-menu .sub-item {
    position: relative;
    padding: 2px 0;
    cursor: pointer;
    box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
    margin-left: -32px;
}

.menu-item .sub-menu .sub-item a {
    color: black;
    font-size: 14px;
    text-decoration: none;
    padding: 15px 30px;
}

.menu-item .sub-menu .sub-item:hover a {
    color: white;
}

.menu-item .sub-menu .sub-item:hover {
    background: #0066b3;
}



.menu-item .sub-menu .sub-item:last-child:hover {
    border-radius: 0 0 8px 8px;
}



.more .more-menu {
    position: absolute;
    background: #ededed;
    list-style: none;
    top: 0;
    left: 100%;
    white-space: nowrap;
    /* width: 100%; */
    border-radius: 0 8px 8px 8px;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
    transition-property: transform, opacity;
    z-index: 999;
}

.more:hover .more-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
    border: 1px solid #e1e1e1;
}

.more .more-menu .more-item {
    padding: 2px 0;
    box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    margin-left: -32px;
}

.menu-item .sub-menu .sub-item:hover .more-item a {
    color: black;
}

.menu-item .sub-menu .sub-item:hover .more-item:hover a {
    color: white;
}

.more .more-menu .more-item:hover {
    background: #0066b3;
}

.menu-btn {
    display: none;
}


/* slider */

.carousel-item img {
    max-height: 500px;
}

.carousel-item .carousel-caption h5 {
    font-size: 50px;
    color: black;
    font-weight: 600;
    /* Decrease the font size for smaller devices */
}

.carousel-item .carousel-caption p {
    font-size: 16px;
    color: black;

    /* Decrease the font size for smaller devices */
}

.carousel-item .carousel-caption {
    bottom: 30%;
    text-align: start;
    /* Adjust the caption position for smaller devices */
}


/* about */

.about-container {
    width: 100%;
    margin-top: 50px;
}

.ab-cont {
    margin-top: 100px;
}

.about-sub-sub-container {
    display: flex;
    gap: 50px;
}

.about-sub-container {
    width: 50%;
}

.about-sub-container img {
    width: 100%;
}

.about-headingText {
    font-size: 14px;
    font-weight: 500;
    color: #a9a9a9;
}

.about-subHeadingText {
    font-size: 30px;
    font-weight: 600;
    color: #0066b3;
    margin-top: 5px;
}

.about-description {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    text-align: justify;
    margin-bottom: 15px;
}


/* Element section */

.ele-card {
    border-radius: 15px;
}

/* Product */

.product-main-container {
    width: 100%;
}

.product-main-container .product {
    max-width: 1300px;
}

.product-subcontainer {
    width: 100%;
    padding: 10px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.explore-heading {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 4px;
    padding-top: 0;
    font-weight: 500;
    position: relative;
    color: #a9a9a9;
}

.product-heading {
    font-size: 30px;
    font-weight: 600;
    color: #0066b3;
    line-height: 38px;
    position: relative;
}

.product-line {
    width: 80px;
    height: 4px;
    margin-top: 10px;
    background-color: rgb(189, 189, 189);
}

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

.container {
    max-width: 1300px;
    width: 100%;
    padding: 50px 0;
}

.slide-container {
    margin: 0 30px;
    overflow: hidden;
}

.card {
    background: #fff;
    border-radius: 15px;
}

.card-wrapper .swiper-slide {
    border-radius: 15px;
}

.card .image-box {
    height: auto;
    background-color: #f0f0f0;
    border-radius: 15px;
    padding: 20px 10px 20px 10px;
}

.card .image-box img {
    width: 100%;
    height: auto;
    /* border-radius: 10px 10px 0 0; */
}

.card .profile-details {
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 15px;
    text-align: center;
}

.name-job {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card .profile-details img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.profile-details .name {
    font-size: 16px;
    font-weight: 600;
    color: #0066b3;
}

.profile-details .job {
    font-size: 12px;
    font-weight: 500;
    color: #4d4d4d;
}

.swiper-navBtn {
    color: #a5a5a5;
    height: 50px;
    width: 50px;
    transform: translateY(-40%);
    border-radius: 50%;
    margin: -15px;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 24px;
}

.swiper-pagination-bullet {
    background-color: #333;
}

/* Advantages */

.about-description ul {
    list-style-type: none;
    list-style-position: inside;
    padding-left: 0;
}

/* button */

.button {
    position: relative;
    overflow: hidden;
    height: 30px;
    padding: 0px 20px 2px 20px;
    border-radius: 1.5rem;
    background: #d6d6d6;
    color: black;
    border: none;
    margin-top: 5px;
}

.button:hover::before {
    transform: scaleX(1);
}

.button-content {
    position: relative;
    z-index: 1;
    font-size: 12px;
}

.button:hover {
    color: white;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    color: white;
    background: linear-gradient(82.3deg,
            rgb(85, 83, 89) 10.8%,
            rgb(15, 15, 16) 94.3%);
    transition: all 0.475s;
}

@media screen and (max-width: 768px) {
    .swiper-navBtn {
        display: none;
    }
}



/* Logo Slider */

/* Sponsors Section */
.sponsors-section {
    /* background-image: url(images/l-back.jpg);  */
    padding-bottom: 50px;
    padding-top: 50px;
    /* margin-top: 60px; */
    /* height: 300px; */
}

.sponsors-section .sponsors-sec-title h2 {
    position: relative;
    color: #0066b3;
    font-weight: 700;
    line-height: 30px;
    margin-top: 50px;
    font-size: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.auto-container {
    max-width: 1200px;
    margin: 0px auto 0px auto;
}

/* Logo Carousel */
.carousel-outer {
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

.sponsors-carousel.owl-carousel .item {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    background-color: white;
}

.sponsors-carousel.owl-carousel .item img {
    width: auto;
    height: 60px;
    transition: filter 0.3s ease;
    right: 0;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    padding: 10px;
    background-color: black;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: #555;
}

.owl-prev {
    bottom: 10px;

}

.owl-next {
    right: 0;
}

.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-dot.active {
    background-color: #333;
}


/* card */

.category-sub-sub-container {
    display: flex;
    gap: 50px;
}

.category-sub-sub-container .card {
    position: relative;
    width: 100%;
    height: auto;
    /* background-image: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% ); */
    border-radius: 15px;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    border: none;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-sub-sub-container .card:hover .overlay {
    opacity: 1;
    pointer-events: auto;
    border-radius: 15px;
}

.category-sub-sub-container .card .card-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 400;
    padding: 10px 20px;
    font-size: 14px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    border: none;
    opacity: 0;
    scale: 0;
    transform-origin: 0 0;
    /* box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.15); */
    /* transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1); */
}

.category-sub-sub-container .card:hover .card-btn {
    opacity: 1;
    scale: 1;
}

.category-sub-sub-container .card .card-btn:hover {
    box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.3);
}

.category-sub-sub-container .card .card-btn:active {
    scale: 0.95;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(-45deg, #f89b2980 0%, #ff0f7b80 100% ); */
    transition: transform 0.5s ease;
}

.category-sub-sub-container .card:hover .overlay::after {
    transform: translate(-50%, -50%) scale(2);
}

.category-sub-sub-container .card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}


/* Footer Section */

.footer-container {
    width: 100%;
    background-color: #000;
}

.footer-subcontainer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-more-container {
    display: flex;
    width: 100%;
    position: relative;
    /* justify-content: center;
    align-items: center; */
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer-item {
    width: 25%;
    padding-right: 20px;
}

.footer2-container {
    border-top: 1px solid #333;
    background-color: #000;
}

.footer-more-container2 {
    display: flex;
    width: 100%;
    position: relative;
    /* justify-content: center;
    align-items: center; */
    flex-wrap: wrap;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-item-sub2 {
    width: 50%;
    font-size: 12px;
    color: #999;
}

.pow {
    text-align: right;
}

.pow a {
    color: #999;
    text-decoration: none;
}

.pow a:hover {
    color: #0066b3;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #0066b3;
    /* border-bottom: 1px solid #333; */
    /* padding-bottom: 5px; */
}

.footer-item li {
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 25px;
}

.footer-item ul {
    margin-top: 10px;
    list-style-type: none;
    list-style-position: inside;
    padding-left: 0;
}

.footer-item li a {
    text-decoration: none;
    color: white;
}

.footer-item li a:hover {
    color: #1970ae;
}


.footer-more-container .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    /* margin: 0 10px 10px 0; */
    text-align: center;
    /* line-height: 40px; */
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
    padding: 10px;
    margin-right: 7px;
}

.footer-more-container .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}



/* About Us Page */

.banner-container {
    width: 100%;
    height: 200px;
}

.banner-subcontainer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}

.banner-head {
    font-size: 25px;
    font-weight: 600;
}

.banner-text {
    font-size: 14px;
    font-weight: 400;
}

.card .imp-heading {
    color: #0066b3;
    font-weight: 600;
    font-size: 18px;
    margin-top: 5px;
}

.card .imp-para {
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    padding: 5px 25px 15px 25px;
}

.card .imp-line {
    width: 60px;
    height: 4px;
    background-color: black;
}

.contact-add-heading{
    font-size: 20px;
    color: #0066b3;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.whyus-container {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    /* Ensure the overlay doesn't overflow outside the wrapper */
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Add the transparent black overlay to the wrapper */
.image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay-text {
    position: absolute;
    top: 0;
    /* Adjust the vertical position of the text as per your preference */
    color: white;
    padding: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-align: justify;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.overlay-text .why-heading {
    font-size: 14px;
    font-weight: 500;
}

.overlay-text .why-main-heading {
    font-size: 30px;
    font-weight: 600;
    margin-top: 5px;
}

.overlay-text .why-para {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

/* Testimonial */

.testimonial-container {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e1e1e1;
}

.testimonial {
    max-width: 1200px;
    position: relative;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.test-main {
    margin-top: 40px;
}

.testimonial .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
}

.slide .testi-para {
    text-align: center;
    padding: 0 70px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.slide .quote-icon {
    font-size: 30px;
    color: #0066b3;
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details .name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.details .job {
    font-size: 12px;
    font-weight: 400;
    color: #333;
}

/* swiper button css */
.nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after,
.nav-btn::before {
    font-size: 20px;
    color: #fff;
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: #0066b3;
}

.test-heading {
    text-align: center;
}

.test-main-heading {
    text-align: center;
}

.test-line {
    margin-left: auto;
    margin-right: auto;
}


/* Contact Us */

.contact-us-main{
    margin-top: 80px;
}

.form-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 0 20px 0 20px;
    /* width: 350px; */
    display: flex;
    flex-direction: column;
}

/* .title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
} */

.main-form {
    /* margin-top: 20px; */
    display: flex;
    flex-direction: column;
}

.group {
    position: relative;
}

.main-form .form-group label {
    font-size: 14px;
    color: rgb(99, 102, 102);
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #fff;
    transition: all .3s ease;
}

.main-form .form-group input,
.main-form .form-group textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    outline: 0;
    width: 100%;
    background-color: transparent;
}

.main-form .form-group input:placeholder-shown+label,
.main-form .form-group textarea:placeholder-shown+label {
    top: 10px;
    background-color: transparent;
}

.main-form .form-group input:focus,
.main-form .form-group textarea:focus {
    border-color: #3366cc;
}

.main-form .form-group input:focus+label,
.main-form .form-group textarea:focus+label {
    top: -10px;
    left: 10px;
    background-color: #000;
    color: #3366cc;
    font-weight: 600;
    font-size: 14px;
}

.main-form .form-group textarea {
    resize: none;
    height: 100px;
}

.main-form button {
    background-color: #0066b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    /* transition: all 0.3s ease; */
    border: solid 2px #0066b3;
    font-weight: 400;
}

.main-form button:hover {
    background-color: white;
    color: #0066b3;
    border: solid 2px #0066b3;
    font-weight: 400;
}

.contact-add{
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    color: black;
}

.contact-add a{
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 400;
}

.contact-add a:hover{
    color: #0066b3;
}

.map-container{
    width: 100%;
    height: auto;
    margin-top: 80px;
}

/* Quality Page */

.quality-heading{
    margin-bottom: 0px;
    margin-top: 0px;
}

.quality-matter p{
    margin-bottom: 6px;
}

/* Product Page */
.product-page-container {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.ab-cont {
    margin-top: 100px;
}

.product-page-sub-sub-container {
    display: flex;
    gap: 50px;
}

.product-page-sub-container {
    width: 50%;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
}

.product-page-heading{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: white;
    padding: 20px 10px 20px 10px;
    background-color: #0066b3;
    border-radius: 14px 14px 0px 0px ;
    border: solid 1px #0066b3;
}

.product-page-img-container{
    padding: 20px;
    background-color: #f0f0f0;
}

.product-page-sub-container img {
    width: 100%;
    border-radius: 15px;
}

.product-page-compositin{
    font-size: 14px;
    font-weight: 400;
    color: black;
    text-align: center;
    padding: 10px;
}

.product-page-size{
    font-size: 14px;
    font-weight: 400;
    color: black;
    text-align: center;
    padding: 10px;
    /* background-color: #f0f0f0; */
    border-radius: 0 0 10px 10px;
    border-top: dashed 1px #e1e1e1;
    padding-right: 25px;
    padding-left: 25px;
}

.product-cont{
    margin-top: 50px;
}

/* Derma page */
.derma-page-heading{
    text-align: center;
    color: white;
}

.derma-page{
    width: 33.33%;
    padding: 50px 20px 50px 20px;
    background-color: #0066b3;
    border-radius: 15px;
}

/* Whatsapp Icon Footer */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:15px;
	right:15px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
    z-index:100;
}

.my-float{
	margin-top:16px;
}

