/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444;
}

a {
    color: #4fa6d5;
    text-decoration: none;
}

a:hover {
    color: #45beff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 55px;
    z-index: 99999;
    background: #45beff;

    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #09a0db;

    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/* phone */
.phone {
    position: fixed;
    left: 25px;
    bottom: 55px;
    z-index: 99999;
    background: #45beff;

    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: ease-in-out 0.4s;
}

.phone i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.phone:hover {
    background: #09a0db;
    color: #fff;
}


/* phone */

/* phone */
.facebook {
    position: fixed;
    left: 25px;
    bottom: 110px;
    z-index: 99999;
    background: #45beff;

    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.4s;
}

.facebook i {

    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.facebook:hover {

    background: #09a0db;

    color: #fff;
}


/* phone */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    opacity: 1;
    background-color: #595c63;
}

#header.header-transparent {
    background: none;
}

#header.header-scrolled {
    background: rgba(0, 0, 0, 0.5);
    height: 60px;
}

#header .logo h1 {
    font-size: 100px;
    margin: 0;
    padding: 4px 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;

}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
}

#main {
    margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: " sans-serif", sans-serif;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: bolder;
    font-size: 18px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #5fbfeb;

}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #1c3745;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #68A4C4;
}
.navbar .dropdown ul .active {
    color: red;
}
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media(max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media(max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 38, 48, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #1e4356;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #68A4C4;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #68A4C4;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

#hero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 130%;
    height: 95%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)), url("../img/09.jpg") center top no-repeat;
    z-index: 0;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
}

#hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 130%;
    height: 96%;
    background: #68A4C4;
    opacity: 0.3;
    z-index: 0;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(18px) rotate(2deg);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px;
    color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

.btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #68A4C4;
}

#hero .btn-get-started:hover {
    background: #68A4C4;
    color: #fff;
    text-decoration: none;
}

@media(min-width: 1024px) {
    #hero p {
        width: 60%;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media(max-width: 768px) {
    #hero::after {
        width: 180%;
        height: 95%;
        border-radius: 0 0 50% 50%;
        transform: translateX(-50%) rotate(0deg);
    }
    #hero::before {
        top: 0;
        width: 180%;
        height: 94%;
        border-radius: 0 0 50% 50%;
        transform: translateX(-50%) translateY(20px) rotate(4deg);
    }
}

@media(max-width: 575px) {
    #hero h2 {
        font-size: 30px;
    }
    #hero::after {
        left: 40%;
        top: 0;
        width: 200%;
        height: 95%;
        border-radius: 0 0 50% 50%;
        transform: translateX(-50%) rotate(0deg);
    }
    #hero::before {
        left: 50%;
        top: 0;
        width: 200%;
        height: 94%;
        border-radius: 0 0 50% 50%;
        transform: translateX(-50%) translateY(20px) rotate(4deg);
    }
}

/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#hero-no-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: center;
}

#hero-no-slider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url("../img/hero-bg.jpg") center top no-repeat;
}

#hero-no-slider h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 48px;
    font-weight: 700;
}

#hero-no-slider p {
    color: #fff;
}

#hero-no-slider .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #68A4C4;
}

#hero-no-slider .btn-get-started:hover {
    background: #68A4C4;
    color: #fff;
    text-decoration: none;
}
.carousel-item h2 span {
    color: #5f84eb;


}
.carousel-item .font {
    font-size: 40px;
    font-weight: bold;
}
.carousel-container h3 {
    color: #5f84eb;


    font-size: xx-large;
    font-weight: bolder;
}

@media(max-width: 575px) {
    #hero-no-slider h2 {
        font-size: 30px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f3f8fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2,
h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #45beff;
}
.section-title h1 {
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #45beff;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #68A4C4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .row + .row {
    margin-top: 100px;
}

.features h3 {
    font-weight: 400;
    font-size: 24px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    padding-bottom: 10px;
}

.features ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #68A4C4;
}

.features p:last-child {
    margin-bottom: 0;
}

.section-title span {
    font-size: x-large;
    font-weight: bolder;
    color: #68A4C4;

}

