/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* cyrillic */
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v29/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

body {
    background: url('/media/img/about-bg.webp') center top no-repeat fixed;
    background-size: cover;
    background: #eeecec;
    color: #666666;
    font-family: 'Montserrat', sans-serif;
}


@font-face {
    font-family: bootstrap-icons;
    src: url('/static/vendors/fonts/bootstrap-icons.woff2') format('woff2'), url('/static/vendors/fonts/bootstrap-icons.woff') format('woff');
}


a {
    color: #0f75bd;
    transition: 0.5s;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: #18d36e;
    outline: none;
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}


section {
    overflow: hidden;
}

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1.5px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1.2px;
    background: rgb(123, 175, 253);
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #29a362;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #666666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section-header h3{
        padding-top: 50px;
    }
}


/* Back to top button */

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #18d26e;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

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

.back-to-top:hover {
    background: #2ce782;
    color: #fff;
}

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

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: '';
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #18d26e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #cff4D2;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight:550;
    margin-bottom: 0;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;

}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: '/';
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* Featured Services Section
  --------------------------------*/
#featured-services {
    padding:4rem;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
}


#featured-services .box {
    align-content: center;
}

#featured-services .box-bg {
    background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
    color: #29a362;
    font-size: 48px;
    display: inline-block;
    line-height: 1;
}

#featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
}

#featured-services h4 a {
    color: #fff;
    font-weight:600;
}

#featured-services h4 a:hover {
    color: #18d26e;
}

#featured-services p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}

.header-services h3{
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

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

.header-services h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #29a362;
    bottom: 0;
    left: calc(50% - 20px);
}


/* About Us Section
  --------------------------------*/
#about {
    background: url('/media/img/about-bg.webp') center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9;
}


#about .container {
    position: relative;
    z-index: 10;
}

/* mission vision and goals */

#about .about-col {
    background: #cff4D2;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: block;
    min-height: 340px;
    border-radius: 10px;
}

#about .about-col .img {
    position: relative;
}

#about .about-col .img img {
    border-radius: 5px 5px 0 0;
}

#about .about-col .icon {
    width: 64px;
    height: 64px;
    text-align: center;
    position: absolute;
    background-color: #29a362;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc(50% - 32px);
    bottom: -30px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about .about-col i {
    font-size: 28px;
    line-height: 0;
    color: #fff;
    transition: 0.3s;
}

#about .about-col:hover .icon {
    background-color: rgb(97, 97, 97);
}

#about .about-col:hover i {
    color: #fff;
}

#about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    padding: 40px 0 12px 0;
}

#about .about-col h2 a {
    color: #000;
}

#about .about-col h2 a:hover {
    color: #18d26e;
    letter-spacing: 2px;
    transition: ease-in 0.5s;

}

#about .about-col p {
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
}

.grid-row{
    margin-top: 8rem;
}

/* Services Section
  --------------------------------*/
#services {
    background: #eeecec;
    background-size: cover;
    padding: 60px 0 40px 0;
}

#services .box {
    margin-bottom: 30px;
}

#services .icon {
    float: left;
}

#services .icon i {
    color: #29a362;
    font-size: 36px;
    line-height: 0;
    transition: 0.5s;
}

#services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#services .title a {
    color: #111;
}

#services .box:hover .title a {
    color: #18d26e;
}

#services .description {
    font-size: 16px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #services header .description {
        text-align:center;
        margin-left: 5px;
    }
}


/* Team Section
  --------------------------------*/
#team {
    background: #eeecec;
    padding: 60px 0;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #000;
    position: relative;
}

#team .member .member-info {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

@media (max-width: 768px) {
    #team .member .member-info{
        opacity: 1.5;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.2s;

    }
}

#team .member .member-info-content {
    margin-top: -50px;
    transition: margin 0.2s;
}

#team .member:hover .member-info {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: 0.4s;
}

#team .member:hover .member-info-content {
    margin-top: 0;
    transition: margin 0.4s;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

#team .member .social {
    margin-top: 15px;
}

#team .member .social a {
    transition: none;
    color: #fff;
}

#team .member .social a:hover {
    color: #2867B2;
}

#team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}



.circular_image {
    border-radius: 70%;
    width: 60px;
    height: 60px;
}


.range-services{
    vertical-align: top;
    display: inline-block;
    font-weight:600;
    font-size: 20px;
    text-align: center;
    padding:40px;
}

.range-service::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9;
}


.caption{
    margin-top: 10px;
    display:block;
}


/* image size control with wrapper */

.front-frame-img {
    height: 250px;
    width: 100%;
    background-color: var(--blog-featured-bg);
    display: flex;
    justify-content: center;
}

.front-frame-img img{
    max-height: 100%;
    max-width: 100%;
    margin: auto;
}

.entry-img img {
    object-fit: cover;
    width: 50%;
    height: 100%;
}

/* Thumbnails for the gallery */
.thumbnails {
    border : 2px solid gray;
    padding : 10px;
    border-radius: 10px;
    box-shadow: 10px 10px grey;
}


.imageDiv {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 60px;
    column-gap: 35px;
}

.imageDiv > * {
    /* align-items: center; */
    flex-shrink: 1;
}
