*{ /*styling for website*/
    margin: 0;
    padding: 0;
    font-family: 'Poppings', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{ /*background and font color*/
    background: #fff;
    color: #fff;
}
#header{ /*background image styling*/
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(images/background.jpg);
    background-size: cover;
    background-position: center;
}
/***** NAV STYLING *****/
.container{
    padding:10px 5%;
}
nav{
    display: flex; /*image and links will be side by side*/
    align-items: center;
    justify-content: space-between; /*space between*/
    flex-wrap: wrap;
}
.logo{ /*Logo width*/
    width: 280px;  
}
nav ul li{ /*Lining up nav list*/
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{ /*styling for the anchor tag*/
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    position: relative;
    text-shadow: 2px 2px #262626;
}
nav ul li a::after{ /*hover effect on links*/
    content: '';
    width: 0; /*This is set to 0 so it will be hidden until moused over*/
    height: 3px;
    background: #00719c;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
/***** NAV STYLING END *****/

/***** HEADER TEXT STYLING *****/
.header-text{
    margin-top: 7%;
    font-size: 30px; 
    text-shadow: 1px 1px #262626
    
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
    color: #fff;
    text-shadow: 2px 2px #262626;
}
.header-text h1 span{
    color: #00719c;
}
.header-text p span{
    color: #00719c;
}

/***** ABOUT *****/
#about{
    padding: 80px 0;
    color: #000;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
}
.about-col-2{
    flex-basis: 60%;
}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #000;
}  
.about-col-2 p{
    font-size: 18px;
}
.about-col-2 p span{
    color: #00719c;
    font-weight: 600;
}
.tab-titles{
    display: flex;
    margin: 40px 0 40px;
}
.tab-titles p{
    font-size: 22px;
    background: #262626;
    color: #fff;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 6px;
    border: 2px solid #00719c;
}
.tab-titles p:hover{
    background: #00719c;
}
.tab-links{
    margin-right: 50px;
    font-size: 26px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #00719c;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{ /*This will display the colored underline under which tab you are selected on*/
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
    font-size: 18px;
}
.tab-contents ul li span{
    color: #00719c;
    font-size: 18px;
    font-weight: 600;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}
/***** ABOUT END *****/

/***** SERVICES *****/
#services{
    padding: 30px 0;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s; /*This makes the my services boxes change color and move when hovered over */
}
.services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}
.services-list div h2{
    font-size: 36px;
    font-weight: 500px;
    margin-bottom: 15px;
}
.services-list div p{
    font-size: 18px;
}
.services-list div a{
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    margin-top: 20px;
    display: inline-block;
}
.services-list div a i{
    font-size: 22px;
}
.services-list div:hover{ /*This makes the my services boxes change color and move when hovered over */
    background: #00719c;
    transform: translateY(-10px);
}
/***** SERVICES END *****/

/***** PORTFOLIO *****/
#portfolio{
    padding: 50px 0;

}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 25px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;  /*Adds slight zoom in on picture*/
}
.layer{ /*Adds styling over image with color and text*/
    width: 100%;
    height: 0; /*Hides text and color*/
    background: linear-gradient(rgba(0,0,0,0.6), #00719c);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s; /*Shows text and color when hover*/
}
.layer h3{
    font-weight: 500;
    margin-bottom: 20px;
}
.layer a{
    margin-top: 20px;
    color: #00719c;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fbf5f3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}
.layer a i{
    margin-top: 20px;
}
.work:hover img{ /*Adds slight zoom in on picture*/
    transform: scale(1.1);
}
.work:hover .layer{ /*Shows text and color when hover*/
    height: 100%;
}
/* Button under columns */
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 2px solid #00719c;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fbf5f3;
    background: #262626;
    transition: background 0.5s;
}
.btn:hover{
    background: #00719c;
}

.btn-road{
    font-size: 50px;
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 4px solid #00719c;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fbf5f3;
    background: #262626;
    transition: background 0.5s;
}
.btn-road:hover{
    background: #00719c;
}
/***** PORTFOLIO END *****/

/*****Contact-form*****/
.contact-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px;
    margin-bottom: 80px;
}
.contact-left{
    flex-basis: 35%;
    padding-left: 100px;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
    color: #000;
    font-size: 24px;
}
.contact-left p i{
    color: #000;
    margin-right: 15px;
    font-size: 25px;
}
.contact-sub-title{
    color: #000;
    font-size: 50px;
}
.contact-sub-title i{
    color: #000;
    margin-right: 15px;
    font-size: 51px;
}
.social-icons-contact{
    margin-top: 30px;
}
.social-icons-contact a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #000;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons-contact a:hover{
    color: #00719c;
    transform: translateY(-5px);
}
.btn.btn2{
    display: inline-block;
    background: #262626;
}
.content-right form{
    width: 100%;
}
form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}
form .btn2{
    background-color: #262626; 
    color: #fff; 
    border: 2px solid #00719c;
    width: 120px;
    height: 50px;
    border-radius: 15px;
    margin: 15px 0;
    cursor: pointer;
}
.btn2:hover {
    background-color: #00719c;
    color: #fff;
}

