html {
    font-size: 62.5%;
    overflow-x: hidden;
    /* scroll-behavior: smooth; NO WORK ON SAFARI OR MS EDGE*/
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none;
    outline: 2px dashed #0a2a45;
}

body {
    font-family: 'Montserrat Alternates', sans-serif;

    line-height: 1;
    /* letter-spacing: -2px; */
    font-weight: 400;
    color: #555;
    overflow-x: hidden;
    user-select: none;
}

.banner {
    height: 100vh;
    position: relative;

    background-image: linear-gradient(
        #1769c71f,
        #287ab928
    ),url(img/bannerv3.jpg);
    
    background-size: cover;
    color: #41525f;

}

/* .intro-text {
    width: 120rem;
    position: absolute;
    left: 83rem;
        top: 73rem;

        /* In relation to ELEMENT size */
        /* transform: translate(-50rem, -50rem);
        font-size: 5.5rem;
        text-align: center; */

.container {
    max-width: 120rem;
    margin: 0 auto;
}

.heading-secondary {
    font-size: 4.4rem;
    line-height: 1.2;
    margin-bottom: 9.6rem;
}

.subheading {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    color: rgb(24, 100, 171);
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    letter-spacing:  0.75px;
}

/*********NAV COMPONENT**/
.header {
    background-color: #e7f5ff;
    padding: 0.9rem 4.8rem;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1.2rem 3.2rem rgba(0,0,0,0.05);
}

.sticky .header {
    position: fixed;
    top:0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    background-color: #e7f5ff;
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0,0,0,0.05);
}

/* .sticky .section-hero {
    margin-top: 9.6rem;
} */

.logo {
    height: 5.5rem;
}

.logo-txt {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-txt-span {
    font-size: 3.2rem;
    font-weight: bold;
    color: #333;
}

.main-nav-list {
    list-style: none;
    display: flex;
    gap: 4.8rem;
    align-items: center;
}

.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.8rem;   
    transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
    color: #1971c2;
}

.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;
    display: none;
}

.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem;
    border-radius: 5px;
    color: #fff;
    background-color: #228be6;

}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
    border-radius: 5px;
    color: #fff;
    background-color: #1c7ed6;

}

/*********************************************************HERO COMPONENT**/

.section-hero {
    background-color: rgb(231, 245, 255);
    padding: 9.6rem 0;
    position: relative;
    /* background-image: url(img/design.jpg); */
    background-size: cover;
    /* height: 70rem; */
    background-position: center;
}

.hero {
    max-width: 130rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 9.6rem;

}

.hidden {
  display: none;
}


.hero-heading {
    font-size: 5rem;
    font-weight: bold;
    color: #228be6;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 3.2rem;
    /* text-align: center; */
}

/* .hero-dark.hero-heading {
    color: #1864ab;
} */
.hero-description {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 3.7rem;
    color: #111;
    font-weight: bold;
    
}

.hero-description.white-text{
    color: #fff;
}

.btn,
.btn:link,
.btn:visited {
    display: inline-block;
    font-size: 2rem;
    padding: 1.6rem 3.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.btn--full:link,
.btn--full:visited {
    background-color: #228be6;
    color: #fff;
    transition: all 0.3s;
    margin-right: 6rem;
    /* margin-bottom: 3rem; */
}

.btn--full:hover,
.btn--full:active {
    background-color: #1864ab;
    color: #fff;
}

.btn--outline:link,
.btn--outline:visited {
    background-color: #fff;
    color: #555;
    transition: all 0.3s;
    margin-right: 1.2rem;
    text-align: center;

}

.align-text {
    text-align: center;
}

.btn--outline:hover,
.btn--outline:active {
    background-color: #e7f5ff;
    color: #555;
    box-shadow: inset 0 0 0 3px #fff;
}
.hero-img-box {
    width: 55rem;
}
.hero-img {
    width: 100%;
    border-radius: 9px;
}

/* .div-dots {
    padding: 1.2rem 0;
} */

.hero-dot-solution {
    position: relative;
}

.dots {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 32px);
    bottom:10%;
    /* max-width: 120rem;
    margin: 0 auto; */
    display: flex;
    /* align-items: center;
    justify-content: center; */
    gap: 1.2rem;
}
.dot {
    height: 2rem;
    width: 2rem;
    background-color: #fff;
    border: 2px solid #228be6;
    border-radius: 50%;
    cursor: pointer;
}
.dot--fill {
    background-color: #228be6;
}
.section-skills {
    padding: 6.4rem 0;
}
.heading-skills {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4.8rem;
    color:#555;
}
.skills {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-weight: 100;
}
.skills img {
    height: 7rem;
}
/************************************SERVICES SECTION***********************/
.section-services {
    padding: 6.4rem 0;
}
.services-container {
    margin: 0 auto;
    max-width: 130rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 9.6rem;
    column-gap: 9.6rem;
}

.services-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3.2rem;
    gap: 1.8rem;
    border-radius: 5px;
    box-shadow: inset 0 13.6rem 8rem -2rem #228be623;
}

.services-item-header {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.services-item-text {
    font-size: 2rem;
    line-height: 1.2;
}

.service-icon {
    color: #228be6;
    padding: 1.8rem;
    /* border-bottom: 1px solid #228be6; */
    /* background-color: #e7f5ff; */
    border-radius: 25%;
}

/************************************CTA SECTION***********************/

.cta-section {
    padding: 6.4rem 0;
}

.cta {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #228be6;
    box-shadow: 0 2.4rem 4.8rem rgba(0,0,0,0.1);
    border-radius: 9px;
    background-image: linear-gradient(270deg, #339af0, #e7f5ff);
    overflow: hidden;
}

.cta-img-box {
    background-image: linear-gradient(270deg, rgba(51, 155, 240, 0.308), rgba(231, 245, 255, 0.5)), url('img/contact.jpg');
    background-size: cover;
}

.cta h2 {
    margin-bottom: 3.2rem;
}

.cta-text-box {
    color: #0a2a45;
    padding: 3.2rem 6.4rem;
}

.cta-text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 4.8rem;
    max-width: 50rem;
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3.2rem;
    row-gap: 2.4rem;
}

.cta-form label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    font-family: inherit;
    color: inherit;
    border: none;
    background-color: #e7f5ff;
    border-radius: 7px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    resize: none;
}

.info {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.cta-form input::placeholder {
    color: #999;
}

.cta-form button {
    border:none;
    background-color: #0a2a45;
    color: #e7f5ff;
}

.form-btn {
    align-self: end;
    padding: 1.2rem;
    font-size: 1.6rem;
    transition: all 0.5s;
}

.form-btn:hover,
.form-btn:active {
    background-color: #e7f5ff;
    color: #41525f;
}

.quote-address {
    text-decoration: none;
    color: #fff;
}

/************************************FOOTER SECTION***********************/     

.footer {
    padding: 9.6rem 0 12.8rem;
    background-color: #e7f5ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: space-between;
}

.footer-logo {
    display: block;
    margin-bottom: 3.2rem;
}

.logo-copy {
    display: flex;
    flex-direction: column;
}

.copyright {
    font-size: 1.4rem;
    line-height: 1.8rem;;
    color: #666;
    margin-top: auto;
}

.footer-heading {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 3.2rem;
    color: #444;
    /* padding-left: 3.2rem; */
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}


.contact-info {
    font-size: 1.6rem;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 1.8rem;
}

.nav-foot-one {
    padding-left: 6.2rem;
}

.footer-link:link,
.footer-link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #666;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
    color: #555;
}