@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Poppins:wght@300;400;500;600&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: 0;
    list-style: none;
    box-sizing: border-box;    
}

body {
    background: #F8F9FA;
}

.topbar {
    width: 100%;
    height: 45px;
    display: flex;
    flex-direction: row;
    font-size: 17px;
    color: #fff;
    line-height: 45px;
}

.topbar-left {
    width: 50%;
    background: #143856;   
    padding: 0 50px 0 200px;
}

.topbar-left span {
    font-size: 14px;
}

.topbar-right {
    width: 50%;
    background: #143856;   
    text-align: right;
    padding-right: 240px;
}

.topbar-right span {
    font-size: 14px;
}

@media (max-width: 858px) {
    .topbar {
        flex-wrap: wrap;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    .topbar-left {
        width: 100%;
        padding: 0 0;
        text-align: center;
    }
    .topbar-right {
        width: 100%;
        text-align: center;
        padding: 0 0;
    }
}

/*CSS NAV BAR*/

nav {
    background: #fff;
    width: 100%;
    height: 80px;
}

nav img {
    width: 140px;
    height: 40px;
    margin: 20px 0 0 140px;    
}

label.logo {
    color: #2B90D9;
    line-height: 80px;
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    padding: 0 50px 0 200px;
    cursor: pointer;
    display: none;
}

nav ul {
    float: right;
    margin-right: 238px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: #000000;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #2B90D9;
    
}

a.highlighted {    
    border: 2px solid #2B90D9;
    padding: 8px 16px;
    text-transform: none;
    font-size: 17px;
    font-weight: bold;
    color: #2B90D9;
    margin-left: 40px;
    border-radius: 10px;
}

a.highlighted:hover {
    background: #2B90D9;
    color: #fff;
    transition: .6s;
}

.checkbtn {
    font-size: 30px;
    color: #000000;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 952px) {
    label.logo {
        font-size: 30px;
        padding-left: 50px;
    }
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 858px) {
    .checkbtn {
        display: block;
        margin-right: 15px;
    }
    ul {
        position: fixed;
        width: 90%;
        height: 100vh;
        background: #2c3e50;
        top: 110px;
        left: -100%;
        padding-left: 150px;
        transition: all .5s;
        z-index: 200;
    }
    ul {
        margin: 10px 0 0 0;
    }
    nav img {
        width: 110px;
        height: 30px;
        margin: 30px 0 0 20px;  
    }
    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 20px;
    }
    nav ul li a {
        font-size: 16px;
        color: #fff;
    }
    a.highlighted {
        font-size: 18px;
        background: none;
        color: #fff;
        border: 2px solid #fff;
        margin-left: -50px;
    }
    #check:checked ~ ul {
        left: 0;
    }
}

/*SLIDER - CSS*/

.slider {
    width: 100%;
    height: 550px;
    /*background-color: red;*/
}

.wrapper,
.slide {
    position: relative;    
    width: 100%;
    height: 100%;
}

.slide {
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.slide .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide .image-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 50;
    margin-top: -30px;
}

.image-data span.text {
    font-family: "poppins", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 58px;
    color: #ffffff;
}

.image-data h2 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.slide-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #2B90D9;
    text-decoration: none;
    margin-top: 25px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

a.button:hover {    
    background-color: #C87E4F;
}

a.button-contact {
    background: #fff;
    color: black;
}

/*Swiper Button CSS*/

.nav-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {    
    background: rgba(255, 255, 255, 0.4);
}

.swiper-button-next {
    right: 50px;
}

.swiper-button-prev {
    left: 50px;
}

.swiper-pagination-bullet {
    opacity: 1;
    width: 12px;
    height: 12px;
    background-color: #fff;
    visibility: hidden;
}

.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #c87e4f;
}

.nav-btn::before,
.nav-btn::after {
    font-size: 25px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .nav-btn {
        visibility: hidden; 
    }
    .swiper-pagination-bullet {
        visibility: visible;        
    }
    .slider {        
        height: 350px;        
    }
    .image-data span.text {        
        font-size: 25px;
        line-height: 28px;
        margin-top: 40px;        
    }
    .image-data h2 {
        font-size: 16px;
        font-weight: 400;        
        margin: 10px 40px 0 40px;      
    }
}


/*MAIN CONTENT*/
.main-content {
    width: 100%;
    min-height: 700px;
    background: #F8F9FA;
    margin-top: 60px;
}

