/* * {
    transition: 0.6s all ease-in-out;
} */

/* width */

::-webkit-scrollbar {
    width: 14px;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #009a74;
    border-radius: 10px;
    border: 1px solid white;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #009a74;
}

body {
    font-family: 'El Messiri', sans-serif;
}





.goals {
    width: 200px;
    height: 200px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}



.pt-100 {
    padding-top: 100%;
}

.top-50 {
    top: 50%;
    transform: translateY(-50%);
}

.loader {
    animation: rotating 3s linear infinite, blur 3s linear infinite;
}


@-webkit-keyframes rotating {
    0% {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    0%, 90% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
    }

    50% {
        -webkit-filter: blur(6px);
        -moz-filter: blur(6px);
        -o-filter: blur(6px);
        -ms-filter: blur(6px);
    }
}

@keyframes rotating {
    0% {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    0%, 90% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
    }

    50% {
        -webkit-filter: blur(6px);
        -moz-filter: blur(6px);
        -o-filter: blur(6px);
        -ms-filter: blur(6px);
    }
}

.hvr-grow-1-1:hover, .hvr-grow-1-1:focus, .hvr-grow-1-1:active {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.hvr-grow-1-1 {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

[class^="hvr-"] {
    margin: 0.4em;
    padding: 1em;
    cursor: pointer;
    background: #e1e1e1;
    text-decoration: none;
    color: #666;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="hvr-"] {
    font-family: 'Roboto', sans-serif;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #009a74;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link, .nav-link:hover, .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 4px !important;
  color: #27336D !important;
}

.text-success {
    color: #009a74 !important;
}

.bg-success {
    background-color: #009a74 !important;
}

.btn-success {
    color: #fff;
    background-color: #009a74;
    border-color: #009a74;
}

.btn-check:active+.btn-success, .btn-check:checked+.btn-success, .btn-success.active, .btn-success:active, .show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1d856b;
    border-color: #009a74;
}

.btn-check:focus+.btn-success, .btn-success:focus {
    color: #fff;
    background-color: #1d856b;
    border-color: #1d856b;
    box-shadow: #009a7440;
}

.btn-success:hover {
    color: #fff;
    background-color: #1d856b;
    border-color: #009a74;
}



.hvr-icon-wobble-horizontal:hover .hvr-icon, .hvr-icon-wobble-horizontal:focus .hvr-icon, .hvr-icon-wobble-horizontal:active .hvr-icon {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.hvr-icon-wobble-horizontal .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hvr-icon-wobble-horizontal {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}



@keyframes hvr-icon-wobble-horizontal {



    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }

    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.hvr-grow {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

p {
    line-height: 40px;
    text-align: justify;
}

.section-bg-fixed {
    background-image: url(../img/sliderC2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.circle-p:hover .circle-ch {
    display: flex !important;
}

.circle-ch p {
    line-height: unset;
    font-size: 15px;
    padding: 20px;

}

.box-shadow-square-card {
    box-shadow: -9px 9px 20px 0px #323232;
}

.custom-bg {
    background-color: #0000003b;
    padding: 100px 0;
}

#myNavbar {
    /*background-color: rgba(12, 25, 40, 0.7);*/
    /*box-shadow: -11px -6px 20px 0px black;*/
}

@media only screen and (max-width: 991px) {
    .frist-section {
        margin-top: 80px;
    }

    #myNavbar {
        /*background-color: #fff;*/
        /*box-shadow: -11px -6px 20px 0px black;*/
    }

    .navbar-collapse {
        border-top: 1px solid black;
        margin-top: 10px;
    }

    p {
        line-height: 30px;
    }
}

.form-control:focus,
.form-select:focus {
    border-color: #009a74;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #009a7440;
}

.myForm input, .myForm select, .myForm textarea, .myForm button ,.myForm #selectCvBtn{
    border-radius: 15px;
    padding: 12px;
    margin: 12px 0 0 0;
}


.accordion-button:focus {
    z-index: 3;
    border-color: #bfe6dc;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(191 230 220 / 40%);
}

.accordion-button:not(.collapsed) {
    color: #009a74;
    background-color: #009a7440;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.for-pointer {
  cursor: pointer;
}
