@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Kalam:wght@300;400;700&family=Noto+Sans+Hebrew:wght@100..900&display=swap');


:root {
    --lightcolor: #bfd7e1;
    --textcolor: #463239;
    --bgcolor: #fffcef;
    --darkcolor: #114B5F;
    --redcolor: #DD7373;
}

body {
    font-family: 'Arimo', 'Kalam', sans-serif !important;
    background-color: var(--bgcolor);
    color: var(--textcolor);
    width: 100vw;
}

/* h1, h2, h3 {
    font-family: 'Noto_Sans_Hebrew', 'Kalam', sans-serif !important;
} */

b{
    color: var(--darkcolor);
}

p {
    margin-bottom: 0;
}

footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(191, 215, 225, 0.5);
    color: var(--textcolor);
    height: 2rem;
    direction: ltr;    
    align-content: center;
}

.navbar img{
    cursor: pointer;
}

.designtitle{
    margin-top: 1rem;
}

.serviceul{
    margin-top: 0;
}

.list-group > li{
    background-color: var(--bgcolor);
}

.divspacegap{
    margin: 2rem;
}

.listicon{
    margin-inline-end: 0.5rem;
    /* color: var(--lightcolor); */
    color: var(--textcolor);
}

.paragraphspace    {
    display: block;
    margin: 0.5rem 0;
    line-height:0.5rem;
    content: " "; 
}

.textshadow{
    text-shadow: 0.1rem 0.2rem var(--lightcolor);
}

.back2top-en{
    height: 2.5rem;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
}

.back2top-he{
    height: 2.5rem;
    display: none;
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 99;
    cursor: pointer;
}

.back2top:hover{
    transform: scale(1.1);
}

.formsubmit{
    border-color: var(--redcolor);
    color: var(--redcolor);
    margin-bottom: 1rem;
}

.formsubmit:hover{
    background-color: var(--redcolor);
    border-color: var(--redcolor);
    color: var(--bgcolor);
}

.form-text{
    font-size: small;
}

.hideme{
    visibility: hidden;
}

.senddivmain{
    position: relative;
}

.sentdivframe{
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sentmessage{
    color: var(--darkcolor);
    width: max-content;
    padding: 5%;
    background-color: var(--bgcolor);
    font-weight: bold;
    border: var(--lightcolor) outset 10px;
    text-align: center;
}

.captchadiv{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.captchainner{
    color: var(--textcolor);
    width: max-content;
    padding: 5%;
    background-color: var(--bgcolor);
    font-weight: bold;
    border: var(--redcolor) outset 10px;
    text-align: center;
}


.captchimgcontainer {
    position: relative; /* Establish a containing block for absolute positioning */
    margin: auto;
    height: fit-content;
    width: fit-content;
  }
  
  .captchatext {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    z-index: 1; /* Place behind the image */
    pointer-events: none;
  }
  
  .captchaimage {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    opacity: 10;
    width: 100px; /* Make the image cover the container */
    height: 50px;
    z-index: 2; /* Place on top of the text */
    pointer-events: none; /* Prevent interaction with the image */
    background-size: cover;
    /* background-image: url('imgs/brick-wall-dark.png'); */
    background-image: url('imgs/bright-squares.png');
  }
  


/* loading */
.redtext {
    color: var(--redcolor);
}

.loadingdivframe{

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 }

 .loadinginnerdiv{
    width: max-content;
    padding: 5%;
    background-color: var(--bgcolor);
    color: var(--textcolor);
    font-weight: bold;
    border: var(--lightcolor) outset 10px;
    text-align: center;
 }

 .loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: var(--darkcolor);
    animation: loading 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loading div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.loading div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.loading div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

@keyframes loading {
    0% {
                  top: 8px;
                  height: 64px;
    }
    50%, 100% {
                  top: 24px;
                  height: 32px;
    }
}

.form-required{
    color: var(--redcolor);
    font-weight: bold;
}

.captchaexit{
    text-align: start;
    cursor: pointer;
}

@media screen and (max-width: 750px){
    .designtitle{
        text-align: center;
    }
    .img-fluid{
        max-height: 100vw;
    }
    .about-text{
        padding-top: 1rem;
    }

    .contact-border{
        border-bottom: 1px solid var(--lightcolor);
    }
}