/*****Call to Action*****/
.call-to-action {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/background.jpg");
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 50px;
}
.cta-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
}
.cta-text button {
    background-color: #262626; 
    color: #fff; 
    border: 2px solid #00719c;
    width: 140px;
    height: 55px;
    font-size: 18px;
    border-radius: 15px;
    margin: 20px 0;
    cursor: pointer;
}
.cta-text button:hover {
    background-color: #00719c;
    color: #fff;
}

/*****Footer*****/
.footer{
    margin-top: 80px;
    width: 100%;
    padding: 100px, 15%;
    background: #262626;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 300px;
}
.footer-logo{
    width: 180px;  
    margin-left: 50px;
}
.footer div{
    text-align: center;
    margin: 0 20px;
}
.footer-col-1{
    flex: 1;
    flex-basis: 33%;
    text-align: left;
}
.footer-col-2{
    flex: 1;
    flex-basis: 33%;
    text-align: center;
}
.footer-col-4{
    flex: 1;
    flex-basis: 33%;
    text-align: left;
}
.footer div h4{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.footer div h3{
    font-size: 28px;
    font-weight: 600;
    color: #fbf5f3;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: left;
}
.footer p{
    font-size: 16px;
    text-align: left;
}
.footer-col-2 a{
    font-size: 18px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}
.footer-col-3 a{
    font-size: 18px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

/*****1-col-large*****/
#1-col-large{
    padding: 80px 0;
    color: #000;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.one-col-large{
    flex-basis: 100%;
}
.sub-title-large{
    font-size: 48px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 30px 0;
} 
.one-col-large p{
    font-size: 22px;
    color: #000;
    text-align: left;
    margin: 20px 30px;
}
.one-col-large span{
    color: #00719c;
    font-size: 32px;
    font-weight: 600;
}

/******2-col-txt-img*****/
#2-col-img-txt-2{
    padding: 80px 0;
}
.txt-img-row{
    display: flex;
    flex-wrap: wrap;
    margin: 80px 30px;
    box-shadow: 5px 10px #00719c;
}
.txt-img-col-1{
    flex-basis: 50%;
}
.txt-img-col-1 img{
    width: 100%;
    height: 100%;
}
.txt-img-col-2-2{
    flex-basis: 50%;
    color: #000;
    background: #262626;
}
.txt-img-sub-title{
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin: 20px 30px;
}
.txt-img-col-2-2 p{
    font-size: 22px;
    color: #fff;
    margin: 0 5px;
    padding: 50px;
    padding-left: 80px;
}
.txt-img-col-2-2 a{
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    margin-top: 20px;
    display: inline-block;
}

/******2-col-img-txt staff*****/
#2-col-img-txt{
    padding: 80px 0;
}
.img-txt-row{
    display: flex;
    flex-wrap: wrap;
    margin: 50px 30px;
    box-shadow: 5px 10px #00719c;
    background: #262626;
    height: 280px;
}
.img-txt-col-1{
    flex-basis: 25%;
}
.img-txt-col-1 img{
    width: 60%;
    height: 60%;
    border-radius: 50%;
    margin: 15px 30px;
}
.img-txt-col-2{
    flex-basis: 75%;
    color: #000;
}
.img-txt-sub-title{
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin: 20px 5px;
}
.img-txt-col-2 p{
    font-size: 22px;
    color: #fff;
    margin: 0 15px;
}

/*****Full-img-text*****/
.full-img-text {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/roadmap.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 80px 0;
}
.full-text {
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 22px;
}
.full-text h1{
    font-size: 60px;
    margin: 20px 0;
    color: #fff;
    text-shadow: 2px 2px #262626;
    text-align: center;
}
.button1 {
    background-color: #fbf5f3; 
    color: black; 
    border: 2px solid #274060;
    width: 120;
    height: 50px;
    border-radius: 15px;
    margin: 20px 0;
    margin-left: 42%;
    cursor: pointer;
}
.button1:hover {
    background-color: #274060;
    color: #fbf5f3;
}

/*****SLIDESHOW*****/
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-top: 30px;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: none;
    transition: background-color 0.6s ease;
}
.active {
    background-color: #00719c;
}
.fade {
    animation-name: fade;
    animation-duration: 3s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 900px) {
    .text {font-size: 11px}
  }


