@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

/* CSS Rules for transition */
.reveal
{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease;
}
.reveal.active
{
    transform: translateY(0px);
    opacity: 1;
}

/* CSS Rules for header effect */
.header.header-scrolled
{
    background-color: #081b29;
    opacity: 0.85;
}

/* CSS Rules for Widgets-effect */
.float-icons.widgets-show
{
    opacity: 1;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
}
body
{
    background: #081b29;
}

/* CSS Rules for header */
.header
{
    border: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    transition: .5s ease-in-out;
    z-index: 2;
}
.logo a
{
    background-image: linear-gradient(to right, #ededed 0%, #ededed 20%, #00abf0 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 25px;
    font-weight: 1000;
}
.navbar
{
    border: transparent;
    display: flex;
    justify-content: space-evenly;
}
.navbar a
{
    border: transparent;
    color: #ededed;
    font-size: 20px;
    font-weight: 500;
    margin: 0 10px;
    transition: all .5s ease-in-out;
}
.navbar a:hover
{
    color: #00abf0;
}
.navbar a.color-active
{
    color: #00abf0;
    transition: .5s ease-in-out;
}

@media screen and (max-width: 600px)
{
    .header
    {
        flex-direction: column;
        min-width: 0;
        padding: 30px 5% 20px;
    }
    .navbar
    {
        margin: 2% 0 0;
        width: 100%;
        flex-wrap: wrap;
    }
    .navbar a
    {
        font-size: 15px;
        margin: 0 5px;
    } 
}

/* CSS Rules for Intro */
.cover
{
    border: transparent;
    width: 100%;
    margin: 5% 0 0 0;
    display: flex;
    justify-content: space-around;
    align-content: center;
    transition: all .5s ease-in-out;
}
.cover-txt
{
    border: transparent;
    margin: 18% 0 5% 10%;
    width: 40%;
    height: 30%;
    display: grid;
    transition: all .5s ease-in-out;
}
.cover-txt h1
{
    color: #ededed; 
    font-size: 50px;
}
.cover-txt h3
{
    font-size: 24px;
    background-image: linear-gradient(to right, #ededed 0%, #ededed 10%, #00abf0 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.cover-btn
{
    color: #ededed;
    border: solid #00abf0;
    overflow: hidden;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
    width: 25%;
    text-align: center;
    margin: 10px 0;
    padding: 5px;
    position: relative;
    transition: all .7s ease-in-out;
}
.cover-btn:hover
{
    z-index: 1;
}
.cover-btn::after
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00abf0;
    transition: all .5s ease-in-out;
    z-index: -1;
}
.cover-btn:hover::after
{
    width: 100%;
}
.cover-img
{
    border: transparent;
    margin: auto;
    width: 30%;
    animation: expand 5s infinite;
}
@keyframes expand
{
    0%
    {
        transform: scale(1.05);
    }
    50%
    {
        transform: scale(1.0);
    }
    100%
    {
        transform: scale(1.05);
    }
}
.experience-img
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 2% auto;
}
.experience-img a
{
    border: transparent;
    width: 9%;
    margin-right: 4%;
}
.experience-img a img
{
    display: center;
    width: 100%;
    transition: 0.3s ease-in-out;
}
.experience-img a img:hover
{
    transform: scale(1.2);
}

@media screen and (max-width: 600px)
{
    .cover
    {
        min-width: 0;
        margin-top: 37%;
        flex-direction: column-reverse;
    }
    .cover-txt
    {
        margin: auto;
        width: 90%;
        text-align: center;
    }
    .cover-txt h1
    {
        font-size: 40px;
    }
    .cover-txt h3
    {
        font-size: 18px;
    }
    .cover-btn
    {
        margin: auto;
        margin-top: 15px;
        width: 40%;
    }
    .cover-img
    {
        width: 80%;
        margin: 0 auto 5%;
    }
    .experience-img
    {
        width: 60%;
        justify-content: space-around;
    }
    .experience-img a
    {
        width: 20%;
        margin: 0 auto;
    }
    .experience-img a img
    {
        width: 100%;
        margin: auto;
    }
}

/* CSS Rules for about */
.about
{
    margin-top: 5%;
    border: transparent;
    transition: all .5s ease-in-out;
}
.section-title
{
    margin: 10px auto;
    border: transparent;
    font-size: 30px;
    text-align: center;
    width: fit-content;
    background-image: linear-gradient(to right, #ededed 0%, #ededed 20%, #00abf0 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.about-info
{
    border: transparent;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    transition: .5s ease;
}
.about-txt p
{
    color: #ededed;
    border: transparent;
    font-size: 15px;
    width: 80%;
    height: auto;
    padding: 3%;
    margin: 3% 0 3% 10%;
}
.about-img
{
    width: 30%;
    height: auto;
    margin: 3% 10% 3% 0;
}
@media screen and (max-width: 600px)
{
    .about
    {
        min-width: 0;
        margin-top: 25%;
    }
    .section-title
    {
        font-size: 20px;
    }
    .about-info
    {
        width: 95%;
        flex-direction: column-reverse;
    }
    .about-txt p
    {
        margin: auto;
        width: 90%;
        font-size: 75%;
        text-align: center;
    }
    .about-img
    {
        margin: 7% auto 0;
        width: 40%;
    }
    #line-1
    {
        width: 30%;
    }
    #line-2
    {
        width: 35%;
    }
}

/* CSS Riles for Experience */
.experience
{
    margin-top: 7%;
    border: transparent;
    transition: .5s ease-in-out;
}
.experience-categories
{
    border: transparent;
    width: 90%;
    margin: auto;
    margin-top: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: top;
}
.experience-category
{
    border: transparent;
    border-bottom: dashed;
    border-radius: 5px;
    color: white;
    margin: 1% auto;
    padding: 2% 1%;
    width: 500px;
}
.experience-category h3
{
    color: #00abf0;
    text-align: center;
}
.experience-category h4,p
{
    color: white;
    text-align: center;
}

@media screen and (max-width: 600px)
{
    .experience
    {
        min-width: 0;
        margin-top: 25%;
    }
    .experience-categories
    {
        flex-direction: column;
    }
    .experience-category
    {
        width: 95%;
        margin-top: 7%;
    }
}

/* CSS Riles for Projects */
.projects
{
    margin-top: 7%;
    border: transparent;
    width: 100%;
    display: grid;
    transition: all .5s ease-in-out;
}
.projects-divisions
{
    border: transparent;
    margin: auto;
    padding: 0 2%;
}
.project-division
{
    border: transparent;
    border-radius: 5px;
    padding: 1%;
    width: 80%;
    margin: 2% 0;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.project-division:hover
{
    scale: 1.02;
}
.project-img
{
    border: transparent;
    border-radius: 5px;
    width: 50%;
    margin: 0 1%;
    transition: all .5s ease-in-out;
}
.project-division-txt
{
    border: transparent;
    padding: 1% 0;
}
.project-division-txt p
{
    text-align: left;
}
.project-division-txt h3
{
    color: #00abf0;
    text-align: left;
}
.small-rotate, .big-rotate
{
    margin: auto;
}
.small-rotate
{
    width: 5%;
    animation: rotate 3s infinite;
}
.big-rotate
{
    width: 8%;
    animation: rotate 3s infinite;
}
@keyframes rotate
{
    0%
    {
        rotate: 360deg;
    }
}
.float-left
{
    float: left;
}
.float-right
{
    float: right;
}
.lang-tags
{
    border: transparent;
    width: 100%;
    margin: 4% 0 5%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.lang-tags h4
{
    padding: 1%;
    margin-right: 3%;
    margin-top: 1%;
    border-radius: 5px;
    background-color: #00abf0;
    color: white;
}
.S-Btn
{
    border: solid #00abf0;
    border-radius: 5px;
    padding: 2%;
    color: white;
    transition: all .5s ease-in-out;
}
.S-Btn:hover
{
    background: #00abf0;
}

@media screen and (max-width: 600px)
{
    .projects
    {
        min-width: 0;
        margin-top: 25%;
    }
    .projects-divisions
    {
        flex-direction: column;
        display: grid;
    }
    .project-division
    {
        width: 95%;
        margin: 3% auto 5%;
        flex-direction: column;
    }
    .project-img
    {
        width: 100%;
        margin: 0;
    }
    .project-division-txt, .project-division-txt h3, .project-division-txt p
    {
        text-align: center;
    }
    .lang-tags
    {
        width: 70%;
        margin: 5% auto;
        justify-content: space-evenly;
        align-items: center;
    }
    .S-Btn
    {
        display: grid;
        width: 30%;
        margin: 5% auto;
    }
}
/* CSS Rules fpr Float Icons */
.float-icons
{
    border: transparent;
    width: 7%;
    position: sticky;
    bottom: 5px;
    left: 92%;
    transition: all .5s ease-in-out;
    opacity: 0;
}
.float-whatsapp
{
    border: transparent;
    width: 50%;
    margin-left: 30%;
    transition: all .5s ease-in-out;
}
.float-whatsapp:hover
{
    transform: scale(1.05);
}
.float-top
{
    border: transparent;
    width: 40%;
    margin-left: 55%;
    transition: all .5s ease-in-out;
}
.float-top:hover
{
    transform: scale(1.05);
}

@media screen and (max-width: 600px)
{
    .float-icons
    {
        width: 20%;
    }
}

/* CSS Rules for Services */
.services
{
    border: transparent;
    width: 100%;
    margin-top: 7%; 
    transition: all .5s ease-in-out;
}
.services-divisions
{
    border: transparent;
    width: 100%;
    display: flex;
    margin: 2% 0 0;
    padding: 1% 0;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: top center;
}
.services-division
{
    border: transparent;
    border-left: dashed;
    border-right: dashed;
    border-radius: 5px;
    margin: 2% 0.5%;
    display: grid;
    padding: 1%;
    width: 300px;
    text-align: center;
    transition: all .5s ease-in-out;
}
.services-division:hover
{
    scale: 1.02;
    box-shadow: 5px 5px 15px;
    border: none;
}
.services-division img
{
    width: 40%;
    margin: auto;
}
.services-division h3
{
    color: #00abf0;
}
.services-division p
{
    color: white;
}
.services-division a
{
    border: solid #00abf0;
    border-radius: 5px;
    width: fit-content;
    margin: 5% auto 0;
    padding: 2%;
    color: white;
    transition: all .5s ease-in-out;
}
.services-division a:hover
{
    background-color: #00abf0;
}
.services-info
{
    border: transparent;
    width: 70%;
    margin: 3% auto 0;
    font-size: 25px;
    text-align: center;
    font-family: 'Dancing Script', cursive;
}

@media screen and (max-width: 600px)
{
    .services
    {
        min-width: 0;
        margin-top: 20%;
    }
    .services-divisions
    {
        padding: 0;
    }
    .services-division
    {
        width: 150px;
        border: none;
        margin: 5% 0;
        padding: 1%;
    }
    .services-division p
    {
        font-size: 13px;
    }
    .services-division a
    {
        margin: 10% auto 0;
        padding: 5%;
        font-size: 13px;
    }
    .services-info
    {
        width: 80%;
        font-size: 15px;
        margin-top: 10%;
    }
}

/* CSS Rules for Footer */
.footer
{
    border: transparent;
    border-radius: 50px 50px 0 0;
    box-shadow: 5px 5px 15px;
    background-image: linear-gradient(to bottom, #081b29 0%, #040e15 100%);
    width: 95%;
    margin: auto;
    transition: .5s ease;
}
.footer-container
{
    border: transparent;
    border-radius: 5px;
    width: 95%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: top center;
}
.footer-container .section-1
{
    border: transparent;
    width: 35%;
}
.footer-container .section-1 .footer-logo
{
    border: transparent;
    display: grid;
    width: 15%;
    margin: 5% auto;
}
.footer-container .section-2
{
    border: transparent;
    display: grid;
    width: 35%;
    padding: 3% 1%;
    text-align: center;
}
.footer-container .section-2 h3
{
    color: #00abf0;
    font-size: 20px;
}
.footer-container .section-2 p
{
    color: white;
    font-size: 13px;
}
.footer-container .section-3
{
    border: transparent;
    width: 17%;
    padding: 0.5%;
    margin: 10% 0 0 0;
}
.footer-container .section-3 .enclosure
{
    border: transparent;
    width: 60%;
    padding: 5% 0;
    margin: auto;
    display: grid;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.footer-container .section-3 .enclosure:hover
{
    cursor: pointer;
    img
    {
        width: 30%;
        animation: scale 3s infinite;
    }
    h4,h3
    {
        bottom: 0;
    }
}
@keyframes scale
{
    0%
    {
        transform: scale(1.0);
    }
    50%
    {
        transform: scale(1.1);
    }
    100%
    {
        transform: scale(1.0);
    }
}
.footer-container .section-3 .enclosure .s-logo
{
    width: 50%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.footer-container .section-3 .enclosure h4
{
    color: #ffffff;
    text-align: center;
    position: relative;
    bottom: -100px;
    font-size: small;
    transition: all .5s ease-in-out;
}
.footer-container .section-3 .enclosure h3
{
    text-align: center;
    background-image: linear-gradient(to right, #ffffff 0%, #00abf0 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    position: relative;
    bottom: -100px;
    font-size: medium;
    transition: all .5s ease-in-out;
}
.footer-links
{
    border: transparent;
    width: 40%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.footer-links img
{
    height: 30px;
    margin-left: 5%;
}
.footer-links a
{
    border: solid transparent;
    color: white;
    text-align: left;
    margin-left: 5px;
    width: 100%;
    font-weight: 500;
    transition: all .5s ease-in-out;
}
.footer-links a:hover
{
    color: #00abf0;
}
.copyright
{
    border: solid transparent;
    width: 50%;
    margin: auto;
    margin-top: 50px;
    text-align: center;
    background-image: linear-gradient(to right, #ededed 0%, #ededed 20%, #00abf0 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

@media screen and (max-width: 600px)
{
    .footer
    {
        min-width: 0;
        padding: 5% 0 0;
    }
    .footer-container
    {
        width: 90%;
        margin: 5% auto 0;
        flex-direction: column;
    }
    .footer-container .section-1
    {
        width: 95%;
        margin: auto;
    }
    .footer-container .section-1 .footer-logo
    {
        display: grid;
        width: 20%;
        margin: 0 auto 10%;
    }
    .footer-container .section-2
    {
        margin: 10% auto 5%;
        width: 95%;
    }
    .footer-container .section-2 h3
    {
        margin-top: 3%;
        margin-bottom: 5%;
    }
    .footer-container .section-3
    {
        width: 40%;
        margin: 5% auto 0;
    }
    .footer-links
    {
        width: 65%;
    }
    .footer-links a
    {
        margin-left: 5px;
    }
    .footer-links img
    {
        margin-left: 15%;
    }
    .copyright
    {
        margin-top: 0;
        width: 90%;
        font-size: 10px;
    }
}