.features .established h2,
h3 {
    color: rgb(52, 177, 235);


}


/* start our-service */

.our-service .service {
    margin-bottom: 30px;
    margin-left: 25px;
    padding: 0;
    /* border: 1px solid rgb(52, 177, 235); */

    border-radius: 15px;
    text-align: center;
    height: 700px;

}
.animate__bounceInLeft {
    animation-duration: 2s;
}
.our-service .service img {
    width: 100%;
    height: 250px;
    border-radius: 15px;
}
.our-service .service h2 {
    color: #5cbbfa;
    margin-top: 15px;
}
.our-service .service h3 {

    margin-top: 15px;
}
.our-service .service .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;

    color: #000;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;


}
.our-service .service .btn-get-started:hover {
    color: #fff;
    background: #45beff;

    text-decoration: none;
}

.our-service .title1 {

    padding-bottom: 30px;
}

.our-service .title1 h2 {

    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #45beff;
}

.our-service .title1 h2::before {

    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    /* left: calc(50% - 60px); */
}

.our-service .title1 h2::after {

    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #052536;
    bottom: 0;
    left: calc(90% - 20px);
}
@media only screen and(max-width: 768px) {
    /* For mobile phones: */
    .our-service .service {

        height: 600px;

    }
}

/* ========================================================================================= */


/* start main solution section */

.Solution-section {
    margin-top: 70px;
}
.content .accordion-item {

    background-color: #fff;
    border-radius: 15px;
    padding: 0;
}


.content .accordion-button {

    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: large;
    font-weight: bold;
    color: rgb(52, 177, 235);

    text-align: left;
    background-color: rgb(248, 247, 247);
    border: 0;
    border-radius: 15px;
    overflow-anchor: none;
    margin-top: 20px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease
}

.content .accordion-button:hover {
    background-color: rgb(52, 177, 235);
    color: #fff;
    transition: ease-in-out 0.3s;
}


@media(prefers-reduced-motion:reduce) {
    .content .accordion-button {

        transition: none
    }
}
.content .accordion-button:not(.collapsed) {
    font-weight: bolder;

    color: #fff;
    background-color: rgb(52, 177, 235);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125)
}

.accordion-button::after {
    flex-shrink: 0;
    width: 0;
    height: 0;
    content: "";
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 0;
    transition: transform 0.2s ease-in-out
}


.content ul {

    list-style: none;
    padding: 0;
    font-size: medium;
}

.content ul li {

    padding-bottom: 10px;
}

.content ul i {

    font-size: 20px;
    padding-right: 4px;
    color: rgb(52, 177, 235);


}

.content p:last-child {

    margin-bottom: 0;
}


/* end  main solution section */


/*start about section */
.about {
    margin-top: 70px;
}
.about .row +.row {

    margin-top: 100px;
}

.about h3 {

    font-weight: 400;
    font-size: 24px;
}


.about ul {

    list-style: none;
    padding: 0;
}

.about ul li {

    padding-bottom: 10px;
}

.about ul i {

    font-size: 20px;
    padding-right: 4px;
    color: #68A4C4;
}

.about p:last-child {

    margin-bottom: 0;
}

.about .section-title span {

    font-size: x-large;
    font-weight: bolder;
    color: #68A4C4;

}

.about.established h2,

h3 {
    color: rgb(52, 177, 235);


}
.about h2 {
    color: rgb(52, 177, 235);

}


.about .established {

    margin-bottom: 30px;
}


.our-cust {
    margin-bottom: 30px;
    margin-left: 25px;
    padding: 0;

    text-align: center;


}


/* end about section */

/*start section form-message */

.form-message label {
    color: #45beff;
}
.form-message .form-control {
    background-color: #f6f6f6;
    border-radius: 20px;
}

/*end section form-message */


/* start section footer  */
footer {
    background-color: black;
    color: #fff;
    padding-top: 25px;
    padding-bottom: 10px;
}
footer p span {
    color: #45beff;
    font-weight: bold;

}
/* end section footer  */