/***** CSS FOR SMALL SCREEN *****/
nav .fa-solid{ /*Hide icons from nav*/
    display: none;
}
@media only screen and (max-width: 900px){ /*This is for mobile/other size screens*/
    #header{ /*Mobile background*/
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url(images/phone-background.jpg);
    }
    .logo{
        width: 180px;  
    }

    .container{
        padding:10px 5%;
    }
    /***** HEADER MOBILE *****/
    .header-text{
        margin-top: 60%;
        font-size: 18px;
    }
    .header-text h1{
        font-size: 35px;
    }
    .header-text p{
        font-weight: 500;
    }

    /***** NAV MOBILE *****/
    nav .fa-solid{ /*Shows nav icons on mobile*/
        display: block;
        font-size: 48px;
        color: #fbf5f3;
        margin-right: 30px;
    }
    nav ul{ /*Pop out nav menu on mobile*/
        background: #262626;
        position: fixed;
        top: 0;
        right: -200px; /*This hides menu by default*/
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2; 
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    
    /***** ABOUT COL MOBILE *****/
    .sub-title{
        font-size: 40px;
    }
    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    .about-col-1{
        margin-bottom: 30px;
    }
    .about-col-2{
        font-size: 14px;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }

    /*****CTA MOBILE****/
    .cta-text {
        font-size: 14px;
    }

    /*****FOOTER MOBILE*****/
    .footer {
        margin-top: 50px;
        padding: 50px 15px;
        color: #fbf5f3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        min-height: 300px;
    }
    .footer-logo{
        width: 160px;  
        margin-left: 0px;
        margin-bottom: 30px;
    }
    .footer div h4{
        font-size: 28px;
        font-weight: 600;
        color: #fbf5f3;
        text-align: center;
        margin-left: 15px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    .footer h3{
        margin-top: 30px;
    }
    .footer-col-1{
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer-col-2{
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer-col-3{
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer-col-4{
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer-col h4 {
        font-weight: 300;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .footer-col h3 {
        font-weight: 300;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .footer-col a {
        display: block;
        text-decoration: none;
        color: #fbf5f3;
        margin-bottom: 10px;
    }   
    .social-icons {
        margin-top: 20px;
    }
    .social-icons i {
        font-size: 22px;
        margin: 0 10px;
        cursor: pointer;
    }

    /******2-col-img-txt-staff MOBILE*****/
    .img-txt-row{
        height: auto;
        width: 80%;
    }
    .img-txt-col-1{
        flex-basis: 100%;
    }
    .img-txt-col-1 img{
        width: 75%;
        height: 75%;
    }
    .img-txt-col-2{
        flex-basis: 100%;
    }
    .img-txt-sub-title{
        font-size: 22px;
        font-weight: 600;
        color: #fbf5f3;
        margin: 20px 5px;
    }
    .img-txt-col-2 p{
        font-size: 18px;
        color: #fbf5f3;
        margin: 20px 15px;
    }

    /******2-col-txt-img Mobile*****/
    .txt-img-col-1{
        flex-basis: 100%;
    }
    .txt-img-col-1 img{
        width: 100%;
    }
    .txt-img-col-2-2{
        flex-basis: 100%;
        color: #000;
    }
    .txt-img-sub-title{
        font-size: 28px;
        font-weight: 600;
        color: #fbf5f3;
        margin: 20px 30px;
    }
    .txt-img-col-2-2 p{
        font-size: 18px;
        color: #fbf5f3;
        margin: 20px 15px;
        padding: 0px;
        padding-left: 0px;
    }

    /*****1-col-large Mobile*****/
    .one-col-large{
        flex-basis: 100%;
    }
    .sub-title-large{
        font-size: 32px;
        font-weight: 600;
        color: #000;
        text-align: center;
        margin: 20px 0;
    } 
    .one-col-large p{
        font-size: 18px;
        color: #000;
        text-align: left;
        margin: 20px 30px;
    }
    .contact-row{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 50px;
        margin-bottom: 80px;
    }
    .contact-left{
        flex-basis: 100%;
        padding-left: 0px;
    }
    .contact-right{
        flex-basis: 100%;
    }
    .contact-left p{
        font-size: 18px;
    }
    .contact-left p i{
        font-size: 22px;
    }
    .contact-sub-title{
        font-size: 32px;
    }
    .contact-sub-title i{
        font-size: 32px;
    }
    .social-icons-contact a{
        font-size: 30px;
        margin-bottom: 50px;
    }
    form .btn2{
        margin-left: 30%;
    }
     /*****Full-img-text Mobile*****/
    .full-text {
        text-align: left;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 16px;
        margin: 0;
    }
    .full-text h1{
        font-size: 22px;
        margin: 20px 0;
        color: #fff;
        text-shadow: 2px 2px #262626;
        text-align: center;
    }
    .button1 {
        background-color: #fbf5f3; 
        color: black; 
        border: 2px solid #274060;
        width: 120;
        height: 50px;
        border-radius: 15px;
        margin: 20px 0;
        margin-left: 30;
        cursor: pointer;
    }
}