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

body {
    font-size: 14px;
}

.img-responsive {
    width: 100%;
    height: auto;
}


#navbar {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 5px;
    color: #000000;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

#navbar .nav-item {
    padding: 7px 10px;
    transition: .3s all;
}

.mmb {
    width: 160px;
}


#navbar .nav-link {
    transition: .3s all;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

#navbar .nav-link:hover {
    transition: .3s all;
    color: #063fa1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
  
.dropdown-menu {
    animation-duration: 0.7s;
    animation-name: slidein;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    transition: ease-in 0.5s;
    border-radius: 20px;
    padding: 10px;
}
  
@keyframes slidein {
    from {
      margin-top: 100%;
    }
  
    to {
      margin-top: 0%;
    }
}

.navbar-light .navbar-toggler {
    outline: none;
    border: none;
}
  
.dropdown-item:hover {
    color: #063fa1;
    transition: ease-in 0.5s;
    animation: fadein 0.5s;
    background-color: transparent;
}

#background-container {
    transition: background-image 1s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-box {
    padding-top: 150px;
    padding-bottom: 150px;   
}

.banner-content {
    width: 70%;
    margin: auto;
}

#banner-content-sub {
    color: #285B9D;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

#banner-content-head {
    color: #FFFFFF;
    text-align: center;
    font-size: clamp(30px, 7vw, 60px);
    font-weight: 700;
}

.banner-content p {
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    
}

.banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-btns1 {
    display: flex;
    gap: 10px;
    padding-top: 50px;
}

#banner-btns1 button {
    background-color: #063fa1;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 15px;
    transition: all 0.25s ease-out;
}

#banner-btns1 button:hover {
    background-color: #FFFFFF;
    color: #063fa1;
    transition: all 0.25s ease-out;
    border: 1px solid #063fa1;
}

#banner-btns2 button {
    background-color: #FFFFFF;    
    border: none;
    outline: none;
    padding: 10px 20px;
    border: 1px solid #063fa1;
    font-size: 16px;
    font-weight: 500;
    color: #063fa1;
    border-radius: 15px;
    transition: all 0.25s ease-out;
}

#banner-btns2 button:hover {
    background-color: #063fa1;
    color: #FFFFFF;
    transition: all 0.25s ease-out;
}

.tech-service {
    padding-top: 100px;
    background-color: #F5F6F9;
    padding-bottom: 100px;
}

#tech-service-row-head {
    font-size: calc(1.275rem + .3vw);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 30px;
}

.tech-service-row i {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tech-service-row {
    margin-bottom: 30px;
    transition: all 0.25s ease-out;
    padding: 20px;
    border-radius: 15px;
}

.tech-service-row p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.tech-service-row a {
    text-decoration: none;
    font-size: 16px;
}

.tech-service-row:hover {
    background-color: #063fa1;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.25s ease-out;
}

.find-out-more {
    background-image: url(./images/inner-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 80px;
}

.find-out-more-box {
    width: 60%;
    margin: auto;
}

#find-out-more-box-head {
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.find-out-more-box p {
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.find-out-more-box a {
    color: #fff;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.read-more:hover{
    color: #063fa1 !important;
    text-decoration: underline !important;
}

.footer-top {
    background-color: #010208;
    padding-top: 30px;
    padding-bottom: 20px;
}

#footer-head {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 20px;
}

.footer-row p a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
}

.footer-row p {
    margin-bottom: 10px;
}

.footer-row p a:hover {
    color: #063fa1;
}

.footer-cont {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#footer-cont1 {
    color: #FFFFFF;
    font-size: 16px;
}

.footer-row p {
    color: #FFFFFF;
    font-size: 16px;
}

.f-logo {
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #5a5959;
    padding-top: 20px;
    background-color: #010208;
    padding-bottom: 20px;
}

.copy-right {
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
}

.about-banner {
    background-image: url(./images/inner-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    margin-bottom: 100px;
}

#about-banner-head {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 10px;
}

#about-banner-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#about-banner-link-icon, #about-banner-link-text {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: capitalize;
}

#about-banner-link-ad a {
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #063fa1;
}

#about-banner-link-ad a:hover {
    color: #FFFFFF;
}

#about-body-head {
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 50px;
}

.about-body-row img {
    border-radius: 15px;
}

.about-body-row {
    margin-bottom: 50px;
}

.about-body-row p {
    font-size: 16px;
}

#about-body-padding {
    padding-top: 50px;
}

#about-body-padding2 {
    padding-top: 0px;
}

#about-body-padding2 p {
    font-size: 16px;
}

#about-body-row-head {
    font-size: 30px;
    line-height: 52px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px; 
}

.consultation {
    padding-top: 100px;
    padding-bottom: 100px;
}

#consultation-row-sub {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 28px;
    letter-spacing: .5px;
    color: #063fa1;
    margin-bottom: 10px;
}

#consultation-row-head {
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    text-transform: capitalize;
    width: 80%;
}

