.single-port{
    padding: 7.6rem 0 5.33rem;
}

.single-port .row{
    grid-gap: 2rem 0;
}

.single-port .ports{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    grid-gap: 1rem;
    width: clamp(10px,100%,180px);
    border: 1px solid #d8e4f3c7;
    border-radius: 10px;
    margin: 0 auto;
    padding: 2rem 24px 3rem;
}

.single-port .ports>*{
    width: fit-content;
    text-transform: uppercase;
    color: var(--text);
    font-family: var(--arch);
}

.single-port .ports>*.active{
    color: var(--title);
    font-weight: 700;
    border-bottom: 3px solid var(--title);
}

.single-port .gallery{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    grid-gap: 10px;
    margin-right: -10px;
}

.single-port .gallery>*{
    display: block;
    display: -webkit-block;
}

.single-port .gallery>* figure{
    position: relative;
    width: 100%;
    height: 100%;
}

.single-port .gallery>* figure figcaption{
    position: absolute;
    inset: auto auto 0 0;
    width: 100%;
    color: var(--white);
    font-weight: 600;
    background-color: #00000066;
    padding: .5rem;
}

.single-port .gallery>* img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.single-port .gallery>*:first-child,
.single-port .gallery>*:nth-child(8n),
.single-port .gallery>*:nth-child(2),
.single-port .gallery>*:nth-child(9n),
.single-port .gallery>*:nth-child(3),
.single-port .gallery>*:nth-child(10n),
.single-port .gallery>*:nth-child(4),
.single-port .gallery>*:nth-child(11n),
.single-port .gallery>*:nth-child(5),
.single-port .gallery>*:nth-child(12n),
.single-port .gallery>*:nth-child(7),
.single-port .gallery>*:nth-child(14n){
    flex: 0 1 calc((100%/3) - 10px);
}

.single-port .gallery>*:first-child,
.single-port .gallery>*:nth-child(8n),
.single-port .gallery>*:nth-child(2),
.single-port .gallery>*:nth-child(9n){
    aspect-ratio: 1/1.07781;
}

.single-port .gallery>*:nth-child(4),
.single-port .gallery>*:nth-child(11n),
.single-port .gallery>*:nth-child(5),
.single-port .gallery>*:nth-child(12n){
    margin-top: calc(-38.5% + 10px);
    aspect-ratio: 1/1.13788;
}

.single-port .gallery>*:nth-child(3),
.single-port .gallery>*:nth-child(10n){
    aspect-ratio: 1/2.25104;
}

.single-port .gallery>*:nth-child(6),
.single-port .gallery>*:nth-child(13n){
    flex: 0 1 calc(66.7% - 10px);
    aspect-ratio: 1/.53062;
}

.single-port .gallery>*:nth-child(7),
.single-port .gallery>*:nth-child(14n){
    aspect-ratio: 1/1.08488;
}

.otherprods{
    border-top: 1px solid #EBF4FF;
    background: url(../../assets/img/otherservsbg.svg) no-repeat center;
    background-size: cover;
    padding: 40px 0 2rem;
}

.otherprods .title{
    width: clamp(10px,100%,177px);
    text-align: center;
    color: #88CDD3;
    font-family: var(-pop);
    font-size: 36px;
    line-height: 45px;
    margin: 0 auto 25px;
}

.otherprods .title strong{
    color: var(--title);
}

.otherprods .box{
    display: block;
    display: -webkit-block;
    border: 1px solid #88cdd347;
    border-radius: 10px;
    background-color: var(--white);
    padding: 2rem;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.otherprods .box:hover{
    background-color: var(--title);
    border-color: var(--title);
}

.otherprods .box .img{
    width: 100%;
    aspect-ratio: 1/.53703;
    margin-bottom: 1rem;
}

.otherprods .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.otherprods .box .tit{
    text-align: center;
    text-transform: uppercase;
    color: var(--title);
    font-family: var(--arch);
    font-size: 14px;
    font-weight: 600;
    line-height: 15px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.otherprods .box:hover .tit{
    color: var(--white);
}

@media(max-width:992px){
    .single-port{
        padding: 2rem 0;
    }
    .single-port .ports{
        width: 100%;
        align-items: flex-start;
    }
}