@font-face {
    font-family: "Playfair Display";
    src: url("assets/fonts/PlayfairDisplay-Medium.woff2") format("woff2"),
         url("assets/fonts/PlayfairDisplay-Medium.woff") format("woff"),
         url("assets/fonts/PlayfairDisplay-Medium.ttf") format("ttf");
}

@font-face {
    font-family: "Hanken Grotesk";
    src: url("assets/fonts/HankenGrotesk-Light.woff2") format("woff2"),
         url("assets/fonts/HankenGrotesk-Light.woff") format("woff"),
         url("assets/fonts/HankenGrotesk-Light.ttf") format("ttf");
}

:root {
    /* override of the Bootstrap 5 default font with Playfair Display with font-weight: 500 */
    --bs-body-font-family: "Playfair Display", serif;
    /* creating an additional font variable with Hanken Grotesk with font-weight: 300 */
    --our-font-family: "Hanken Grotesk", sans-serif;

    /* our custom colors */
    --our-black-1: #000000;
    --our-black-2: #1F1F1F;
    --our-black-3: #444444;
    --our-black-4: #212529;

    --our-grey-1: #dddddd;
    --our-grey-2: #BBBBBB;
    --our-grey-3: #e9ecef;

    --our-orange-1: #D4AC64;
    --our-orange-2: #ddbd83; /* -20% */
    --our-orange-3: #e5cda2; /* -40% */

    --our-white-1: #ffffff;
    --our-white-2: #F4F4F4;

    /* our custom box-shadow */
    --our-shadow-1: 0 0 0 0.2rem rgba(212, 172, 100, 0.35);
    --our-shadow-2: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);

}

*, 
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("assets/background/background1.jpg");
    background-color: var(--our-white-1);
    background-repeat: repeat;
}

/* our custom containers ----- ----- */
.our-container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
}

.our-container-nav {
    max-width: 1204px;
    margin: 0 auto;
}

.our-container-hi {
    max-width: 1180px;
    margin: 0 auto;
}

/* padding for the our container */
.container-p20 {
    padding-left: 20px;
    padding-right: 20px;
}

.container-pt50 {
    padding-top: 50px;
}

.container-pb150 {
    padding-bottom: 90px; /* padding-botom - 90 / 120 / 150px for different screen sizes*/
}

/* our custom title elements ----- ----- */
.our-title-1 {
    font-size: 30px;  /* 36px for screen sizes larger than 768px */
    line-height: 40px;  /* 48px for screen sizes larger than 768px */
    color: var(--our-black-2);
    padding-top: 20px;
    margin-bottom: 0px;
}

.our-title-2b, .our-title-2bl {
    font-size: 30px;
    line-height: 40px;
    padding-top: 90px;   /* padding-top - 90 / 120 / 150px for different screen sizes*/
    margin-bottom: 0px;
}

.our-title-2b {
    color: var(--our-black-1);
}

.our-title-2bl {
    color: var(--our-black-2);
}

.our-title-3 {
    font-size: 24px;
    line-height: 32px;
    color: var(--our-black-1);
    padding-top: 50px;
    margin-bottom: 0px;
}

/* our custom text elements ----- ----- */
.our-text-1 {
    font-family: var(--our-font-family);
    color: var(--our-black-2);
    padding-top: 20px;
    margin-bottom: 0px;
}

.our-text-2 {
    font-family: var(--our-font-family);
    color: var(--our-black-3);
    padding-top: 20px;
    margin-bottom: 0px;
}

/* our custom navbar css  ----- -----  */

.our-nav-btn {
    text-decoration: none;
    font-size: 20px;
    line-height: 26px;
    color: var(--our-black-2);
    background-color: var(--our-orange-1);
    padding: 9px 23px;
    cursor: pointer;
}

.our-nav-btn:hover {
    color: var(--our-black-2);
    background-color: var(--our-orange-2);
}

