/* Services Page CSS */

.services-header-container{
    min-height: 500px;
    background-image: linear-gradient(to right,rgba(35,31,32,0.8),rgba(35,31,32,0.8)),url(../images/serviceImages/artima-header1920x600.jpg);
}
.container-dark{
    background: #3a3a3a;
}
.services-intro{
    display: flex;
    position: relative;
    justify-content: center;
}
.services-intro-content::before{
    content: 'services.';
    color: #f3f3f3;
    opacity: 0.02;
    font-size: 300px;
    position: absolute;
    left:2%;
    top:-20%;
    font-weight: 600;
}
.services-intro-content{
    width: 60%;
    padding:60px 0px;
}
.services-intro-content h2{
    color: #f3f3f3;
    font-weight: 600;
}
.services-intro-content p{
    color: #bfbfbf;
    font-size: 18px;
}
.services1-container{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin-top: -1px;
}
.services1-content-container{
    display: flex;
    position: relative;
    justify-content: space-evenly;
    flex-flow: row wrap;
    padding-top: 50px;
}
.services1-content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex:1;
    text-align: right;
    padding:0px 100px 100px 100px;
    position: relative;
}
.services1-content::after{
    content:url(../images/serviceImages/content-shape.svg);
    position: absolute;
    right: -5%;
    top:45%;
    height:50px;
    width:50px;
}
.services1-img{
    flex:1;
}
.services1-text{
    position: relative;
    padding-left: 50px;
    border-left: 5px solid #f3f3f3;
}
.services1-text h3{
    color: #f3f3f3;
    text-align: left;
}
.services1-text p{
    color:#bfbfbf;
    text-align: left;
    font-size: 17px;
}
.services1-button{  
    text-align: left;
    margin-top: 20px;
    padding-left: 50px;
}
.services1-button a{
    color: #f3f3f3;
    border: 2px solid #4f4f4f;
    padding:5px 10px;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19) ;
}
.services1-button a:hover{
    border: 2px solid #f3f3f3;
    box-shadow: 2px 5px 6px rgba(0,0,0,0.4);
    color: #bfbfbf;
}
.services1-text-right{
    border-left: none;
    padding-right: 50px;
    border-right: 5px solid #f3f3f3;
}
.services1-text-right h3{
    text-align: right;
}
.services1-text-right p{
    text-align: right;
}
.services1-content-right{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex:1;
    text-align: right;
    padding:0px 100px 100px 100px;
    position: relative;
}
.services1-content-right::after{
    content:url(../images/serviceImages/content-shape.svg);
    position: absolute;
    left:-5%;
    transform: rotate(180deg);
    top:45%;
    height:50px;
    width:50px;
}
.contact-details-services .contact-titles{
    color: #f3f3f3;
}
.contact-details-services p{
    color: #bfbfbf;
}
.contact-design::after{
    color: #bfbfbf!important;
}
.contact-details-content a{
    color:#dbdbdb;
}






/* Media Queries */

@media (max-width:1200px){
    .services-intro-content::before{
        font-size: 200px;
        top: 0;
    }
    .services1-img img{
        height: 400px;
    }
    .services1-content::after{
        top:30%;
    }
    .services1-content-right::after{
        top:30%;
    }
}

@media (max-width:998px){
    .services1-content-container{
        flex-flow: column;
    }
    .services1-img{
        text-align: center;
        padding-bottom: 50px;
    }
}

@media (max-width:800px){
    .services-intro-content::before{
        font-size: 120px;
        top: 0;
    }
}

@media (max-width:600px){
    .services-intro-content::before{
        font-size: 100px;
        top: 0;
    }
    .services-intro-content{
        width:90%;
    }
    .services1-content{
        padding: 40px;
    }
    .services1-content-right{
        padding:40px;
    }
}

@media (max-width:450px){
    .services-header-container{
        background-image: linear-gradient(to right,rgba(35,31,32,0.8),rgba(35,31,32,0.8)),url(../images/serviceImages/artima-header450x500.jpg);
    }
    .services-intro-content::before{
        font-size: 70px;
        top: 0;
    }
    .services1-content{
        padding:10px;
    }
    .services1-content-right{
        padding:10px;
    }
    .services1-img{
        margin-top: 20px;
        overflow: hidden;
    }
    .services1-img img{
        width:320px;
    }
    .services1-text{
        padding-left: 10px;
    }
    .services1-button-right{
        margin-bottom: 20px;
    }
    .services1-button{
        text-align: center;
        padding:0;
    }
    .header-title p{
        font-size: 12px;
    }
    .header-title h1{
        font-size: 22px;
    }
    .button2 a{
        padding:10px;
    }
}