* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}



.title {
    font-weight: 600;
    color: white;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.ftitle{
    font-weight: 600;
    color: #edae5d;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    
}




a {
    text-decoration: none;
    color: white;
}


body {
    padding: 25px;
    color: white;
    background-color: #1a1a1d;
    display: flex;
    justify-content: center;
}


header img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin-bottom: 32px;    

    transition: transform .2s;
    position: relative;
    border: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(to right, #0f0fb9, red, orange);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

header img:hover {
    transform: scale(1.2);

}

header h4 {
    font-size: 120%;
    font-weight: 400;
    color: white;
    margin-bottom: 40px;
    margin-top:10px;
}


header h4:hover {
    color: #edae5d;

}

header {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top:20px;
}

ul {
    list-style-type: none;
}

section ul {
    margin-top: 1rem;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.dobox {
    margin-top: 1rem;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    padding-bottom: 50px;
    font-size: 150%;
}



section ul h2 {
    font-size: 150%;
    color: white;
    margin-top: 15px;
    font-weight: 400;
    margin-bottom: 0px;
    
    transition: transform .2s;
    position: relative;

}

section ul span {
    font-size: 90%;
    margin-top: 0px;

    transition: transform .5s;
    position: relative;
}
section ul span:hover{
    color: #edae5d;
}


section ul li:hover{
    transform: scale(1.2);
}

section ul li {
    width: 25rem;
    height: 8rem;
    max-width: 40rem;
    min-height: 10px;
    border-radius: 0.7rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    transition: transform .2s;
}

section ul li svg {
    width: 50px;
    height: 50px;
    max-width: 40rem;
    min-height: 50px;
}

ul.dobox li {
    width: 37rem;
    border: 2px solid transparent;
    background-image: linear-gradient(to right, #0d0d0d, #171f3a), linear-gradient(to right, red, orange);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

span {
    max-width: 80%;
    text-align: center;
    line-height: 23px;
    font-weight: 400;
}


.intext {
    color: white;
    line-height: 200%;

}



.accordion {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    background-image: linear-gradient(to top, #0d0d0d, #181c33 80%);
    padding: 30px;
    border-radius: 0.7rem;
}

.accordion p {
    font-size: 23px;
    font-weight: 300;
    line-height: 1.5;
}


.accordion h2 {
    font-weight: 500;
    
}

.accordion-item {
    background-color: #1f2e3e4f;
    margin: 1.5rem 0;
    border-radius: 0.7rem;

}

.accordion-item:last-child {
    margin-bottom: 0rem;
}
.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 2rem;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}
.accordion-item-header.active::after {
    content: "\2212";
}
.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
    padding: 2rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right,transparent, #007fff5c, transparent) 1;
}

.mail-link:hover {
    color: #edae5d;
    font-weight:400;
}



.row {
    display: flex;
    align-items: center;
}

.column {
    flex: 50%;
}


.column img {
    border-radius: 0.5rem;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
    height: auto;
}

.footerlogo {
    display: block;
    width: 10%;
    height: auto;
    max-width: 1000px;
    margin: 1rem auto;
}


.btn {
    display: inline-block;
    align-items: center;
}


.btn img {
    border-radius: 0rem;
    margin-left: 10px;
    margin-right: 10px;
}


.btn img:hover {
    transform: scale(1.2);
}



@media screen and (max-width: 1125px) {
    section ul {
        gap: 2.5rem;
        grid-template-columns: repeat(2, 2fr);
    }
    
    
    
    section ul li {
        width: 20rem;
    }
 
    .accordion p {
    font-size: 22px;
    }
    
    .footerlogo {
    width: 15%;
    }
    
}   

@media screen and (max-width: 768px) {
    section ul li {
        width: 17rem;
        max-width: 40rem;
        height: 90px;
    }

    section ul {
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    section ul span {
    font-size: 88%;
    }
    
    
    ul.dobox li {
        width: 31rem;
        height: 110px;
    }
    .btn img {
        height: 25px;
    }        
   
    
    .accordion {
    padding: 20px;
    }
    
    .footerlogo {
    width: 18%;
    }
    
}



@media screen and (max-width: 640px) {
    body {
        font-size: 14px;
    }
    
    span {
        line-height: 18px;
    }
    
    .intext {
        font-size: 62%;
        
    }
    
    .ftitle {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .title {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .dobox {
        padding-bottom: 30px;
        
        
    }

    section ul li {
        width: 9rem;
        max-width: 20rem;
        height: 70px;
    }

    section ul {
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }

    section ul h2 {
    font-size: 120%;
    }
    
    ul.dobox li {
    width: 19rem;
    height: 90px;

    }
  
   .accordion p {
    font-size: 17px;
    }
  
  
    
    section ul li svg {
    width: 35px;
    height: 35px;
    }
    
    .btn img {
        height: 20px;
    }  
    

    .row {
    display: block;
    }
    .center {
    margin-top: 1.5rem;  
    max-width: 70%;
    }
    
     .footerlogo {
    width: 23%;
    }

}