.main-content h4 {
    text-align: center;
    margin-top: 12px;
    font-size: 1.8em;
    font-family: "poppins", sans-serif;
    font-weight: 700;
}

.main-content p {       
    font-size: 14px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    line-height: 20px;
    color: #6c757d;
}

.main-content .services {
    display: flex;
    flex-direction: row;
    margin: 60px 200px 50px 200px;
}


.main-content .services .services-1 {
    margin-right: 30px;
    display: flex;
    justify-content: justify;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    width: 480px;
    height: 350px;
    cursor: pointer;
    border-radius: 10px;
    border-bottom: 3px solid #31B4F5;
    box-shadow: 2px 2px 2px rgb(227, 226, 226);
}

/*.main-content .services .services-1:hover {
    background: #31B4F5;
    color: #fff;
}*/

.main-content .services .border2 {
    border-bottom: 3px solid orange;
}

.main-content .services .border3 {
    border-bottom: 3px solid rgb(43, 205, 43);
}

.main-content .services .border4 {
    border-bottom: 3px solid purple;
}

.main-content .services .border5 {
    border-bottom: 3px solid navy;
}

.main-content .services .border5 {
    border-bottom: 3px solid red;
}


.main-content .services .services-1 {
    padding: 60px 20px 0 20px;
}

.main-content .services .services-1 h5 {
    font-size: 15px;
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    color: #111111;
}


.main-content .services .services-1 p {
    text-align: center;
}

.main-content .services .services-1 ion-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

@media (max-width: 858px) {
    .main-content .services {
        flex-wrap: wrap;
        margin: 30px 0 30px 0;
    }
    .main-content .services .services-1 {
        width: 100%;
        margin: 0 30px 35px 30px;
        background: #ffffff;               
    }
}

/*MAIN CONTENT - 2*/

.main-content-2 {
    width: 100%;
    min-height: 750px;
    display: flex;
    flex-direction: row;    
}

.main-content-2-left {    
    width: 45%;
    height: 410px;
    background: #e5ebf8;    
    margin: 10px 20px 0 200px;    
}

.main-content-2-left {
    padding: 50px 30px
}

.main-content-2-left h3 {
    margin-bottom: 22px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #4154f1;
}

.main-content-2-left h4 {
    margin-bottom: 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #012970;
}

.main-content-2-left P {
    line-height: 20px;
}

.main-content-2-left button {
    width: 165px;
    height: 42px;
    margin: 20px 30px 0 120px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 1px;
    background: #106fcf;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.main-content-2-left button:hover {
    background: green;
}

.main-content-2-right {
    width: 55%;
    height: 355px;    
    margin: 20px 238px 0 0;    
}

.main-content-2-right img {
    width: 100%;
    height: 355px;  
    cursor: pointer;   
}

@media (max-width: 858px) {
    .main-content-2 {
        flex-wrap: wrap;
        text-align: center;
    }
    .main-content-2-left {
        width: 100%;
    }
    .main-content-2-left {
        margin: -25px 0 0 0;
    }
    .main-content-2-left h3
    {
        margin: 0 0 10px -30px;
    }
    .main-content-2-left button {
        margin: 20px 30px 20px 30px;
    }
    .main-content-2-right {
        width: 100%;
        margin: 20px 0 270px 0;
    }
}

/*MIDBAR CSS*/

.midbar {
    width: 100%;
    height: 320px;
    background-color: #106fcf;
    opacity: 0.8;
    margin: -250px 0 30px 0;
    display: flex;
    flex-direction: row;
}

.midbar {
    padding: 40px 200px 40px 200px;
}

.midbar-left {
    width: 550px;
}

.midbar-left h4 {    
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    color: #fff;
    margin-right: 10px;
}

.midbar-left p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    color: #ffff;
    line-height: 24px;
}

.midbar-right button {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: bold;
    width: 180px;
    height: 50px;
    background: #106fcf;
    color: #fff;
    border: 2px solid #ffff;
    border-radius: none;
    margin: 45px 0 0 345px;
    padding: 10px;
    cursor: pointer;
}

.midbar-right button:hover {
    background: #ffff;
    color: #106fcf;
}

@media (max-width: 858px) {
    .midbar {
        flex-wrap: wrap;
        min-height: 400px;
        padding: 30px 30px 10px 30px;
        text-align: center;
    }
    .midbar-left {
        width: 100%;
    }
    .midbar-right {
        width: 100%;
    }
    .midbar-right button {
        margin: 10px 30px 0 30px;
        width: 150px;
        height: 40px;
        font-size: 14px; 
    }
    .midbar-left h4 {
        margin-right: none;
    }
}

