@charset "UTF-8";

/*
Theme Name: Kona Deep Sea
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Resets */

/* Resets */

:root {
    --primary-color: #C01515;
    --secondary-color: #454443;
    --dark-red: #A22724;
    --text-color: #353335;
    --light-grey: #F2F2F2;
    --black: #000000;
    --white: #ffffff;
    --bold-weight: 700;
    --semi-bold-weight: 600;
    --medium-weight: 500;
    --regular-weight: 400;
}

::selection {
    color: var(--text-color);
    background-color: var(--light-grey);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body{
    font-family: 'Roboto', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

h3, h4 {
    font-size: 20px;
    margin-bottom: 18px;
}

p{
   font-family: 'Roboto',sans-serif;
   font-size: 16px;
   line-height: 1.8;
   margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}  

ul li {
    text-decoration: none;
    list-style: none;
}

button:focus {
    outline: none;
    outline-color: transparent;
    box-shadow: none;
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
	color:#0073aa;
}

/* input:not(input[type="submit"]){
    background-color: transparent;
    border: 1px solid var(--off-white);
    border-radius: 15px;
    padding: 22px 16px;
    font-size: 14px;
    font-family: var(--termina-font);
    font-weight: 500;
    color: var(--off-white);
    margin-bottom:44px;
    text-transform: uppercase;
    width: 100%;
    outline: unset;
    line-height: 1;
} */

input:focus{
    outline: none;
    box-shadow: none;
}

/* presets */

a.btn-filled {
    font-weight: var(--semi-bold-weight);
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--primary-color);
    padding: 13px 24px 11px;
    display: inline-block;
    line-height: 1;
}

a.btn-filled:hover {
    background-color: var(--dark-red);
}

.sea-tab {
    display: flex;
    gap: 15px;
}
.sea-tab-area {
    flex-direction: column;
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.sea-tab-area.fish-tab-area .sea-tab:nth-child(2n) {
    flex-direction: row-reverse;
}
.sea-tab-area.fish-tab-area {
    gap: 50px;
}
.sea-tab-area.fish-tab-area .sea-tab-img {
    width: 50%;
    text-align: center;
}
.sea-tab-area.fish-tab-area .sea-tab-text {
    width: 50%;
}
.sea-tab-area.fish-tab-area .sea-tab-text p {
    font-size: 18px;
    color: #7a7a7a;
}
.sea-tab-area.fish-tab-area .sea-tab-text strong {
    color: #0000cc;
    font-size: 22px;
}
p:empty {
    display: none;
}
.important-links {
    margin-top: 10px;
}
.direction-inner {
    display: flex;
    justify-content: space-between;
}
.direction-inner .charter_descrption {
    width: 50%;
    padding-left: 60px;
}
.direction-img {
    width: 50%;
}
.red-title {
    color: #cc2829;
}
.sea-tab-area.direction-tab-area {
    gap: 10px;
    margin-top: 30px;
}
.navbar ul li {
    padding: 8px 0;
}

.nav-wrapper .navbar-nav {
    padding: 10px 10px 0 !important;
    margin: 0 !important;
}
a.navbar-brand.desktop {
    margin: 0;
}
.navbar-nav li.current_page_item > a{
    color: var(--primary-color);
}
.navbar-nav li.menu-item-has-children .sub-menu li.current_page_item a {
    color:#000000;
}
.footer-copyright a {
    display: block;
}
.post-detail-main .post-data p {
    margin-bottom: 6px;
}
.post-detail-main .post-data p strong {
    margin-top: 8px;
    display: inline-block;
    margin-bottom: 0;
}
.post-detail-main .post-data ul li {
    list-style-type: disc;
    padding: 6px;
}
div#navbarSupportedContent {
    justify-content: center;
}
.sea-tab-area.sea-template img {
    max-width: 190px;
}
.form-group {
    margin-top: 15px;
}
.contact_us_form.home-form .wpcf7-not-valid-tip {
    color: #ffffff;
}
button.sub-menu-toggle {
    display: none;
}
ul.sub-menu {
    display: none;
	transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
}
.menu-item-has-children:hover > .sub-menu {
    display: block;
	transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
}
.menu-item-has-children .sub-menu {
    width: 250px;
    flex-direction: column;
    gap: 0px;
    position: absolute;
    background-color: #8c0809;
    padding: 10px 20px;
    margin-top: 10px;
	transition:unset !important;
}

.navbar ul li a:not([href]):not([class]) {
    color: #ffffff;
}
.menu-item-has-children .sub-menu li a {
    padding: 0 !important;
    font-size: 15px;
}
.menu-item-has-children .sub-menu li {
    padding: 8px 0;
}
.navbar ul li.menu-item-has-children a i {
    padding-left: 5px;
}
.menu-item-has-children .sub-menu li a:hover {
    color: #000000 !important;
}

/* ----------- */
/* Blog Listing */
/* ----------- */
  
.post .post-data h2 {
    display: inline-block;
    margin-bottom: 6px;
    margin-top: 10px;
}
.post .post-data span{
    display: block;
    font-size: 15px;
    color: #d6423b;
}

.post-detail-main .post-data{
    width: 100%;
    padding-left: 0px;
    margin-top: 15px;
}

/* ----------- */
/* 404 */
/* ----------- */
.error404 .header {
    background: #000;
    padding: 0;
}
 .error404-content{
    text-align: center;
    padding: 180px 15px 100px;
}
.error404-content h1{
    font-size: 150px;
    color: #292d36;
    margin: 0px;
}
.error404-content p{
    font-size: 75px;
    color: #292d36;
    margin: 0;
}
.home-to-btn {
    background-color: var(--primary-color);
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}
.home-to-btn:hover {
    background-color: #000000;
    color: #fff;
    text-decoration: none;
}

/*==============================
    homepage 
================================*/

/* top bar */

.top-bar-wrap {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    height: 40px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-address {
    display: flex;
    align-items: center;
}

.top-address p {
    margin-left: 8px;
}

.top-social {
    display: flex;
    align-items: center;
}

.top-social-icons {
    margin-left: 20px;
}

.top-bar-inner p {
    color: var(--white);
    font-size: 16px;
}

.top-social-icons a {
    display: inline-block;
}

.top-social-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.top-social-icons a:nth-child(1) i {
    background-color: var(--facebook-bg);
    margin-right: 7px;
}

.top-social-icons a:nth-child(2) i {
    background-color: var(--youtube-bg);
}

.top-address a {
    font-size: 17px;
    font-weight: var(--bold-weight);
    color: var(--white);
}

.top-address a i {
    padding-right: 6px;
}

.top-address {
    display: flex;
    gap: 20px;
}

.phone_xs {
    display: none;
}

.navbar-brand.mobile {
    display: none;
}

/* header */

header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: transparent;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.7) 100%);
    padding: 30px 0 20px;
}

