:root {
    --color-default: #fafafa;
    --color-primary: #27a776;
    --color-secondary: #0d6efd
        /*#161718*/
    ;
}

body {
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: "Poppins"
}

#loader {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
}

/*loader in all pages*/

#loader:before,
#loader:after {
    content: "";
    background-color: #f6f9ff;
    position: absolute;
    inset: 0;
    width: 50%;
    height: 100%;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

#loader:after {
    left: auto;
    right: 0;
}

.spinner {
    width: 44.8px;
    height: 44.8px;
    animation: spinner-y0fdc1 2s infinite ease;
    transform-style: preserve-3d;
}

.spinner>div {
    background-color: rgba(13, 110, 253, 0.2);
    height: 100%;
    position: absolute;
    width: 100%;
    border: 2.2px solid #0d6efd;
}

.spinner div:nth-of-type(1) {
    transform: translateZ(-22.4px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}

.spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}

.spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}

.spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
    transform: translateZ(22.4px);
}

@keyframes spinner-y0fdc1 {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }

    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }

    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 60px;
    padding: 35px 10px 10px 10px;
    transition: all 0.3s;
}

#main2 {
    margin-top: 60px;
    /*padding: 10px 10px;*/
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}



@media (min-width: 1200px) {

    #main,
    #footer {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {

    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 300px;
    }

    .toggle-sidebar .sidebar {
        left: 0px;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 68px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.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: #0d6efd;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.hero h2 {
    margin-bottom: 50px;
    font-size: 24px;
}

.btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #0d6efd;
}

.btn-get-started:hover {
    background: #6ea8fe;
}

.hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    line-height: 1;
}

.hero .btn-watch-video i {
    line-height: 0;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

.hero .btn-watch-video:hover i {
    color: #47b2e4;
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    .hero {
        /*   height: 75vh;*/
        text-align: center;
    }

    .hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    .hero .hero-img {
        text-align: center;
    }

    .hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .hero .hero-img img {
        width: 80%;
    }

    .hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.slogan {
    font-family: "Poppins";
    /* color: #0d6efd */
    color: #838485
}





/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #47b2e4;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    font-family: "Poppins", sans-serif;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progressCust {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progressCust .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

 .skills .progressCust .skill .val {
    float: right;
    font-style: normal;
}

.btn-group-fab {
    position: fixed;
    width: 50px;
    height: auto;
    right: 22px; bottom: 75px;
  }

  .btn-group-fab div {
    position: relative; width: 100%;
    height: auto;
  }

  .btn-group-fab .btn {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    display: block;
    margin-bottom: 4px;
    width: 40px; height: 40px;
    margin: 4px auto;
  }

  .btn-group-fab .btn-main {
    width: 50px; height: 50px;
    right: 50%; margin-right: -25px;
    z-index: 9;
  }
   .btn-group-fab .btn-sub {
    bottom: 0; z-index: 8;
    right: 50%;
    margin-right: -20px;
    -webkit-transition: all 2s;
    transition: all 0.5s;
  }
 
  .btn-group-fab.active .btn-sub:nth-child(2) {
    bottom: 60px;
  }
  .btn-group-fab.active .btn-sub:nth-child(3) {
    bottom: 110px;
  }
  .btn-group-fab.active .btn-sub:nth-child(4) {
    bottom: 160px;
  }
  
  .btn-group-fab.active .btn-sub:nth-child(5) {
    bottom: 210px;
  }
  .btn-group-fab.active .btn-sub:nth-child(6) {
    bottom: 260px;
  }
.OranageColor{
  background-color: #858585 !important;
  color: white;
}
 

/*
.skills .progressCust-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progressCust-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #0d6efd;
} */