/*CSS - PHASE 3 - MAIN CONTENT*/

.main-content-3 {
    width: 100%;
    min-height: 400px; 
    display: flex;
    flex-direction: row;  
    margin: 90px 0 90px 0;
}

.main-content-3-left {
    background: #ffff;
    width: 40%;
    height: 357px;    
    margin: 140px 0 0 200px;
    /*border: 1px solid grey;*/
}

/*.main-content-3-left {
    padding: 7px;
}*/

.main-content-3-left img {
    width: 100%;
    height: 357px;
}

.main-content-3-mid {
    width: 1%;
    height: 357px;
    background: #2B8CD3;
    margin: 140px 0 0 0;
}

.main-content-3-right {
    background: #ffff;
    width: 59%;
    height: 750px;
    margin: 0 200px 0 0;
    box-shadow: 4px 2px 10px 2px rgb(227, 226, 226);
}

.main-content-3-right {
    padding: 50px;
}

.main-content-3-right h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.main-content-3-right p {
    margin: 44px 0 30px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: #555555;
}

.main-content-3-right hr {
   width: 60px;
   border: 2px solid #2B8CD3;
   margin-top: 10px;
}

.points {
    margin-top: 10px;
}

.points p {
    font-family: "PT sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: -30px 0 0 35px;
}

@media (max-width: 858px) {
    .main-content-3 {
        flex-wrap: wrap;
    }
    .main-content-3-left { 
        width: 100%;           
        margin: -50px 10px 0 10px;       
    }
    .main-content-3-mid {
        display: none;
    }
    .main-content-3-right {
        width: 100%;
        margin: 30px 10px 0 10px;
        height: 1250px;
    }
    .main-content-3-right h4 {
        text-align: center;
        margin-bottom: 10px;
    }
    .main-content-3-right hr {
        margin: auto;
    }
    .main-content-3-right p.p3  {
        margin-top: 10px;
        text-align: center;
    }
}


/* Fourth Layer of Main Content CSS */

.main-content-4 {
    width: 100%;
    height: 580px;    
    margin: 0 0 0 0;
    background-image: url('../technovate-training.jpg');
    position: relative;
    background-size: cover;
    background-position: 50% 50%;    
}

.main-content-4-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    /* cursor: pointer; */
    color: #fff;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
}

.main-content-4-overlay h4 {
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #2b90d9;
}

.main-content-4-overlay h2 {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 67px;
}

.main-content-4-overlay button {
    font-size: 16px;
    margin-top: 30px;
    width: 220px;
    height: 50px;
    padding: 10px;
    cursor: pointer;
    background: #2b90d9;
    color: #fff;
    border: none;
}

.main-content-4-overlay button:hover {
    font-size: 18px;
    background: transparent;
    color: #2b90d9;
    border: 2px solid #2b90d9;
    border-radius: 20px;
    width: 240px;
    height: 50px;
}

a.playBtn {
    width: 60px;
    height: 60px;
    margin-top: 120px;
    background-color: #2B8CD3;
    border-radius: 100%;
    border: 2px solid #fff;
    position: relative;
    animation: shadowPulse 1s infinite linear;
}

a.playBtn::before {
    position: absolute;
    content: '';
    border-top: transparent 15px solid;
    border-bottom: transparent 15px solid;
    border-left: #fff 25px solid;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

a.playBtn::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: #fff solid 1px;
    border-radius: 100%;
    animation: ringPulse 1s infinite linear;
}

@keyframes ringPulse {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    10% {
        opacity: 1;        
    }

    80%, 100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes shadowPulse {
    0% {
        box-shadow: 0 0 8px 6px transparent,
                    0 0 0 0 transparent,
                    0 0 0 0 transparent;
    }

    10% {
        box-shadow: 0 0 8px 6px #2B8CD3,
                    0 0 12px 10px transparent,
                    0 0 12px 5px #2B8CD3;        
    }

    80%, 100% {
        box-shadow: 0 0 8px 6px transparent,
                    0 0 0 20px transparent,
                    0 0 0 20px #2B8CD3;
    }
}

@media (max-width: 858px) {
    .main-content-4 {
        height: 520px;
        margin-top: -60px;
    }
    .main-content-4-overlay h2 {
        text-align: center;
        font-size: 30px;
        line-height: 47px;
    }
    .main-content-4-overlay h4 {        
        font-size: 14px;
    }
    a.playBtn {
        width: 35px;
        height: 35px;
        margin-top: 60px;
        border: 2px solid #fff;        
    }
    a.playBtn::before {        
        border-top: transparent 10px solid;
        border-bottom: transparent 10px solid;
        border-left: #fff 20px solid;        
    }
}

/* Testimonials */
.testimonial-main {
    width: 100%;
    height: 500px;
    display: flex;    
    align-items: center;
    justify-content: center;
    background-color: #e3f2fd;
    margin: 40px 0 0 0;    
}

.testimonial-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0;       
    background-color: #fff;    
}

