/* NOTICE:
 *
 * This file is part of akustiklaget.se.
 *
 * Copyright (C) Akustiklaget AB - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * Proprietary and confidential.
 *
 * Written by Viola Söderlund <viola.soderlund@akustiklaget.se>, 2019.
 */

/* (DESKTOP VIEW) Expansion of box. */
@media screen and (min-width: 1521px) {
    #service-page .col-sm-4 {
        width: calc(1170px * 1 / 3) !important;
    }
    
    #service-page .col-sm-4:nth-child(3) {
        width: calc(1170px + 20vw - 1170px * 2 / 3) !important;
    }
    
    #service-page .col-sm-4:nth-child(3) .box {
        height: 457px;
        margin-bottom: 0px;
    }
    
    #service-page .col-sm-4:nth-child(3) .box-icon {
        padding-top: 50px;
        margin-right: 0;
        margin-left: 0;
    }
    
    #service-page .col-sm-4:nth-child(3) .box-icon img {
        /*margin-left: 35px;*/
    }
    
    #service-page .col-sm-4:nth-child(3) h4 {
        width: 300px;
    }
    
    #service-page .col-sm-4:nth-child(3) p:nth-child(3) {
        display: none;
    }
    
    #service-page .col-sm-4:nth-child(3) p:nth-child(4) {
        visibility: visible;
        width: calc(100% - 300px - 50px - 50px);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
        opacity: 1;
        -webkit-transition: all 2s ease 2s;
        transition: all 0.6s ease 0.3s;
    }
    
    .container-large {
        margin-bottom: -100px;
    }
}

/* (MOBILE VIEW) Expansion of text. */
@media screen and (max-width: 768px) {
    #service-page .col-sm-4:nth-child(3) p:nth-child(4) {
        opacity: 1;
        position: inherit;
        visibility: visible;
    }
}