:root {
    --primary: #6FFFE9;
    --secondary: #5BC0BE;
    --tertiary:#3A506B;
    --fourth:#1C2541;
    --fifth:#0B132B;
    --footer-bg:var(--fifth);
    --navbar-bg:var(--fourth);
    --navbar-txt:#fff;
    --btn-bg-color: var(--secondary);
    --btn-txt-color:var(--navbar-txt);
    
  }

/* --------------------------Header---------------------------- */

.stickynavbar {
    background-color: var(--navbar-bg) !important;
    z-index: 9999999999999;
    padding-top: 0 !important;
}

.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    padding-bottom: 0 !important;
}

.nav_wrap {
    clear: both;
    background-color: transparent;
    margin-bottom: 0em;
    z-index: 99;
}

.logo {
    width: 250px;
    display: flex;
    align-items: center;
}
.logo em {
    font-size: 12px;
}
.logo strong {
    font-size: 18px;
}
.logo img {
    width: 50px;
    border-radius: 50px;
}

.logo a {
    color: var(--navbar-txt);
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Lobster";
}

.logo a:hover {
    color: var(--primary);
}

.logo p {
    color: var(--navbar-txt);
    margin-bottom: 0;
    font-size: 14px;
}

.menubar .social-media {
    padding: 12px 0;
    text-align: center;
}

.scrolled {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: var(--navbar-bg);
}

#masthead.scrolled {
    background: #ccc;
}

#site-navigation {
    width: 100%;
}

/* ------------- Topbar ---------------- */

#topbar {
    background: var(--secondary);
    padding: 20px 0;
}

#topbar ul {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}

#topbar li {
    display: inline-block;
    padding-left: 15px;
}

#topbar p {
    font-size: 20px;
    color: var(--navbar-txt);
    font-weight: 400;
    font-family: "Roboto";
    letter-spacing: 1px;
}

#topbar p i {
    color: var(--navbar-txt);
    padding-right: 10px;
}

#topbar p.phone i {
    transform: rotate(90deg);
    position: relative;
    top: 4px;
    right: 6px;
}

/*----------------------add to cart---------*/

#cart {
    background: #f9f9fd;
    width: 300px;
    right: 0px;
    top: 64px;
    margin: 0px auto;
    text-align: left;
    padding: 20px;
    position: absolute;
    z-index: 999999;
    display: none;
    -webkit-animation: bounceIn 2s ease-in-out;
    animation: bounceIn 2s ease-in-out;
}

.cart_box:hover #cart {
    display: block;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}

li.woocommerce-mini-cart-item.mini_cart_item a.remove {
    right: 0px;
    left: auto !important;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    float: left;
    margin-right: 24px;
}

.woocommerce a.remove {
    color: #fff !important;
    background-color: #4ce5a2;
    width: 25px;
    height: 27px;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
    padding-left: 0em;
}

.woocommerce.widget_shopping_cart .buttons a {
    width: 100%;
    text-align: center;
}

.woocommerce .widget_shopping_cart .total {
    padding: 4px 0 0;
    margin: 10px 0 !important;
}

.woocommerce-mini-cart__total.total strong {
    padding: 8px 0;
}

p.woocommerce-mini-cart__buttons.buttons {
    display: flex;
}

p.woocommerce-mini-cart__empty-message {
    margin-bottom: 0;
    font-size: 14px;
    color: #002e5a;
    font-weight: 400;
    font-family: "Roboto";
    text-align: center;
    letter-spacing: 1px;
}

/* ------------- Header ---------------- */

#header_navigation {
    background: var(--navbar-bg);
}

#header_navigation .socialbox a i {
    padding: 10px;
    font-size: 16px;
    color: var(--navbar-txt);
}

#header_navigation ul.icons {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
    display: inline-flex;
}

#header_navigation .icons li {
    display: inline-block;
    width: 55px;
    height: 60px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    padding: 20px 0;
}

#header_navigation .icons li:last-child {
    border-left: none;
}

#header_navigation .icons i {
    color: var(--navbar-txt);
    font-size: 18px;
}

.main-header-box {
    position: relative;
    z-index: 99999;
}

#header {
    position: relative;
    background: var(--navbar-bg);
}

/* --------------- Search -------------- */

/* SEARCH POPUP */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    display: none;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 99999;
    display: block;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: rgb(255, 255, 255);
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    outline: none;
    padding: 10px;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #fff;
}

#search .close:hover {
    color: #FC2121;
    cursor: pointer;
}