.our-dropdown-active {
    background-color: var(--our-grey-3);
}

.our-dropdown:active {
    background-color: var(--our-grey-3);
    color: var(--our-black-4);
}

/* our custom card elements ----- ----- */

.ourcard {
    max-width: 280px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    background-color: var(--our-white-1);
}

.ourcard:hover {
    box-shadow: var(--our-shadow-2);
}

.ourcard-mt-30 {
    margin-top: 30px;
}

.ourcard-holder {
    flex: 1;
}

.ourcard-title1 {
    height: 64px;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 32px;
    color: var(--our-black-2);
    margin-bottom: 20px;
}

.ourcard-img {
    width: 100%;
}

.ourcard-text {
    font-family: var(--our-font-family);
    color: var(--our-black-2);
    line-height: 20px;
    padding-top: 20px;
    margin-bottom: 30px;
} 

.ourcard-links a {
    text-decoration: none;
    color: var(--our-black-3);
    font-size: 18px;
    line-height: 24px;
}

.ourcard-links svg {
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

.ourcard-links a:hover, .ourcard-links svg:hover {
    color: var(--our-orange-1);
}

.ourcard1 {
    max-width: 280px;
    margin: 0 auto;
    padding: 15px;
}

.ourcard1-img {
    max-width: 220px;
    margin-left: 20px;
}

.ourcard1-circle {
    width: 40px;
    height: 40px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: var(--our-black-2);
    background-color: var(--our-orange-1);
    padding: 0 6px; 
}

.ourcard1-title {
    font-size: 24px;
    line-height: 32px;
    color: var(--our-black-2);
    margin-top: 30px;
    margin-bottom: 20px;
    height: 64px;
    max-width: 180px;
}

.ourcard1-text {
    font-size: 16px;
    line-height: 30px;
    color: var(--our-black-3);
    font-family: var(--our-font-family);
    margin: 0;
}

/* our custom form elements ----- ----- */
.our-title-f {
    font-size: 18px;
    line-height: 24px;
    color: var(--our-black-2);
    font-family: var(--our-font-family);
    margin-top: 30px;
}

.our-no-mb {
    margin-bottom: 0px;
}

.our-title-f1 {
    font-size: 18px;
    line-height: 24px;
    color: var(--our-black-2);
    font-family: var(--our-font-family);
}

.our-form-pt {
    padding-top: 38px;
}

.our-form-mt1 {
    padding-top: 20px;
}

.our-form-i:focus {
    border-color: var(--our-grey-1);
    box-shadow: var(--our-shadow-1)
} 

.our-btn-f {
    background-color: var(--our-orange-1);
    color: var(--our-black-2);
    border: none;
    font-size: 20px;
    line-height: 28px;
    padding: 9px 23px;
    margin-top: 30px;
}

.our-btn-fadd {
    width: 156px;
    text-align: center;
}

.our-btn-f:hover {
    background-color: var(--our-orange-2);
}

#inputFile {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 156px;
    z-index: -1;
}

.our-btn-f1 {
    background-color: transparent;
    width: 156px;
    color: var(--our-black-2);
    border: none;
    font-size: 20px;
    line-height: 28px;
    padding: 9px 23px;
    margin-top: 20px;
    border: 1px solid var(--our-orange-1);
    cursor: pointer;
    text-align: center;
    position: relative;
}

.our-btn-f1:hover {
    border: 1px solid var(--our-orange-2);
}

.form-line {
    height: 1px;
    background-color: var(--our-grey-1);
    margin-top: 50px;
    margin-bottom: 20px;
}

/* styles for form checkboxs are in the get-a-quote.css */

/* our custom icons section ----- ----- */
.icons-container {
    padding: 70px 0 70px 20px;
}

.our-icons {
    display: none;
    justify-content: start;
    align-items: center;
} 

