@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;900&family=Ranchers&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #222;
    color: #fff;    
}

ul {
    list-style: none;
}

a {    
    color: #fff;
    text-decoration: none;
}

img {
    width: 100%;
}

h1 {
    font-size: 3rem;
    margin-bottom: 40px;
}

h2 {
    line-height: 1.2;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

/* Navigation */
.header {    
    background-color: #189de4;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav ul {
    margin: 20px 0 10px;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    padding: .25rem .5rem;
    margin: .75rem;     
}

nav ul li a:hover {
    border-right: 2px solid #fff; 
    border-left: 2px solid #fff;
}

.logo {
    font-family: 'Ranchers', cursive;
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 3px;
    border: 1px solid #fff;
    padding: 0px 35px;
    position: relative;

}

.logo::before {
    content: "";
    background: #fff;
    display: block;
    width: 125px;
    height: 2px;
    position: absolute;
    top: 40px;
    left: 35px;    
}

.logo:hover::before {
    top: 9px;
    transition: .3s;
}

/* Hero Section */
.hero {
    display: flex;    
    text-align: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: url(img/Background-Img.jpg) no-repeat center center/cover; 
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;    
    left: 0; 
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.65);    
}

.hero * {
    z-index: 1;
}

/* Hero Content Style */
.text p {
    font-size: 1.5em;
    margin-bottom: 80px;
}

.buttons a {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 7px 25px;
    border: 1px solid #189de4;
    border-radius: 5px;
    display: inline-block;
}

.buttons a:first-child {
    background-color: #189de4;
    margin-right: 125px;    
}

.buttons a:nth-child(2) {
    padding: 7px 50px;
}

.buttons a:hover:first-child {
    opacity: 0.85;
}

.buttons a:hover:nth-child(2) {
    background-color: #189de4;
    transition: .3s;
}


@media only screen and (max-width: 1156px) {
    .text h2 {
        font-size: 2em;
    } 
    .text p {
        font-size: 1em;
    } 
    .buttons a {
        font-size: 14px;
    }
    .text h1 {
        font-size: 2.6rem;
    }
}


@media only screen and (max-width: 769px) {

    /*  Logo  */
    .logo {
        font-size: 26px;        
    }

    .logo::before {        
        width: 108px;
        top: 32px;
    }

    .logo:hover::before {
        top: 7px;        
    }

    /*  Navigation  */
    nav ul li a {
        font-size: 14px;
        padding: .25rem .5rem;
        margin: .75rem;     
    }

    /*  Content  */
    .text h1 {
        font-size: 2em;
    } 
    .text p {
        font-size: 1em;
    } 
    .buttons a {
        font-size: 12px;
    }
    .buttons a:first-child {        
        margin-right: 75px;    
    }
}


@media only screen and (max-width: 464px) {   
    /*  Navigation  */
    nav ul li a {
        font-size: 14px;
        padding: .25rem .5rem;
        margin: .25rem;     
    }

    /*  Content  */
    .text h2 {
        font-size: 2em;
    } 
    .text p {
        font-size: 1em;
    } 
    .buttons a {
        width: 100%;
        display: inline-block;        
        margin: 0 auto;
    }
    .buttons a:first-child {        
        margin: 20px auto;
    }
}

@media only screen and (max-width: 425px) {   
    /*  Content  */
    .text h2 {
        font-size: 1.5em;
    }     
}

/*==================================================*/
/* Partners Section */
.partners {
    background-color: #222;
    padding: 20px 0;
}

.partners-trademark {
    display: flex;    
}

.partners-trademark img {
    display: block;
    margin: auto;
    width: 40%;
}

.img-hover {
    position: relative;     
}

.img-hover img {
    opacity: 1;    
    height: auto;
    transition: .5s ease;
}

.img-hover .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.img-hover:hover img {
    opacity: .3;
}

.img-hover:hover .middle {
    opacity: 1;
}

.middle .text {    
    position: relative;
    color: #fff;
    font-size: 16px;    
    padding: 20px 0 0 150px;
}