.search-box form {
    position: static;
}

.search-box input[type="submit"] {
    display: none;
}

/*----------------Menu bar-----------*/

ul.list_nav {
    margin: 0 auto;
    text-align: center;
    display: block;
    text-align: right;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    position: relative;
    /*padding:20px 20px; */
    display: inline-block;
}

.main-navigation a:hover:after {
    border-color: #f04f55;
}

.main-navigation a:hover:after {
    border-bottom: 3px dashed;
    transition: all 0.5s;
    width: 60%;
}

.main-navigation a:after {
    border-bottom: 1px solid transparent;
    content: "";
    width: 0%;
    position: absolute;
    bottom: 11px;
    transition: all 0.5s;
    left: 18px;
}

.main-navigation .sub-menu li:hover a:before {
    opacity: 1;
}

.main-navigation .sub-menu li a:before {
    content: "\f064";
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    margin-left: -17px;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1em;
}

.main-navigation .sub-menu li a:after {
    display: none;
}

.main-navigation a {
    letter-spacing: 0px;
    padding: 20px 20px;
    text-decoration: none;
    white-space: nowrap;
    backface-visibility: hidden;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #002e5a;
    font-weight: 600;
    font-family: "Poppins";
}

.main-navigation a:hover {
    color: #00c3ed;
}

.main-navigation ul ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #f9f9fd;
    min-width: 240px;
    z-index: 9999;
    padding-left: 0px;
}

.main-navigation ul ul {
    left: auto;
    top: 62px;
    text-align: left;
    -ms-animation: fadeInRight .3s ease;
    -webkit-animation: fadeInRight .3s ease;
    animation: fadeInRight .3s ease;
    border-radius: 0;
}

.main-navigation ul ul {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1 !important;
    visibility: visible;
}

.main-navigation ul ul ul {
    left: 100%;
    top: 0;
}

.main-navigation ul ul a {
    text-transform: none;
    font-weight: 500;
    color: #002e5a;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 10px;
    text-align: left;
    padding: 5px 20px;
    transition: all 0.5s ease 0s;
    font-family: "Poppins";
}

ul.sub-menu li:hover {
    background: #00c3ed;
}

ul.sub-menu li a:hover {
    -moz-transform: translate(15px, 0%);
    -ms-transform: translate(15px, 0%);
    -webkit-transform: translate(15px, 0%);
    -o-transform: translate(15px, 0%);
    transform: translate(15px, 0%);
}

ul.sub-menu {
    border-top: 3px solid #00c3ed;
}

.main-navigation ul ul li,
.menubar.scrolled .main-navigation ul ul li {
    float: none;
    display: block;
    text-align: left;
}

.main-navigation ul ul li {
    padding: 10px;
}

.main-navigation ul li:hover>ul {
    display: block;
}

.main-navigation .current-menu-item>a {
    color: var(--navbar-txt);
}

.main-navigation ul ul li:hover>a {
    color: #fff;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 15px;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: auto;
}

/*---------------- Footer Section ----------------------*/

.footer-cols {
    padding-top: 60px;
    padding-bottom: 60px;
}

#footer {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.outer-footer {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#footer #footer_box:before {
    content: '';
    background: #0d0f41;
    opacity: 0.8;
}

.footer-social .socialbox a {
    border-right: none;
}

.footer-social .socialbox a i {
    color: #ffffff;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-top-col h3 {
    font-size: 20px;
    font-weight: bold;
}

.outer-footer {
    background-size: 100% 100%;
}

#footer form.search-form {
    border: none;
    background: transparent;
    padding: 0;
}

#footer form.search-form input {
    float: none;
    border: 1px solid #fff;
    margin: 8px 0px;
}

#footer .social-icons i {
    font-size: 12px;
    color: #00c3ed;
}

#footer .widget_recent_entries img {
    width: 70px;
    float: left;
    padding-right: 10px;
}

#footer .wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    color: #00c3ed;
    font-weight: 400;
    font-family: "Roboto";
    margin-top: 2px;
}

#footer .wp-block-latest-posts__post-author {
    padding-right: 10px;
}

#footer .social-icons a {
    display: inline-block;
    line-height: 10px;
}

#footer input[type="email"] {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    font-family: "Roboto";
    letter-spacing: 2px;
    border-radius: 50px;
    border: 1px solid #b9b8b8;
}

#footer input[type="submit"] {
    font-size: 14px;
    line-height: 25px;
    background: #00c3ed;
    width: 100%;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    border-radius: 50px;
}

