body{
    background-color: #dbb8ed !important;
}
.logo{
    position: absolute;
    max-width: 118px;
    top: -19px;
    left: -20px;
}

.main{
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main_content{
    display: flex;
}

.bg{
    max-width: 400px;
}

.company{
    color: #f67323;

}

.btn{
    font-size: 30px;
}

@media only screen and (max-width:1024px) {
    .main_content{
        flex-wrap: wrap;
        justify-content: center;
    }
    .bg{
        width: 100%;
    }
    
}

.col-sm-4{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.section{
    background-color: white;
}

.service{
    text-align: center;
    font-size: calc(2rem + 1.5vw);
    margin: 20px 0px;
}

.row{
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;
    margin: 20px 0px;
    padding: 20px;
    align-items: center;
}

.pic{
    max-width: 400px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.section1_text{
   font-size: calc(1.5rem + 1.5vw);
   color: #f67323;
   text-shadow: 2px 2px 0px #dbb8ed, 4px 4px 0px rgba(0,0,0,0.25);
}

.pic1{
    border-radius: 50% 0 0 50%;
}

.pic2{
    border-radius: 0 50% 50% 0;
}

.btn{
    border-radius: 50px 50px 50px 0 !important;
}
.text-center{
   text-align: center;
}

.black{
    color: white;
    background-color: black;
    height: 500px;
    padding: 10px;
}

.white{
    color: black;
    background-color: white;
    padding: 10px;
    height: 500px;
    text-align: center;
}

a{
    text-decoration: none !important;
}

.text{
    text-align: center;
}

.type{
    color: #f67323;
    letter-spacing: 1px;
    font-family: monospace;
    position: relative;
}

.type::after{
    content: "|";
    position: absolute;
    right:0;
    background-color: #dbb8ed;
    color: #f67323;
    width: 100%;
    animation: typing 4s steps(21) alternate infinite;
}

@keyframes typing{
    to{
        width:0%
    }
}

@media only screen and (max-width:500px) {
    .main_content{
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 30px;
    }
    .bg{
        width: 100%;
    }
    .main{
        height: 75vh;
    }
    .pic{
        max-width: 100%;
    }
    .reverse{
        display: flex;
        flex-direction: column-reverse;
    }
}