.wrapper {
    position: relative;
    width: 400px;
    height: 500px;
}

/* Form color */
.form-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #F0F5F9;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
/* Form animations */
.wrapper.animate-signUp .form-wrapper.sign-in {
    transform: rotate(7deg);
    animation: animateRotate .7s ease-in-out forwards;
    animation-delay: .3s;
}

.wrapper.animate-signIn .form-wrapper.sign-in {
    animation: animateSignIn 1.5s ease-in-out forwards;
}

@keyframes animateSignIn {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-500px);
    }

    100% {
        transform: translateX(0) rotate(7deg);
    }
}

.wrapper .form-wrapper.sign-up {
    transform: rotate(7deg);
}

.wrapper.animate-signIn .form-wrapper.sign-up {
    animation: animateRotate .7s ease-in-out forwards;
    animation-delay: .3s;
}

@keyframes animateRotate {
    0% {
        transform: rotate(7deg);
    }

    100% {
        transform: rotate(0);
        z-index: 1;
    }
}

.wrapper.animate-signUp .form-wrapper.sign-up {
    animation: animateSignUp 1.5s ease-in-out forwards;
}

@keyframes animateSignUp {
    0% {
        transform: translateX(0);
        z-index: 1;
    }

    50% {
        transform: translateX(500px);
    }

    100% {
        transform: translateX(0) rotate(7deg);
    }
}
/* Heading text */
h2 {
    font-size: 30px;
    color: #1E2022;
    text-align: center;
}
/* Input text */
.input-group {
    position: relative;
    width: 320px;
    margin: 30px 0;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #1E2022;
    padding: 0 5px;
    pointer-events: none;
    transition: .5s;
}

.input-group input {
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #1E2022;
    padding: 0 10px;
    background: transparent;
    border: 1px solid #1E2022;
    outline: none;
    border-radius: 5px;
}
/* Input label color */
.input-group input:focus~label,
.input-group input:valid~label {
    top: 0;
    font-size: 12px;
    background: #F0F5F9;
}

.forgot-pass {
    margin: -15px 0 15px;
}
.forgot-pass a {
    color: #1E2022;
    font-size: 14px;
    text-decoration: none;
}

.forgot-pass a:hover {
    text-decoration: underline;
}
.btn {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #063fa1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
    font-size: 16px;
    color: #F0F5F9;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    outline: none;
}

.sign-link {
    font-size: 14px;
    text-align: center;
    margin: 25px 0;
}
/* Sign link text */
.sign-link p {
    color: #063fa1;
}

.sign-link p a {
    color: #063fa1;
    text-decoration: none;
    font-weight: 600;
}

.sign-link p a:hover {
    text-decoration: underline;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#1E2022, #52616B);
    overflow: hidden;
}

#footer-links1 {
    background-color: #063fa1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 40px;
    width: fit-content;
    color: #FFFFFF;
    font-size: 18px;
}

#footer-links1 a {
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
}

#footer-links {
    display: flex;
    gap: 7px;
    margin-top: 20px;
}

.contact-page {
    margin-bottom: 100px;
}

.contact-map iframe {
    border-radius: 30px; 
    height: 620px;
}

.contact-address-rows {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.contact-form {
    background-color: #063fa1;
    padding: 45px;
    border-radius: 30px;
}

#contact-form-head {
    font-family: 'Playfair Display', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 39.99px;
    margin-bottom: 48px;
    color: #FFFFFF;
}

.contact-form input {
    background-color: #FFFFFF;
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input::placeholder {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    color: #00000080;
}

.contact-form textarea {
    background-color: #FFFFFF;
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 40px;
}
.contact-form textarea::placeholder {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    color: #00000080;
}

.contact-form button {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 30px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
    background-color: transparent;
    color: #FFFFFF;
}

#contact-address-rows1 {
    color: #063fa1;
    font-size: 16px;
}

#contact-address-rows2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
}

.contact-address-row {
    margin-bottom: 100px;    
}
/* MEDIA */

@media (max-width: 736px) {

    .contact-form {
        background-color: #063fa1;
        padding: 25px;
        border-radius: 30px;
    }

    .contact-map {
        margin-bottom: 20px;
    }

    .contact-address-rows {
        display: flex;
        gap: 20px;
        justify-content: left;
    }

    #about-body-padding {
        padding-top: 0px;
    }

    .find-out-more-box {
        width: 100%;
        margin: auto;
    }

    .banner-content {
        width: 100%;
        margin: auto;
    }
    
    .navbar-toggler {
        position: absolute;
        right: 20px;
        top: 10px;
    }
	
}







@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (-webkit-min-device-pixel-ratio: 2) { /* STYLES GO HERE */


	

}



@media (min-device-width : 737px)
and	(max-device-width : 991px){
	
	 
    
	
}


@media only screen 
and (min-device-width : 737px) 
and (max-device-width : 767px) { /* STYLES GO HERE */



}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
	
	
	
  
}




@media (min-width:320px) and (max-width: 480px) { 
	
    
    
}


