#infosec {
    .icons {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;

        .icon {
            width: 80px;
            height: 80px;
            display: flex;
            justify-content: flex-start;
            align-items: center;

            img {
                height: 100%;
                width: auto;
                max-width: 100%;
            }
        }

        .icon-text {
            height: 100%;
            width: fit-content;
            max-width: 200px;
            padding-left: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;

            p.icon-title {
                font-weight: 300;
                font-size: 1.2rem;
                line-height: 1.6rem;
                margin-bottom: 0;
                text-wrap: wrap;
            }

            p.icon-subtitle {
                font-weight: 600;
                font-size: 1.2rem;
                line-height: 1.6rem;
                margin-bottom: 0;
                text-wrap: wrap;
            }
        }
    }

    .location {
        .row {
            .col-lg-4 {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 2rem;
            }
        }

        .boxed-text {
            width: 100%;
            padding: 20px;
            border: 1px solid #000;

            h3 {
                font-weight: 500;
                font-size: 1rem;
                line-height: 1.5rem;
            }

            p {
                font-size: 0.9rem;
                line-height: 1.3rem;
                font-weight: 300;
                margin-bottom: 0;
            }
        }

        .map {
            width: 100%;
            overflow: hidden;

            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

@media only screen and (max-width: 991px) {
    #infosec {
        .map {
            padding-bottom: 1rem; 
        }

        .icons .icon-text {
            height: 100%;
            width: 200px;
        }
    }
}

@media only screen and (max-width: 768px) {
    #infosec {
        .icons {
            justify-content: center;

            .icon {
                height: 50px;
                width: 50px;
            }

            .icon-text {
                height: 100%;
                width: 150px;

                p.icon-title {
                    font-size: 0.9rem;
                    line-height: 1.1rem;
                }

                p.icon-subtitle {
                    font-size: 0.9rem;
                    line-height: 1.1rem;
                }
            }
        }
    }
}

@media only screen and (max-width: 480px) {
    #infosec {
        .icons {

            .icon   {
                width: 35px;
                height: 35px;
            }

            .icon-text {
                height: 100%;
                width: 115px;

                p.icon-title {
                    font-size: 0.7rem;
                    line-height: 0.9rem;
                }

                p.icon-subtitle {
                    font-size: 0.7rem;
                    line-height: 0.9rem;
                }
            }
        }
    }
}