@media only screen and (max-width: 1024px) {
    .img-hover .middle {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .partners-trademark img {    
        width: 50%;
    }
}

@media only screen and (max-width: 500px) {
    .partners-trademark img {    
        width: 70%;
    }
    .partners {
        padding: 5px 0;
    }
}

/* About Us Section */
.about-us .container {
    padding: 100px 0;
}
.about-us .background-img {
    background: url(img/Business-Section-Background.jpg) no-repeat center center/cover;
    height: 100%;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    overflow: hidden;
}

.about-us .background-img::before {
    content: '';
    position: absolute;
    background: rgba(7,47,68,0.90); 
    top: 0;    
    left: 0; 
    height: 100%;
    width: 100%;
}

.background-img * {
    z-index: 1;
}

.about-us .about-text p {
    padding: 0 20%;
    margin: 30px 0;
}

.about-us .about-numbers {    
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;    
    margin-top: 80px;
    position: relative;
}

.about-us .section {
    position: relative;
    width: 100%;
}

.about-numbers .sudo::before {
    content: '';
    position: absolute;    
    height: 48px;    
    border: 0.5px #fff dashed;
    right: 0;
    bottom: 8px;
}

.about-numbers .section h3 {
    font-family: 'Ranchers', cursive;
    font-size: 2.1em;
    letter-spacing: 2.5px;    
    color: #189de4;
    margin: 10px 0;    
}

.about-numbers img {
    width: 94px;
}

@media only screen and (max-width: 1024px) {
    .about-us .about-text p {
        padding: 0 15%;       
    }
}

@media only screen and (max-width: 768px) {
    .about-us .about-text p {
        padding: 0 1%;       
    }
    .about-us .about-text h2 {        
        font-size: 2rem;        
    }
    .about-numbers .section h3 {
        font-family: 'Ranchers', cursive;
        font-size: 1.8em;           
    }  
}


@media only screen and (max-width: 500px) {
    .about-us .container {
        padding: 80px 0;
    }
    .about-us .about-numbers {    
        display: grid;           
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin-top: 60px;                
    }   
    .about-us .about-text h2 {
        font-size: 2rem;
    }
    .about-numbers .sudo::before {
        display: none;
    }
    .section .small-icon {
        width: 66px;
    }    
}

/* Services Section */
.services {   
    color: #fff;
    padding: 80px 0;
}

.services-title {
    text-align: center; 
    margin-bottom: 50px;
}

.paragraph {
    text-transform: uppercase;
    color: #189de4;
    font-weight: bold;
    font-size: 1em !important;
    letter-spacing: 2px;
    margin: 15px 0;
}

.services-title .custom-icon:hover {
    color: #1894de;
    transition: .3s;
}

.services .set-one {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    text-align: center;    
}

.set-one > div {
    border: 1px solid #fff;
    border-radius: 25px;
}

.service-1 {
    padding: 25px 15px;
}

.service-1:hover {
    -webkit-box-shadow: -1px 1px 5px 6px rgba(24,157,228,1);
    -moz-box-shadow: -1px 1px 5px 6px rgba(24,157,228,1);
    box-shadow: -1px 1px 5px 6px rgba(24,157,228,1);
    transition: .2s;
}

.service-1 h3 {
    margin: 15px 0 40px;
    color: #189de4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    position: relative;
}

.service-1 h3::after {
    content: '';
    width: 20%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translate(-50%, -50%);    
}


@media only screen and (max-width: 1024px) {    
    .service-1 h3 {
        font-size: 1em;        
    }
    .service-1 i {
        font-size: 2.3em;
    }
}

@media only screen and (max-width: 768px) {
    .services .set-one {
        display: grid;
        grid-template-columns: repeat(2, 1fr);    
    }
    .services-title i {
        font-size: 2.7em;  
    } 
    .service-1 i {
        font-size: 2.2em;
    }
}

@media only screen and (max-width: 500px) {
    .services .set-one {
        grid-template-columns: 1fr; 
        grid-gap: 35px;
    }
    .services-title h2 {
        font-size: 2em;  
    }        
}


/* Services: Video Section */
.who-we-are .promo-title {    
    width: 100%;
    border-top: 1px solid #189de4;     
    background: rgba(7,47,68,0.90);
}

.promo-title h2 {  
    font-size: 30px;
    margin-bottom: 0;
    padding-right: 20px;
    text-align: right;
    line-height: 2.2;
    color: #189de1;
    font-weight: 100;
    position: relative;
}

.promo-title h2::before {
    content: '';
    position: absolute;
    background: #fff;
    height: 1px;
    width: 50px;
    right: 22px;
    top: 50px;
}

.who-we-are .content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.who-we-are .column {
    display: flex;    
    flex-basis: 100%;
    flex: 1;
}

.who-we-are .column .column-1,
.who-we-are .column .column-2 {
    height: 100%;
}

.who-we-are video {    
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.who-we-are .column-2 {
    background: rgba(7,47,68,0.90);
    display: flex;
    flex-direction: column;    
    justify-content: center;
    padding: 30px;
}

.column h2 {
    font-size: 40px;
    font-weight: 100;
}

.column p {
    margin: 20px 0;
}

.column {
    border-bottom: 1px solid #189de4;
}

.btn {    
    width: 160px;
    text-align: center;
    padding: 15px 20px;
    margin-top: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.btn:hover {
    background: #189de4;
    transition: .3s;
}



@media only screen and (max-width: 1024px) {    
    .who-we-are .column {
        flex: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {    
    .promo-title h2 {
        font-size: 26px
    }
    .promo-title h2::before {        
        width: 40px;        
        top: 44px;
    }
}

@media only screen and (max-width: 500px) {    
    .promo-title h2 {
        font-size: 22px
    }
    .promo-title h2::before {        
        width: 35px;        
        top: 38px;
    }
    .column-2 h2 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 320px) {    
    .promo-title h2 {
        font-size: 18px
    }
    .promo-title h2::before {        
        width: 30px;        
        top: 30px;
    }
    .column-2 h2 {
        font-size: 30px;
    }
}

/* Contact Section: Title */
.contact-title {
    text-align: center;
}

.contact-title .custom-icon:hover {
    color: #1894de;
    transition: .3s;
}

/* Contact: Icons */
.icons {
    display: flex;
    justify-content: space-around;    
    padding: 30px 0 80px;
    text-align: center;
}

.icons i {
    font-size: 60px;
    color: #189de4;
    margin-bottom: 25px;
}

.icons h4 {
    margin-bottom: 15px;    
}

.icons p {
    font-weight: 100;
    padding-bottom: 2px;
    border-bottom: 1px dashed #fff;
}

/* Contact Form Flex Positioning*/
.contact {
    margin: 150px 0 200px 0;
}

.div-form {
    display: flex;
    align-items: center;
    flex-direction: column;    
}

.first-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.column-1,
.column-2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Form Field Styling */
.column-1 input {
    height: 50px;
    width: 95%;
    margin: 10px 0;
    border-radius: 25px;
    border: none;
    padding-left: 25px;
    color: #189de4;
    font-family: 'Open Sans', sans-serif;
}

.column-2 textarea {    
    border-radius: 25px;
    border: none;
    color: #189de4;
    padding: 15px 0 0 25px;
    font-family: 'Open Sans', sans-serif;
}

textarea:focus, input:focus{
    outline: none;
}

::placeholder {
    color: #189de4;    
}

.column-2 textarea::placeholder {
    padding-top: 10px;
}

.second-part {
    margin-top: 40px;
}

.second-part input {
    display: inline-block;
    padding: 15px 40px;
    cursor: pointer;
    background-color: #189de4;    
    border: 1px solid #189de4;
    border-radius: 25px;
    color: #fff;
    font-family: 'Open Sand', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.second-part input:hover {
    background: transparent;
    border: 1px solid #189de4;
    transition: .3s;
}

@media only screen and (max-width: 1024px) {    
    .contact-title h2 {
        font-size: 34px;
    }
    .icons i {
        font-size: 50px
    }
}

@media only screen and (max-width: 768px ) {
    .column-1 input {
        width: 90%;        
    }    
}

@media only screen and (max-width: 640px ) {
    .column-1 {
        margin-bottom: 20px;
    }
    .column-1 input {
        width: 100%;        
    }    
     .div-form .first-part {
        flex-direction: column;
        width: 100%;        
    }
}

@media only screen and (max-width: 500px) {    
    .contact-title h2 {
        font-size: 30px;
    }
    .icons {
        display: block;
        padding-bottom: 30px;
    }
    .icons div {
        margin-bottom: 40px;
    }
    .icons p {
        margin: 0 auto;
        width: 40%;
    }
     .icons i {
        font-size: 40px
    }

    .column-1 input {
        width: 100%;        
    }
    .contact {
        margin: 100px 0;
    }

}

@media only screen and (max-width: 320px) {    
    .contact-title h2 {
        font-size: 26px;
    }
    .icons p {
        margin: 0 auto;
        width: 50%;
    }
}

/* Footer Section Style*/
.footer .background-img {
    border-top: 1px solid #189de4;
    padding: 20px 0;
    box-shadow: 1px 10px 50px 6px rgba(24,157,228,0.9);
}

.footer-content,
.footer-menu ul,
.footer-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu ul li {
    margin: 0 10px 0 0;
    font-size: 14px;
}

.footer-menu ul li a:hover,
.footer-content .two-links a:hover {
    border-bottom: 1px solid #189de4;
}

.footer-icons i {
    padding: 0 5px;
    color: #189de4;
}

.footer-icons i:hover {
    color: #fff;
}

.footer-content .two-links a {    
    padding: 0 5px;
}

.footer-content .two-links {
    display: flex;
    font-size: 12px;    
}

.footer-content .two-links p {
    margin-left: 20px;
}

.footer-bottom {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #555;
}

/*
.footer-bottom p {
    padding-left: 70px;
}
*/


@media only screen and (max-width: 768px ) {
    .footer-menu a {
        font-size: 12px;        
    }
}

@media only screen and (max-width: 500px ) {
    .footer-content {
        flex-direction: column;
    }
    .footer-content > div {
        margin-top: 10px;
    }
}










