section.introduction-montage{
    padding:0 5%;
    margin:75px 0;
    
}

section.introduction-montage .max-width{
    max-width:var(--max-width);
    margin:0 auto;
    
}
/* OUTER WRAPPER */
section.introduction-montage .wrapper{
    display: flex;
    margin:0;
    gap:5%;
    align-items:center;
}
/* INNER WRAPPER FOR IMAGE MONTAGE */
section.introduction-montage .row {
    display: flex;
    align-items: center;
    gap:10px;
    
}
/* OUTER COLUMNS */
section.introduction-montage  .wrapper .col.col-6{
    margin:0;
    flex:0 0 47.5%;
}
/* INNER COLUMNS */
section.introduction-montage  .row .col.col-6{
    margin:0;
    flex:0 0 calc(50% - 5px);
}

section.introduction-montage .col.column{
    display:flex;
    flex-direction:column;
    gap:10px;
}

section.introduction-montage a.phone-number{
    display:flex;
    flex-direction:row;
    color:var(--font-color);
    gap:15px;
    align-items:center;
    width:fit-content;
    border:none;
}

section.introduction-montage a.phone-number .col.phone-col{
    display:flex;
    flex-direction:column;
    
}

section.introduction-montage a.phone-number .phone-title{
    text-transform:uppercase;
    font-weight:700;
    line-height:0.5em;
}

section.introduction-montage a.phone-number .phone-number{
    text-transform:uppercase;
    font-weight:700;
    font-size:2em;
}

section.introduction-montage a.phone-number:before {
    content: '\f095';
    font-family: 'Font Awesome 5 Pro';
    background: var(--yellow-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex:0 0 auto;
    font-size: 36px;
    font-weight: 300;
    transform: scaleX(-1);
    transition:all 0.3s;
}

section.introduction-montage a.phone-number:hover:before{
    color:var(--yellow-color);
    background:var(--blue-color);
}

section.introduction-montage.col h2{
    
}

section.introduction-montage.col p{
    font-size: 1em;
    font-weight: 500;
    line-height: 1.75em;
}

section.introduction-montage .col img{
    width:100%;
    height:auto;
    display:block;
}


@media screen and (max-width:920px){
    section.introduction-montage{
        margin:30px 0;
    }

    section.introduction-montage .photo-montage{
        display:none;
    }
    section.introduction-montage .wrapper{
        display: flex;
        margin:0px;
        flex-direction:column;
    }
    section.introduction-montage .col {
        margin: 0;
        flex: 0 0 calc(100% - 80px);
    }
}