.guide-image-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 1em;
}

.guide-fade-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1000px;
}

.fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 60%, white 100%);
}

.gray-section {
    background-color: #F9F9F980;
    padding-top: 1px;
    padding-bottom: 1px;
}

.guide-content {
    margin: 2em auto 1em auto;
    display: flex;
    flex-direction: column;
}

.guide-content h3 {
    margin: 0;
}

.guide-content h3:first-of-type {
    margin-top: 1em;
}

.guide_blue-text {
    margin-bottom: 0.5em;
    margin-top: 0.5em;
    font-weight: 600;
}

.presentation-content {
    margin: 2em auto 2em auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.presentation-content h2 {
    color: #01406B;
    margin: 0;
}

.presentation-container div img {
    max-height: 500px;
    box-shadow: 1px 4px 20px 0px #09558726;
}

.presentation-container {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    text-align: center;
}

.presentation-container h3 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: #01406B;
    margin-bottom: 0.5em;
}

.presentation-subcontainer {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.sf-section {
    background-color: #EFF3F9;
}

.hero-img {
    display: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/Content/assets/img/sf_hero_small.png") no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

#searchCompany > div:first-of-type {
    width: 50%;
}

@media only screen and (min-width: 640px) {
    
    .hero-section::after {
        display: none;
    }
    
    .presentation-subcontainer {
        align-items: center;
        text-align: start;
    }
    
    .hero-img {
        display: inherit;
    }

    .first-grid-item {
        grid-area: first;
    }
    
    .second-grid-item {
        grid-area: second;
    }

    .presentation-subcontainer {
        display: grid;
        grid-template-areas: "first second";
        grid-template-columns: 1fr 1fr;
        column-gap: 10%;
    }
    
    .presentation-container h3 {
        font-size: 24px;
    }
    
    .presentation-content {
        text-align: left;
    }
}

#searchCompany > div:first-of-type {
    width: 60%;
}

@media only screen and (min-width: 1200px) {
    .presentation-container h3 {
        font-size: 30px;
    }
}

/* SF Section */

.sf-section {
    padding-top: 2em;
    padding-bottom: 3em;
}

.sf-container {
    width: var(--small-size-width);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-search {
    margin-top: 20px;
    background-color: var(--dark-blue);
    padding: 20px 0;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 200px;
}


.sf-header {
    margin-top: 0;
    margin-bottom: 0;
    color: #01406B;
}

.sf-search_header {
    color: #fff;
    margin-bottom: 3px;
}

.sf-search_description {
    font-size: .8em;
    font-style: italic;
    opacity: .6;
    margin-top: 10px;
    color: #fff;
}

.sf-description {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

#searchCompany input {
    width: 100%;
    text-overflow: ellipsis;
}



@media only screen and (min-width: 640px) {
    .sf-search {
        font-size: 0.83em;
        padding: 35px;
        width: 80%;
        max-width: 500px;
    }
    
    .sf-input_holder {
        width: 60%;
    }
    
    .sf-description {
        margin-top: 30px;
    }
    
}

@media only screen and (min-width: 1200px) {
    
    .sf-search {
        max-width: 500px;
        height: 240px;
        justify-content: center;
    }
    
    .sf-container {
        width: var(--medium-size-width);
    }
    
}

@media only screen and (min-width: 1700px) {
    .sf-container {
        width: var(--standard-size-width);
    }
    
}


@media only screen and (min-width: 1950px) {
    .sf-container {
        width: var(--ultra-size-width);
    }
}