/*

Please, use this CSS file to style all fragment on website.
When starting a new project, remove all css from this file.

*/
.topJnodeSix .gridHolder{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 23px;
    row-gap:80px;
}
.third{
    position: relative;

}
.third img{
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.third:hover img{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .3s ease;
}
.third:hover .titleHolder{
    color: #0C71C3;
    transition: all .3s ease;
}
.imgHolder{
    overflow: hidden;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 20px;

}
.imgHolder img{
    border-radius: 20px;
    width: 100%;
}
.titleHolder{
    position: absolute;
    bottom: -60px;
    text-align: center;
    padding: 20px 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #D00234;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: 0 -10px 10px rgb(153 153 153 / 20%);
    width: 100%;
    max-width: 300px;
}

.extensionTitle{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.iframeTitle{
    flex-grow: 0;
    padding-right: 10px;
}
.divider{
    flex-grow: 1;
    height: 2px;
    background-color: #0C71C3;
}

.fragment{
    margin-bottom: 100px;
}

.topExtension3-bodyIframes{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    row-gap: 30px;
}
.topExtension3-bodyIframes .iframe-container:last-child{
    text-align: center;
}


.topExtension3-bodyIframes .iframe-container{
    margin-bottom: 0;
}
.topJnodeSix{
    padding-bottom: 50px;
}


.contactInfo-title{
    font-weight: 600;
}
.contact-detail:not(:last-child ) .elementData{
    cursor: inherit;
}
.contact-detail:last-child .elementData:hover{
    color: #0C71C3;
}