.testimonial-container .image {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-container .testi-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
}

.testi-slide p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 0 160px;
}

.testi-slide .quote-icon {
    font-size: 30px;
    color: #4070f4;
}

.testi-slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details .name 
{
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.details .job 
{
    font-size: 13px;
    font-weight: 400;
    color: #333;
}

.contact-banner 
    {
        width: 100%;
        height: 240px;
        background: #0C6087;
    }

.contact-banner h3 
    {
        font-size: 52px;
        font-family: 'poppins', sans-serif;
        font-weight: 600;        
        color: #ffffff;
        text-align: center;
        padding-top: 50px;
    }

.contact-banner p 
    {
        font-size: 15px;
        font-family: 'poppins', sans-serif;
        font-weight: 500;        
        color: #ffffff;
        text-align: center;               
    }
.contact-banner p span 
    {
        color: #cebb81;
        cursor: pointer;
    }

.contact-banner p span a
    {
        color: #cebb81;
    }

.contact-banner p span:hover 
    {
        text-decoration: underline;
    }

.contact-message h3 {
        font-size: 34px;
        font-family: 'poppins', sans-serif;
        font-weight: 700;        
        color: #242424;
        margin: 80px 0 0 220px;
}

.contact-message p 
    {
        font-size: 17px;
        font-family: 'Lato', sans-serif;
        font-weight: 400;        
        color: #797979;
        line-height: 31px;
        margin: 10px 220px 0 220px;
    }

.contact-form {
    width: 100%;
    display: flex;
    margin: 30px 0 0 0;
}

.contact-form-left {
    margin: 10px 0 0 220px;
    border-right: 1px solid rgb(222, 218, 218);
}

.contact-form-left {
    padding: 0 80px 0 0;
}

.contact-form-left form input[type=text] {
    font-size: 16px;
    font-weight: 700;
    width: 500px;
    background: none;
    height: 40px;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(222, 218, 218);
    margin-bottom: 20px;
}

.contact-form-left form input[type=text]:focus {
    border-bottom: 1px solid #2B8CD3;
}


.contact-form-left form textarea {
    font-size: 16px;
    font-weight: 500;
    width: 500px;
    background: none;    
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(222, 218, 218);
    margin-bottom: 20px;
    resize: none;
}

.contact-form-left form textarea:focus {
    border-bottom: 1px solid #2B8CD3;
}

.contact-form-left p {
    margin: 10px 0;
}

.contact-form-left p span {
    color: red;
    font-style: italic;
    font-weight: 700;
}

.contact-form-left button {
    width: 210px;
    font-size: 18px;
    background: #2B8CD3;
    color: #fff;
    padding: 11px;
    margin: 0 0 20px 0;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.contact-form-left button:hover {
    border: 2px solid #2B8CD3;
    background: #fff;
    color: #2B8CD3;
}

.contact-form-right {
    margin: 0 0 0 60px;
}

.contact-form-right h4 {
    margin-top: 20px;
    color: #2B8CD3;
}

.contact-form-right p {
    font-size: 16px;
}

@media (max-width: 858px) {
    .contact-banner h3 
    {
        font-size: 40px;
        margin: 0 0 0 -10px;
    }
    
    .contact-banner p
    {
        margin: 0 0 0 -10px;
    }
    
    .contact-message h3 
    {
        font-size: 28px;
        margin: 60px 0 0 30px;
    }
    
    .contact-message p 
    {
        font-size: 17px;
        margin: 10px 30px 0 30px;
        text-align: justify;
    }
    
    .contact-form 
    {
        flex-wrap: wrap;
    }
    
    .contact-form-left 
    {
    margin: 10px 0 20px 30px;
    }
    
    .contact-form-left form input[type=text]
    {
        width: 300px;
    }
    
    .contact-form-left form textarea {
        width: 300px;
    }
    
    .contact-form-left button 
    {
    width: 190px;
    margin: 10px 0 20px 50px;
    }
    
    .contact-form-right 
    {
    margin: 0 0 40px 30px;
    }
}

/*CSS FOR SERVICES PAGE*/

.services-inner {
    width: 100%;
    margin: 40px 0 20px 30px;
    display: flex;
}

.webdev {
    border: 1px solid rgb(222, 218, 218);
    width: 290px;
    padding: 20px;
    margin: 0 22px 0 0;
}

.webdev h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.webdev p {
    text-align: center;
    font-size: 16px;
    color: grey;
}

.webdev p span {
    color: #2B8CD3;
    font-weight: 500;
    cursor: pointer;
}


.servicon {
    font-size: 40px;
    color: #2B8CD3;
    margin: 15px 0 25px 105px;
}

@media (max-width: 858px) {
   .services-inner {
       flex-wrap: wrap;
       margin: 30px auto 0 auto;
   } 
   .webdev {
       width: 90%;
       margin: 0 auto 20px auto;
   }
   .servicon {
       margin: 15px 0 25px 125px;
   }
}


/*CSS FOR ABOUT PAGE*/

.about-inner {
    margin: 80px 0 20px 110px;
    display: flex;
}

.about-inner-left {
    width: 600px;
    margin: 0 20px 0 0;
}

.about-inner-left h2 {
    font-family: 'poppins', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 41px;
    color: #242424;
}

.about-inner-left hr {
    width: 60px;
    border: 2px solid #CEB782;
    margin-top: 30px;
}

.about-inner-left p {
    font-family: lato, sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    line-height: 31px;
    color: #333333;
    margin: 30px 0 0 0;
}

.about-inner-left p span {
    font-weight: 600;
}

.about-inner-left button {
    font-size: 15px;
    font-weight: 500;
    width: 200px;
    background: #2B8CD3;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.about-inner-left button:hover {
    background: #fff;
    color: #2B8CD3;
    border: 2px solid #2B8CD3;
}

.about-inner-right img {
    width: 650px;
    height: 450px;
    margin: 20px 0 0 0;
}

/* Slider.html CSS */

.partner-images h2 {
    text-align: center;
    margin-top: 60px;
    font-family: yantramanav, sans-serif;
}
.partner-images img {
    margin: 15px 100px 50px 0;
    width: 50px;
    height: 50px;
}

.partner-images {
    width: 70%;    
    margin: 0 auto 0 auto;
    padding: 0 45px;
}


/* CSS FOOTER */

footer {
    width: 100%;
    background: #191C20;
    color: #fff;
    height: 650px;
    margin: 80px 0 0 0;    
}


.footer-phase1 {
    display: flex;
    flex-direction: row;
}

.footer-phase1 {
    padding: 80px 70px;
}

.footer-left {
    margin: 0 100px 0 0;
}

.footer-left h5, .footer-mid h5, .footer-right h5 {
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-style: normal;
    color: #ffffff;
    line-height: 32px;
    margin: 0 0 30px 0;
}

.footer-left p {
    text-align: justify;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    font-size: 19px;
    font-style: normal;
    color: #777777;
    line-height: 36px;
}

.footer-mid ul li, .footer-right ul li {
    color: #777777; 
    font-weight: 500;
    line-height: 36px;
    font-size: 18px;
    cursor: pointer;
}

.footer-mid ul li:hover, .footer-right ul li:hover {
    color: green;
}
 
.footer-left  {
    width: 600px;
}

.footer-mid, .footer-right {
    width: 500px;
}

.fbook {
    color: #777777;
    text-align: center;
    border: 1px solid #777777;
    border-radius: 100%;
    padding: 10px;
    height: 38px;
    width: 41px;
    cursor: pointer;
}

.fbook {
    margin: 0 10px 0 0;
}

.fbook:hover {
    background: #777777;
    color: #fff;
}

.footer-phase2 {
    width: 100%;
    height: 100px;
    background: #131518;
    margin: 40px 0 0 0;
}

.footer-phase2 p {
    text-align: center;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;    
    line-height: 27px;
    color: #777777;
    padding: 40px 0 0 0;
}

@media (max-width: 858px) {
    footer {
        min-height: 650px;
    }
    footer-phase1 {
        flex-wrap: wrap;
    }
}

/*Landing Page CSS*/
.landing-page-main {
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: row;
}

.landing-page-main-left {
    background: #071437;
    width: 50%;
    height: 800px;
}

.landing-page-main-left img {
    width: 120px;
    height: 40px;
    margin: 20px 0 0 40px;
}

.landing-page-main-left p, h3 {    
    margin: 15px 0 0 40px;
    color: blue;
    font-size: 18px;
    font-weight: 500;
}

.landing-page-main-left h2 {    
    margin:20px 0 0 40px;
    color: #fff;
    line-height: 40px;
    font-size: 40px;
    font-weight: 500;
}

.landing-page-main-right {    
    width: 50%;
    height: 800px;
    background: url("../bootcamp-landing-page.png");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    
}

.lpml-inner {
    display: flex;
}

.lpml-inner-image img {     
    margin: 40px 0 0 10px;
}

.lpml-inner-txt, .lpml-inner-txt-2, .lpml-inner-txt-3, .lpml-inner-txt-4 {
    margin-top: 40px;
    color: #fff;
    font-size: 16px;
    font-family: poppins;
    font-weight: 900px;
}

.lpml-inner-txt span, .lpml-inner-txt-2 span, .lpml-inner-txt-3 span {
    margin-top: 5px;
    font-family: poppins;
    font-size: 14px;
    font-weight: 200;
}

.lpml-inner-txt-4 span {
    font-size: 14px;
    color: #fff;
}

.lpml-inner-image-2 img, .lpml-inner-image-3 img, .lpml-inner-image-4 img {     
    margin: 30px 0 0 10px;
}

.lpml-inner-txt-2, .lpml-inner-txt-3, .lpml-inner-txt-4 {
    margin-top: 30px;
}

.lpml-inner-button {
    display: flex;
    margin: 30px 0 0 40px;    
}

.lpml-inner-button button {
    padding: 12px;
    width: 160px;
    border-radius: 5px;    
}

.button-left button {
    background: orange;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    margin-right: 20px;
}

.button-left button:hover {
    background: rgb(199, 195, 187);
    border-color: #FFFFFF;
}

.button-right button {
    background: transparent;
    border-color: #FFFFFF;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.button-right button:hover {
    background: rgb(199, 195, 187)
}

/*QUOTE MODAL*/
.quote_modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;    
    background: rgba(0, 0, 0, 0.5); 
    margin: 0;
    height: 100%;
    display: none;
    z-index: 9999999;
}

.quote_modal_inner {
    width: 45%;
    height: 97%;
    padding: 20px;
    margin: 20px auto 0 auto;
    background: #fff;
    overflow: auto;
}

.quote_modal_inner button {
    margin: 0 0 0 530px;
    font-size: 18px;
    font-weight: 200;
    width: 50px;
    border: 1px solid grey;
    background: none;
    cursor: pointer;
}

p.onyeikep  {
    margin: 0 0 0 25px;
}

.whatsapplink {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    z-index: 99999999999;
    
}

.whatsapplink-icon {
    background: #25d366;
    color: #fff;
    padding: 10px 10px;
    border-radius: 50%;
    transform: all .5s ease;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.whatsapplink-icon a {
    color: #fff;
}

@media (max-width: 858px) {
    .landing-page-main {
        width: 100%;
        height: 900px;
        display: flex;
        flex-direction: row;
    }
        .landing-page-main-left h2 {   
        font-size: 30px;
        line-height: 30px;
        margin-top: 5px;
    }
    .landing-page-main-left p {
        font-size: 18px;
        margin-top: -5px;
    }
    .landing-page-main-left p, .landing-page-main-left h2, .landing-page-main-left img {
        margin-left: 20px;
    }
    .lpml-inner-image img, .lpml-inner-image-2 img, .lpml-inner-image-3 img, .lpml-inner-image-4 img {
        margin-left: -18px;
    }
    .landing-page-main-right {
        display: none;
    }
    .landing-page-main-left {
        width: 100%;
        height: 900px;
    }
    .quote_modal_inner {
        width: 90%;
        height: 87%;
        padding: 10px;
        margin: 30px auto 0 auto;
        overflow: auto;
    }
    .lpml-inner-image img, .lpml-inner-txt {     
        margin-top: 20px;
    }
    .lpml-inner-txt-4 span {
        font-size: 14px;
    }
    .lpml-inner-button {
        margin-left: 18px;    
    }
    .lpml-inner-button button {
        width: 145px;
        font-size: 12px;
    }
    .whatsapplink {
        bottom: 135px;
        right: 15px;
    }
    .whatsapplink-icon {
        font-size: 10px;
    }
    .whatsapplink-text {
        color: #fff;
    }
    .quote_modal_inner button {
    margin: 0 0 0 30px;
    }
}