.header-wrap {
    background-color: var(--secondary-color);
    height: 80px;
}

.header-inner {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-inner ul li a {
    font-size: 16px;
    color: var(--dark-grey) !important;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.header-inner ul li a.active, .header-inner ul li a:hover {
    color: var(--Dark-brown) !important;
}

.header-inner ul li:not(:last-child) {
    margin-right: 45px;
}

.header-inner ul li:last-child {
    margin-left: -25px;
}

.header-inner ul li:last-child a {
    font-weight: 700;
    background-color: var(--Dark-brown);
    color: var(--white) !important;
    padding: 8px 12px;
    display: inline-block;
    border-radius: 4px;
    letter-spacing: unset;
}

.header-inner ul li:last-child a:hover {
    background-color: var(--primary-color);
}

.header-inner ul li:last-child a i {
    font-weight: 700;
    margin-right: 9px;
}

.call-btn {
    display: none;
    color: var(--primary-color);
}

.call-btn:hover {
    color: var(--primary-color);
}

.navbar ul li a {
    font-size: 18px;
    font-weight: var(--medium-weight);
    color: var(--white);
    text-transform: uppercase;
    padding: 10px 20px !important;
}

.navbar ul li a:hover, .navbar ul li a.active:hover {
    color: var(--primary-color) !important;
}

.navbar ul li a.active {
    color: var(--white) !important;
    font-weight: var(--medium-weight);
}

.nav-wrapper .navbar-nav {
    align-items: center;
}

.nav-wrapper .navbar-nav .navbar-brand {
    margin: 0 20px;
    min-width: 200px;
}

/* banner */

.main-banner-slide.slide-1 {
    background: url(images/banner-img-1.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.main-banner-slide.slide-2 {
    background: url(images/banner-img-1.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.main-banner-slide {
    display: grid;
    place-content: center;
    height: 720px;
    position: relative;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.main-banner-inner .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.main-banner-inner .owl-nav button.owl-prev {
    position: absolute;
    top: calc(100% - 50px);
    left: 36px;
}

.main-banner-inner .owl-nav button.owl-next {
    position: absolute;
    top: calc(100% - 50px);
    right: 36px;
}

.main-banner-inner .owl-nav button.owl-prev, .main-banner-inner .owl-nav button.owl-next {
    font-size: 64px;
    color: #ffffff;
}

.main-banner-text {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 0;
    text-align: center;
}

.main-banner-text h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 24px;
}

/* --------------------------------------------------- */

/* Body Content */

.charter_descrption p {
    padding-bottom: 10px;
}

.services_box {
    background-image: url(images/background_box.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 170px 0;
    background-position: 100% 50%;
}

.box {
    background-color: var(--white);
    position: relative;
    padding-bottom: 100px;
}

.box_img {
    text-align: center;
    max-width: 150px;
    margin: 0 auto;
    width: 100%;
}

.box_description h2 {
    margin-bottom: 5px;
}

.box_description p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box_img img {
    margin-top: -60px;
}

.box_description {
    text-align: center;
    padding: 0 30px;
}

.read_more_btn {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.read_more_btn a {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 30px;
}

.fishing_charter .charter_descrption {
    padding: 80px 0;
}

.fish_img {
    height: 100%;
    position: relative;
}

.fish_img img {
    position: absolute;
    bottom: 0;
    width: 80%;
}

.video_area {
    text-align: center;
}

section.video_kona_fishing {
    margin: 80px 0;
}

.video_area p {
    margin-bottom: 20px;
}

.video_area h2 {
    margin-bottom: 0;
}


.contact_form {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    gap: 16px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

section.contact_us_form {
    background-color: var(--primary-color);
    text-align: center;
    padding: 80px 0;
}

section.contact_us_form .form-control {
    border-radius: 0;
}

section.contact_us_form .btn.btn-primary {
    padding: 14px 40px;
    display: block;
    margin: 0 auto;
}

.contact_description {
    padding-bottom: 50px;
}


.contact_description h2, .contact_description p {
    color: var(--white);
}


.contact_description h2 {
    margin-bottom: 0;
}


.btn.btn-primary {
    background-color: #8c0809;
    border: 1px solid #8c0809;
    padding: 7px 40px;
    border-radius: 0;
}

.contact_form input {
    border: 0;
    padding: 15px;
}


section.gallery_img {
    display: flex;
    align-items: center;
}

/* About Us */


.inner_banner_wrap {
    background-image: url(images/about-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0 150px;
    background-position: 100%;
    position: relative;
}

.inner_banner_wrap:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 30%);
    z-index: 0;
}

.inner_banner_text h2 {
    color: var(--white);
    font-size: 36px;
}


.gallery_abt img {
    max-width: 640px;
    width: 100%;
}

.gallery_abt {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    gap: 15px;
}
.gallery_abt br {
    display: none;
}

.inner_page {
    /* padding-top: 100px; */
    padding: 70px 0 80px;
}

span.italic {
    font-style: italic;
    padding-top: 10px;
    display: block;
}


/*  Boat Page*/

span.strong {
    font-weight: bold;
    padding-bottom: 20px;
    display: block;
}

/* Rates */

.charter_descrption table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}

.charter_descrption table td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.charter_descrption h3 {
    margin-bottom: 5px;
}

.inner_banner_text {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Contact */

.form-3 {
    display: flex;
    justify-content: space-between;
}

.form-3 .mb-3.form-field {
    width: calc(52% - 20%);
}

.mb-3.form-field-address {
    width: calc(70% - 30%);
}

.form-select:focus, .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.reservation_form .btn.btn-primary {
    margin: 20px 0;
}

textarea.form-control {
    resize: none;
}

.agreement {
    padding-bottom: 20px;
    display: block;
}

.mb-3.form-field-short {
    width: calc(40% - 22%);
}

.btn.btn-primary:hover {
    background-color: var(--dark-red);
}

.read_more_btn a:hover {
    background-color: var(--dark-red);
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border-color: var(--dark-red);
}

.charter_descrption .form-control {
    border-radius: 0;
}

.charter_descrption .form-select {
    border-radius: 0;
}

/* --------------------------------------------------- */


/* tournaments page */

.inner_page.tournament {
    padding: 70px 0 0;
}

.tournaments-wrap {
    padding-bottom: 60px;
}

.tournaments-inner {
    text-align: center;
}

.tournaments-inner h2 {
    font-size: 40px;
}

.tournaments-inner P:not(:last-child) {
    margin-bottom: 16px;
}

.tournaments-inner P:last-child {
    font-size: 22px;
}

.tournament-timing-wrap {
    background-color: var(--primary-color);
}

.tournament-timing-inner {
    padding: 60px 0;
    color: var(--white);
}

.timing-head {
    text-align: center;
    margin-bottom: 60px;
}

.timing-head a {
    color: var(--white);
}

.timing-head a:hover {
    text-decoration: underline;
}

.timing-head img {
    margin-bottom: 16px;
}

.timing-list {
    padding: 0 40px;
}

.timing-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    list-style: unset;
}

.timing-list ul li {
    list-style: unset;
}

.timing-list ul h5 {
    font-size: 16px;
}

.timing-note {
    margin-top: 40px;
    padding: 30px 30px;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.tournament-details-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tournament-details {
    display: flex;
    flex-direction: column;
}

.tournament-details p {
    margin-bottom: 16px;
}

.tournament-details a {
    color: var(--white);
}

.tournament-details a:hover {
    text-decoration: underline;
}

.tournament-details-img {
    margin-top: auto;
}

.tournament-details-img img {
    max-width: 100%;
    width: 100%;
}


/* kona fishing report page */

.fishing-report-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fishing-report {
    background-color: var(--white);
    padding: 4px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.fishing-report:hover {
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 30px 0 rgba(0,0,0,.15);
}

.fishing-report-img {
    position: relative;
    height: 450px;
}

.fishing-report-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

p.category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    padding: 7.2px 14.4px;
    border-radius: 99px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: var(--medium-weight);
}

.fishing-report-text {
    padding: 26px 16px;
}

.fishing-report-text a:first-child {
    font-size: 22px;
    font-weight: var(--medium-weight);
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: unset;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fishing-report:hover .fishing-report-text a:nth-child(1) {
    color: var(--primary-color);
}

.fishing-report-text p {
    margin-bottom: 12px;
    line-height: unset;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fishing-report-text a:last-child {
    font-size: 14px;
    font-weight: var(--medium-weight);
    text-transform: uppercase;
    color: var(--primary-color);
}

.fishing-report-text a:last-child i {
    padding-left: 6px;
}


/* footer */

.footer-wrap {
    background-color: var(--light-grey);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 70px 0 64px;
}

.footer-logo {
    margin-bottom: 36px;
}

.footer-logo img {
    max-width: 200px;
    width: 100%;
}

.footer-social .footer-head {
    margin-bottom: 18px;
}

.footer-social a i {
    font-size: 20px;
    color: var(--text-color);
    padding-right: 16px;
}

.footer-social a i:hover {
    color: var(--primary-color);
}

.footer-head {
    margin-bottom: 24px;
}

.footer-head h4 {
    font-weight: var(--semi-bold-weight);
    font-size: 20px;
    color: var(--text-color);
    margin: 0;
    line-height: unset;
}

.footer-links li:not(:last-child) {
    margin-bottom: 19px;
}

.footer-links li a {
    font-size: 18px;
    color: var(--text-color);
    line-height: 22px;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-address, .footer-call, .footer-email {
    display: grid;
    grid-template-columns: 26px 1fr;
    margin-bottom: 24px;
}

.footer-address h5, .footer-call h5, .footer-email h5 {
    line-height: 1;
    font-weight: var(--semi-bold-weight);
    margin-bottom: 24px;
}

.footer-address i, .footer-call i, .footer-email i {
    font-size: 18px;
    color: var(--primary-color);
}

.footer-call a, .footer-email a {
    color: var(--text-color);
}

.footer-call a:hover, .footer-email a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    padding: 18px;
    text-align: center;
    border-top: 1px solid var(--text-color);
}

.footer-copyright img {
    margin-bottom: 24px;
}

.footer-copyright p {
    font-size: 18px;
    color: var(--text-color);
    line-height: unset;
    text-align: center;
	display: inline-block;
	margin-right:3px;
}