/* Installation */
@font-face {
    font-family:Inter;
    src: url('assets/Inter-Regular.ttf');
}

@font-face {
    font-family:InterBold;
    src: url('assets/Inter-Bold.ttf');
}


body{
    background: linear-gradient(270deg, #101010, #343434);
    background-size: 400% 400%;
    -webkit-animation: bgAni 30s ease infinite;
    -moz-animation: bgAni 30s ease infinite;
    animation: bgAni 30s ease infinite;
    }

.container{
    width: 1800px;
    height: 900px;
    /* background-color: red; */
    position: absolute;
    top:0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.title{
    width: 100%;
    height: 200px;
    
}
.title .img{
    width: 100%;
    height: auto;
    margin-top: 80px;
    /* background-color: #fff; */
}
.title .img img{
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 250px;

}

.title .lbl{
    font-family: Inter;
    text-transform: uppercase;
    color: #A8A8A8;
    text-align: center;
    width: 100%;
    letter-spacing: 0.5em;
    margin-top: 20px;
}

.company{
    width: 100%;
    height: 600px;
   
}
.mr{
    margin-right: 20px;
}

.mt{
    margin-top: 40px;
}
.small{
    width: 32.5%;
    height: 420px;
    float: left;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: -3px 1px 40px -2px rgba(97,97,97,0.41);
    -webkit-box-shadow: -3px 1px 40px -2px rgba(97,97,97,0.41);
    -moz-box-shadow: -3px 1px 40px -2px rgba(97,97,97,0.41);
   }

.large{
    width: 34%;
    height: 480px;
    float: left;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: -3px 1px 40px -2px rgba(97,97,97,0.41);
    -webkit-box-shadow: -3px 1px 40px -2px rgba(97,97,97,0.41);
    -moz-box-shadow: -3px 1px 40px -2px rgba(97,97,97,0.41);
}

.comp-title{
    width: 100%;
    height: 70px;
    line-height: 80px;
    padding-left: 30px;
    font-family: InterBold;
    font-size: 20px;
}

.comp-desc{
    font-family: Inter;
    text-align: justify;
    font-size: 13px; 
    width: 89%;
    height: auto;
    margin-left: 30px;
    line-height: 20px;
}

.img-bundle{
    width: auto;
    margin-left: 30px;
    margin-top: 20px;
}

.comp-btn{
    width: 100%;
    height: 60px;
    margin-top: 20px;
    /* background-color: red; */
}

.comp-btn .logo-comp{
    margin-left: 30px;
    width: 50%;
    float: left;
}

.comp-btn .btn-web a{
    display: block;
    background:  #3673E9;
    width: 80px;
    height: 40px;
    padding: 5px;
    float: left;
    font-family: Inter;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    float: right;
    margin-right: 31px;
    text-align: center;
    line-height: 40px;
}

.comp-btn .btn-web a img{
    margin-top: 5px;
}



@-webkit-keyframes bgAni {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes bgAni {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes bgAni {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}