#footer input[type="email"]::placeholder {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}

#footer textarea {
    height: 100px;
}

#footer p.post-date {
    color: #ffffff;
    font-size: 11px !important;
}

#footer {
    color: #fff;
    text-align: left;
    background: var(--footer-bg);
}
#footer_box .row{
    justify-content: space-around;
}
.footer_hide {
    display: none;
}

#footer .footer-cols h3 {
    letter-spacing: 0px;
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    font-weight: 600;
    font-family: "Poppins";
}

#footer .footer-cols p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
    font-family: "Roboto";
    text-align: left;
}

#footer .copyright {
    background: #00c3ed;
}

#footer .copyright p {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: "Poppins";
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    padding: 12px 0;
    margin-bottom: 0;
}

#footer .copyright a {
    color: #000;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Montserrat';
}

#footer ul {
    padding: 0;
    margin-bottom: 0;
}

#footer ul li {
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
    font-family: "Roboto";
    list-style-type: none;
}

#footer ul li a {
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
    font-family: "Roboto";
    display: block;
}

#footer li a:hover {
    color: #00c3ed;
}

#footer .list-view li {
    list-style-type: none;
    padding: 8px 0 0;
}

.widget_recent_entries img {
    width: 100px;
}

#footer .textwidget input[type="email"] {
    border-radius: 40px;
    border: 2px solid #fff;
}

#footer .textwidget input[type="submit"] {
    background-color: transparent;
    border-radius: 40px;
    padding: 10px 20px;
    border: 2px solid #9b9b9b;
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-family: "Poppins";
}

#footer .contact-widget i {
    color: #00c3ed;
    font-size: 16px;
    width: 18px;
}

#footer span.contact {
    border-left: 1px solid #fff;
    padding-left: 10px;
}

#footer i.fas.fa-phone-volume {
    transform: rotate( -45deg);
}

#footer .footer-logo {
    width: 50px;
}
#footer .footer-logo img{
    border-radius: 50px;
}

#footer .social a {
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 36px;
    display: inline-block;
    font-size: 16px;
    text-align: left;
}

#footer .widget td {
    padding-top: 0px !important;
}

#footer #site-navigation ul li a {
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

#footer #site-navigation ul li {
    margin-right: 20px;
}

#footer #site-navigation {
    text-align: center;
    border-bottom: 1px solid #292929;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top: 65px;
}

#footer .main-navigation li.current_page_item {
    background-color: transparent;
}

#footer .footer-logo-box {
    margin: 0 auto;
    display: block;
    position: absolute;
    top: -154px;
    left: 0;
    right: 0;
    background-color: #111111;
    padding: 20px 15px;
    max-width: 180px;
    max-height: 180px;
    border-radius: 50%;
}

.wpcf7 .ajax-loader {
    display: none;
}

/*-------------------------- Calendar widget --------------------------*/

table {
    border-collapse: collapse;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.75em;
    table-layout: fixed;
    width: 100%;
}

.widget.widget_calendar table {
    margin: 0;
}

.widget.widget_calendar td,
.widget.widget_calendar tr,
.widget.widget_calendar th {
    border: 1px solid #fff;
    color: #000000;
}

#footer .widget.widget_calendar td,
#footer .widget.widget_calendar tr,
#footer .widget.widget_calendar th {
    color: #ffffff;
    padding: 2px;
}

.widget_calendar td,
.widget_calendar th {
    line-height: 1.5625;
    padding: 0;
    text-align: center;
}

.widget_calendar caption {
    font-weight: 900;
    margin-bottom: 0em;
    color: #fff;
    padding-left: 15px;
    caption-side: top;
}

.widget_calendar tbody a {
    background-color: #bbb;
    color: #fff;
    display: block;
    font-weight: 700;
}

.widget_calendar tbody a:hover,
.widget_calendar tbody a:focus {
    background-color: #686868;
    color: #fff;
}

.widget th,
.widget td {
    padding: 0.5384615385em;
}

/* ---------- Return to Top ------------ */

#return-to-top {
    display: inline-block;
    background-color: #00c3ed;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#return-to-top:after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    font-size: 25px;
    color: #fff;
    text-align: center;
    line-height: 50px;
}

#return-to-top:hover {
    cursor: pointer;
    background-color: #1c1c1c;
}

#return-to-top:active {
    background-color: #555;
}

#return-to-top.show {
    opacity: 1;
    visibility: visible;
}