.icons-btns {
    width: 50px;
    height: 50px;
    border: 1px solid var(--our-orange-1);
    background-color: var(--our-orange-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.icons-btns .our-open {
    position: absolute;
    display: block;
}

.icons-btns.our-active .our-open {
    display: none;
}

.icons-btns .our-close {
    position: absolute;
    display: none;
}

.icons-btns.our-active .our-close {
    display: block;
}

.our-open > svg, .our-close > svg {
    width: 25px;
    height: 25px;
    fill: var(--our-black-2);
    cursor: pointer;
}

.icons-links {
    display: none;
}

.icons-links.our-active {
    display: block;
}

.links-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icons-links a {
    text-decoration: none;
    margin-left: 15px;
}

.icons-links svg {
    width: 25px;
    height: 25px;
    fill: var(--our-orange-1);
    cursor: pointer;
    opacity: 0;
}

.icons-links svg:hover {
    fill: var(--our-orange-2);
}

/* animation is added via javascript in icons.js */
@keyframes iconsLinks {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* footer ----- ----- */

.our-footer {
    border-radius: 10px;
    background-color: #1F1F1F;
    padding: 20px 0 20px 20px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo > a {
    text-decoration: none;
}

.footer-icons {
    margin-top: 24px;
    margin-bottom: 24px;
}

.footer-icons > a {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background-color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
}

.footer-s1 p {
    margin-bottom: 8px
}

.footer-s1 p, .footer-s2 p {
    font-family: var(--our-font-family);
    color: var(--our-white-1);
}

.footer-info {
    width: 250px;
}

.footer-s2 h3, .footer-s3 h3 {
    color: var(--our-white-1);
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 20px;
}

.footer-table {
    width: 220px;
}

.footer-table td {
    font-family: var(--our-font-family);
    color: var(--our-white-1);
}

.footer-rights {
    font-family: var(--our-font-family);
    color: var(--our-black-3);
    margin: 20px 15px;
}


/* css media queries ----- ----- */
@media only screen and (min-width: 360px) {
    /* footer */
    .our-footer {
        padding: 20px 0 20px 40px;
    }
}

@media only screen and (min-width: 400px) {
    .icons-btns {
        width: 60px;
        height: 60px;
    }    

    .our-open > svg, .our-close > svg {
        width: 30px;
        height: 30px;
    }   
    
    .icons-links a {
        margin-left: 20px;
    }
    
    .icons-links svg {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (min-width: 460px) {
    /* footer */
    .our-footer {
        padding: 20px 0 20px 80px;
    }
}

@media only screen and (min-width: 768px) {
    .our-title-1 {
        font-size: 36px;
        line-height: 48px;
    }

    /* footer */
    .our-footer {
        padding: 20px 0 20px 20px;
    }

    .container-pb150 {
        padding-bottom: 120px;
    }

    .our-title-2b, .our-title-2bl {
        padding-top: 120px;
    }
}

@media only screen and (min-width: 992px) {
    .container-pb150 {
        padding-bottom: 150px;
    }

    .our-title-2b, .our-title-2bl {
        padding-top: 150px;
    }

    /* colored circle for active links */
    .our-nav-link, .our-nav-active {
        position: relative;
    }

    .our-nav-active::before, .our-nav-link::before {
        content: '';
        width: 38px;
        height: 38px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        transition: all 0.4s ease-in-out;
    }
    
    .our-nav-link:hover::before {
        background-color: var(--our-orange-1);
    }

    .our-nav-active::before {
        background-color: var(--our-orange-1);
    }
}

@media only screen and (min-width: 1400px) {
    .icons-container {
        padding: 90px 0 90px 20px;
    }
    
    .icons-section {
        position: fixed;
        bottom: 30px;
        left: 20px;
    }

    .our-icons {
        flex-direction: column-reverse;
        align-items: start;
    }

    .links-holder {
        flex-direction: column-reverse;
    }

    .icons-links {
        width: 60;
    }

    .icons-links a {
        margin: 0px 10px 20px 10px;
    }
}



