/*styles*/

:root {
  --primary: #ffce00;
  --secondary: #0f1729;
  --white: white;
  --grey: #f9f9f9;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Archivo", sans-serif;
    color: #525e7a;
}

body.active {
    overflow-y: hidden;
}

.font2 {
	font-family: "Archivo Black", sans-serif;
}

.fancybox-container {
    z-index: 999999;
}

.container {
    max-width: 1400px;
}

.container.wide {
    max-width: 1700px;
}

.container.sml {
    max-width: 1000px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}
.aos-animate {
    z-index: 999;
}
.icon {
    background: transparent;
}

a {
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/*Blog*/


.block.image {
    background-attachment: fixed;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 80px;
}

.block.image .heading {
    color: white;
}

.block.image .small-heading {
    color: white;
}

.block.image p {
    font-size: 19px;
    color: white;
}

.block.image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: rgba(0,0,0,0.2);*/
    background: #07253f;
    opacity: .75;
}

.small-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.small-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.wide-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.large-block:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 16px;
    transform: scale(1.01);
    z-index: 2;
}

.small-block.white {
    background: white;
}

.small-block.blue {
    background: #07253f;
}

.small-block.light-blue {
    background: #4b769b;
}

.wide-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.large-block {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    transition: all 0.4s ease;
    transform: scale(1);
    z-index: 1;
}

.post-hold {
    padding: 40px 0;
    border-bottom: 1px solid #07253f;
}

.small-block.post {
    min-height: unset;
    display: block;
    height: unset;
}

.blog-post-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.block-inner {
    position: relative;
    padding: 65px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.block-inner.post {
    padding: 40px;
}

/* Header */

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.header.stuck .top-header {
    margin-bottom: 101px;
}

.header.stuck .bottom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header .top-header {
    position: relative;
    padding: 5px 20px;
    background: #0f1729;
    color: white;
}

.header .top-header ul {
    display: inline-flex;
    justify-content: left;
    align-items: center;
    height: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.header .top-header ul li a {
    display: block;
    padding: 5px;
    margin: 0 5px;
}

.header .top-header ul li a i {
    color: #ffce00;
}

.header .top-header span {
    font-size: 14px;
}

.header .bottom-header {
    position: relative;
    background: white;
    padding: 20px 40px;
}

.header .bottom-header .logo {

}

.header .bottom-header .logo img {
    max-height: 80px;
    transition: all .5s ease;
}

.header .bottom-header .menu-hold {
    position: relative;
    height: 100%;
}

.header .bottom-header .menu-hold ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.header .bottom-header .menu-hold ul li {
    position: relative;
    padding: 5px 20px;
}

.header .bottom-header .menu-hold ul li a {
    font-weight: 500;
    margin: 5px;
    text-transform: uppercase;
    font-size: 16px;
    transition: all .5s ease;
}

.header .bottom-header .btn {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.header .bottom-header .menu-hold ul li:hover > ul.dropdown {
    top: 40px;
    opacity: 1;
    visibility: visible;
}

.header .bottom-header .menu-hold ul li ul.dropdown {
    position: absolute;
    width: 250px;
    top: 80px;
    left: 0;
    background: #2e3745;
    display: block;
    height: auto;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.header .bottom-header .menu-hold ul li ul.dropdown li {
    display: block;
    margin: 5px 0;
}

.header .bottom-header .menu-hold ul li ul.dropdown li a {
/*    font-size: 15px;*/
    font-weight: 500;
}

.header .bottom-header .menu-hold ul li ul.dropdown li ul.dropdown {
    background: #001e35;
    top: 0;
    right: -70%;
    left: unset;
}

.header .bottom-header .menu-hold ul li ul.dropdown li:hover > ul.dropdown {
    left: unset;
    top: 0;
    right: -100%;
}

/*Home*/

.hero {
/*    margin-top: 120px;*/
    padding: 140px 40px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    /*border: 25px solid white;*/
    /*border-radius: 50px;*/
    overflow: hidden;
    padding-bottom: 260px;
}

.hero.page {
    padding-bottom: 140px;
}

.hero .col-md-8 {
    display: flex;
    align-items: center;
}

.hero::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0f1729;
    opacity: 0.8;
}

.hero .sub {
    color: white;
}

.hero .main {
    font-size: 55px;
    line-height: 55px;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.hero .main span {
    /*background-image: linear-gradient(55deg, #80A0DF 0%, #7CD2CC 33%, #7CD2CC 66%, #80A0DF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;*/
    color: #ffce00;
    background-size: 150%;
}

.hero .cfhold {
    position: relative;
    padding: 40px;
    background: white;
/*    border-radius: 20px;*/
    text-align: center;
    border-radius: 30px;
    /*color: white;*/
    /*-webkit-backdrop-filter: blur(12px);*/
    /*backdrop-filter: blur(12px);*/
    /*background-color: rgb(255 255 255 / 19%);*/
    color: #525e7a;
}

.hero .cfhold p {
    margin-bottom: 0;
    font-size: 14px;
}

.hero .mainp {
	margin-top: 20px;
	font-size: 18px;
}

.wpcf7-spinner {
    position: absolute !important;
}

.hero .cfhold .title {
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .cfhold .btn {
    display: block;
    width: 100%;
}

.stat-counter {
    position: absolute;
    padding: 20px 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00000085;
}

.stat-counter .stat {
	text-align: center;
}

.stat-counter .stat .number {
	font-size: 55px;
	color: white;
	/*font-weight: bold;*/
}

.stat-counter .stat .spec {
	font-size: 20px;
	/*text-transform: uppercase;*/
	font-weight: lighter;
}

.services {
	position: relative;
	padding: 80px 0;
}

.services span {
	font-size: 22px;
}

.services .service-block {
	position: relative;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #00000021;
	text-align: center;
    display: block;
}

.services .service-block .ihold {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	height: 50px;
	width: 50px;
	background: #ffce00;
	color: white;
	font-size: 23px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services .service-block .title {
	font-size: 18px;
	font-weight: bold;
	margin: 20px 0;
	text-transform: uppercase;
	min-height: 55px;
}

.services .service-block p {
	min-height: 120px;
    margin-bottom: 0;
}

.welcome {
    position: relative;
    padding: 120px 0;
}

.welcome .wblock {
    display: flex;
    position: relative;
/*    padding-left: 20px;*/
    overflow: hidden;
    padding-right: 20px;
}

.welcome .wblock.left {
    padding-left: 0;
}

.welcome .wblock.bright::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #dadada;
}

.welcome .wblock i.bigi {
    font-size: 65px;
    color: #ffce00;
}

.welcome .wblock .title {
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin: 30px 0;
}

.welcome .wblock .slide-arrow {
    margin-top: 10px;
    position: relative;
    width: 100px;
    height: 20px;
    display: block;
    left: 0;
}

.welcome .wblock .slide-arrow .rm {
    position: absolute;
    left: -100%;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.welcome .wblock .slide-arrow i {
    position: absolute;
    transition: all .5s ease;
    left: 0;
}

.welcome .wblock:hover .slide-arrow .rm {
    left: 0;
    width: auto;
    opacity: 1;
    visibility: visible;
}

.welcome .wblock:hover .slide-arrow i {
    left: 100%;
}

.welcome .image {
    position: relative;
    height: 100%;
    min-height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.about {
    position: relative;
    padding: 120px 0;
    background: #f9f9f9;
}

.about .image-holder {
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 500px;
}

.about .image-holder .image1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 80%;
    width: 60%;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}

.about .image-holder .image2 {
    position: absolute;
    right: 10%;
    bottom: 0;
    height: 60%;
    width: 50%;
    background-position: center;
    background-size: cover;
    border: 15px solid #f9f9f9;
    border-radius: 20px;
}

.about .info-hold {
    padding: 120px 0;
}

.service-gallery-filters {
    margin-bottom: 20px;
    padding-left: 0;
}
.service-gallery-filters li {
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid #ccc;
    margin: 0 5px;
}
.service-gallery-filters li.active {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.gallery-section {
    position: relative;
    /*border: 5px solid white;*/
}

.gallery-section.odd {
}

.gallery-section .image {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 800px;
    border: 5px solid white;
}

.gallery-section .image.short {
    height: 400px;
}

.discover {
    position: relative;
    padding: 80px;
}

.discover .middle-sec {
    position: relative;
    background-position: center;
    background-size: cover;
    padding: 60px;
}

.discover .middle-sec .info-holder {
    position: relative;
    padding: 40px;
    background: white;
}

ul.full-links {
    position: relative;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

ul.full-links li {
    position: relative;
    padding: 10px 0;
    border-top: 1px solid #aeaeae;
    font-weight: 600;
    font-size: 18px;
    overflow: hidden;
    transition: all .5s ease;
}

ul.full-links li:last-child {
    border-bottom: 1px solid #aeaeae;
}

ul.full-links li::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffce00;
    transition: all .5s ease;
}

ul.full-links li:hover::before {
    bottom: 0;
}

ul.full-links li:hover {
    color: white;
    padding: 10px 20px;
}

ul.full-links li:hover a {
    color: white;
}

ul.full-links li a {
    position: relative;
    transition: all .5s ease;
    z-index: 9;
}

ul.full-links li a i {
    float: right;
}

.discover .discover-block {
    position: relative;
    padding: 40px;
    display: flex;
}

.discover .discover-block i {
    font-size: 45px;
    margin-right: 20px;
    /*background-image: linear-gradient(55deg, #80A0DF 0%, #7CD2CC 33%, #7CD2CC 66%, #80A0DF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400%;*/
    color: #ffce00;
}

.discover .discover-block .info {

}

.discover .discover-block .info .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.discover .discover-block .info i {
    font-size: unset;
    color: unset;
}

.split-section {
    position: relative;
}

.split-section .image {
    position: relative;
    height: 100%;
    min-height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.split-section .split-content {
    position: relative;
    padding: 80px;
    background: #2e3745;
    color: white;
}

.split-section .split-content .big {
    font-size: 85px;
    line-height: 85px;
    font-weight: 800;
    /*background-image: linear-gradient(55deg, #80A0DF 0%, #7CD2CC 33%, #7CD2CC 66%, #80A0DF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100%;*/
    color: #ffce00;
}

.team {
    position: relative;
    padding: 120px 0;
}

.team .slide {

}

.team .member {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.team .member::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(25,27,29);
    background: linear-gradient(0deg, rgba(25,27,29,0.8183648459383753) 20%, rgba(255,255,255,0) 100%);
}

.team .member .info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
}

.team .member .info .name {
    font-weight: 800;
    font-size: 20px;
}

.team .member .info .role {
    font-size: 600;
}

.about {
    position: relative;
    padding: 120px 0;
}

.about .about-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    width: 90%;
    background-size: cover;
    background-position: center;
}

.about .about-image::before {
    content: "";
    position: absolute;
    top: 15%;
    height: 100%;
    width: 100%;
    left: -10%;
    background: #f9f9f9;
    z-index: -1;
}

.about .about-image::after {
    content: "";
    position: absolute;
    top: -15%;
    height: 50%;
    width: 30%;
    right: -10%;
    background: #f9f9f9;
    z-index: -1;
}

.news {
    position: relative;
    padding: 120px 0;
}

.cases .news-block {
    box-shadow: 0 0 10px 10px #00000008;
    border-radius: 15px;
}

.news .news-block {
    position: relative;
    padding: 20px;
    display: block;
}

.news .news-block .image {
    position: relative;
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.news .news-block.taller .image {
    height: 350px;
}

.news .news-block .info {
    position: relative;
    padding-left: 40px;
}

.news .news-block .info::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 30px;
    height: 3px;
    background: green;
}

.news .news-block .title {
    font-size: 22px;
    margin-top: 20px;
/*    text-transform: uppercase;*/
    font-weight: 600;
}

.news .news-block .tag {
/*    letter-spacing: 2px;*/
    text-transform: uppercase;
    display: inline-block;
    font-size: 13px;
}

.news .news-block .date {
    position: relative;
    padding-left: 20px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    margin-left: 10px;
}

.news .news-block .date::before {
    content: "|";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.big-image {
    position: relative;
    background-position: center;
    background-size: cover;
    padding: 80px 40px;
    border: 25px solid white;
    border-radius: 50px;
    overflow: hidden;
    color: white;
}

.big-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #2e3745;
    opacity: 0.4;
}

/*Gallery*/

.gallery-hold {
        position: relative;
        padding: 40px 30px;
    }
    .gallery-items {
        margin: 12.5px;
    }
    .gallery-image {
        height: 450px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .details {
        position: relative;
        padding: 20px 10px;
    }
    .tag {
        font-weight: 400;
        font-size: 19px;
/*        text-transform: uppercase;*/
    }
    .cat {
        font-weight: 300;
        font-size: 15px;
        opacity: .7;
    }
    .light {
        font-weight: 200;
    }
    .style-heading {
        position: relative;
        font-size: 26px;
        margin-bottom: 0;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 10px;
        opacity: .9;
        letter-spacing: 1px;
    }
    .style-heading::before {
        position: absolute;
        content: "";
        left: 50%;
        transform: translate(-50%);
        bottom: -2px;
        height: 3px;
        width: 20px;
        background: #525252;
    }
    .slick-arrow {
        background: transparent;
        color: #525252;
    }
    .slick-prev {
        left: -42px;
        font-size: 25px;
    }
    .slick-next {
        right: -40px !important;
        font-size: 25px;
    }
    .gallery-image {
      object-fit: contain;
      object-position: center;
    }
    .side-bar {
        position: absolute;
        padding: 40px 0;
        width: 15vw;
        right: 0;
        text-align: right;
        z-index: 1;
        transition: all .5s ease;
    }
    .gal-hold {
        width: 85vw;
    }
    .tab-wrap ul {
        font-size: 21px;
        margin-bottom: 20px;
        font-weight: 400;
        line-height: 40px;
        text-transform: uppercase;
    }
    .content_title {
     margin-bottom: 40px;
    }
     .content_title .title {
         color: white;
    }
     .content_title .title small {
         font-weight: 100;
    }
     .main {
         /*padding: 15px;*/
         margin: auto;
    }
     .main * {
         transition: all 0.4s;
    }
     .main .top_banner, .main .bottom_banner {
         text-align: center;
         color: white;
    }
     .main .main_content {
         column-gap: 20px;
         width: 100%;
    }
     .main .main_content .picture_wrapper {
         margin-bottom: 20px;
         position: relative;
         overflow: hidden;
         transition: all .3s ease;
    }
     .main .main_content .picture_wrapper img {
         height: 100%;
         width: 100%;
         object-fit: cover;
         box-shadow: 49px 42px 80px 24px rgba(67,58,122,0.06);
         position: relative;
         transition: all .5s ease;
         overflow: hidden;
    }
    }
    .main .main_content .picture_wrapper img:hover {
        box-shadow: 49px 42px 80px 24px rgba(67,58,122,0.15);
    }
     @media (min-width: 1200px) {
         .main_content {
             column-count: 3;
        }
    }
     @media (min-width: 768px) and (max-width: 1199px) {
         .main_content {
             column-count: 3;
        }
    }
     @media (min-width: 576px) and (max-width: 767px) {
         .main_content {
             column-count: 2;
        }
    }
     @media (max-width: 575px) {
         .main_content {
             column-count: 1;
        }
    }
    .box {
        overflow: hidden;
        display: none;
    }

    .selected {
        display: block;
        opacity: 1;
        transition: opacity 1s linear;
        -webkit-transition: opacity 1s linear; }

    .checklist_wrap .box{
        display: block;
        opacity: 1;
        transition: opacity 1s linear;
        -webkit-transition: opacity 1s linear; }

    .contextNav.onethird {
        background-color: transparent; }

    .tab-wrap li {
        cursor: pointer;
        position: relative;
        transition: all .5s ease;
        line-height: 20px;
        padding: 20px 30px;
    }

    .tab-wrap li.active, .tab-wrap li:hover {
        background: #f2ede4;
    }
    .magnifier {
        position: absolute;
        bottom: -70px;
        font-size: 40px;
        z-index: 99;
        right: 15px;
        text-align: center;
        width: 48px;
        transition: all .5s ease;
        padding: 3px;
        color: #fff;
    }
    .main .main_content .picture_wrapper:hover .magnifier {
        bottom: 0;
    }
    .social {
        display: inline-flex;
        position: relative;
        right: 30px;
    }
    .social li a {
        color: white;
        font-size: 20px;
        text-decoration: none !important;
    }
    .btn-large {
        position: absolute;
        right: 0;
        bottom: 45px;
        width: 100%;
        cursor: pointer;
        transition: all .5s ease;
        line-height: 20px;
        padding: 20px 30px;
        font-size: 17px;
        text-transform: uppercase;
        font-weight: 400;
        color: white !important;
        text-decoration: none !important;
    }
    .btn-large:hover {
        background: #0d0d0d;
    }
    .side-button {
        width: fit-content;
        left: -43px;
        position: absolute;
        background: black;
        z-index: 9999;
        font-size: 26px;
        padding: 4px 9px;
        border-radius: 5px 0 0 5px;
        top: 45%;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
        transition: all .5s ease;
    }
    .side-button.closer {
        width: fit-content;
        left: 25px;
        position: absolute;
        z-index: 9999;
        font-size: 30px;
        top: 42px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all .5s ease;
        transform: unset;
        border-radius: unset;
        padding: unset;
        background: unset;
    }
    @media(max-width: 1800px) {
        .side-bar {
          width: 20vw;
        }
        .gal-hold {
          width: 80vw;
        }
    }
    @media(max-width: 1500px) {
        .side-bar {
          width: 25vw;
        }
        .gal-hold {
          width: 75vw;
        }
    }
    @media(max-width: 991px) {
        .gal-hold {
          width: 100vw;
        }
        .side-bar {
            position: fixed;
            width: 100%;
            max-width: 220px;
            z-index: 9;
            right: -220px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 20px 0 0 20px;
        }
        .side-bar.active {
            right: 0;
        }
        .side-bar, .side-button {
          background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }
        .side-button {
            opacity: 1;
            visibility: visible;
        }

        .tab-wrap ul {
          font-size: 19px;
        }
    }

    @media(max-width: 345px) {
        .side-bar.active .side-button {
            opacity: 0;
            visibility: hidden;
        }
        .side-bar.active .side-button.closer {
            opacity: 1;
            visibility: visible;
        }
    }

/*new*/

/*Defaults*/

.banner {
    padding: 80px 0;
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.9;
}

.block-array {
    position: relative;
    padding: 80px 0;
}

.block-array .service-block {
    position: relative;
    display: block;
    box-shadow: 0 0 20px 10px #ffce000a;
    padding: 20px;
}

.block-array .service-block .image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.block-array .service-block .title {
    font-size: 24px;
    margin: 15px 0;
    font-weight: bold;
}

.block-array .service-block p {
    font-size: 14px;
}

.founder {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.founder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.9;
}

.founder .image {
    position: relative;
    height: 100%;
    min-height: 300px;
    width: 90%;
    background-position: center;
    float: right;
    background-size: cover;
}

.welcome.page {
    position: relative;
    padding: 80px 0;
}

h1,h2,h3,h4 {
    font-size: inherit !important;
    font-weight: inherit !important;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    background: #ffce00;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
}

.sub {
    font-size: 22px;
    color: #ffce00;
    text-transform: uppercase;
}

.heading {
    font-size: 45px;
    line-height: 45px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.heading span {
    /*background-image: linear-gradient(55deg, #80A0DF 0%, #7CD2CC 33%, #7CD2CC 66%, #80A0DF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400%;*/
    color: #ffce00;
}

.form-control {
    border-radius: 0;
}

/*Footer*/

.footer img {
    max-height: 80px;
    margin: 10px 0;
}

.footer i {
    color: #ffce00;
}

.footer {
    background: #2e3745;
    color: white;
}

.footer .top-footer {
    border-bottom: 1px solid #aeaeae;
}

.footer .top-footer {
    padding: 80px 40px;
}

.footer .bottom-footer {
    padding: 20px;
    font-size: 12px;
}

.footer .top-footer .logo img {
    max-height: 80px;
}

.footer .footer-heading {
    font-size: 22px;
    font-weight: 600;
}

.footer ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer ul li a {
    margin: 5px 0;
    display: inline-block;
    color: white;
    font-size: 14px;
}

/*Responsive*/

@media only screen and (min-width : 1200px) {
    .menu-toggle {
        display: none;
    }

    .dropdown-toggle {
        display: none;
    }
}

@media only screen and (max-width : 1200px) {
    body {
        overflow-x: hidden;
    }

    body.active {
        overflow-y: hidden;
    }

    ul {
        padding-left: 0;
    }

    .top-header .logo {
      display: none;
    }

    .top-header {
        display: none;
    }

    .header .bottom-header {
        position: fixed;
        z-index: 99999;
        width: 100%;
        background: #0f1729;
        top: 0;
    }

    .header .logo {
        text-align: left !important;
    }

    .header .logo img {
        position: relative;
        z-index: 999;
        max-height: 70px;
        max-width: 100%;
        height: auto;
    }

    .header ul li::before {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        width: 40px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        margin: 0;
        appearance: none;
        border: 0;
        background: none;
        overflow: visible;
        z-index: 999999;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .menu-toggle:focus {
        outline: none;
    }

    .menu-toggle span {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        background: #80A0DF;
    }

    .menu-toggle span:nth-of-type(1) {
      transition: all 0.3s 0.3s, transform 0.3s 0s;
    }

    .menu-toggle span:nth-of-type(2) {
      top: 50%;
      margin-top: -1px;
      left: 0;
      transition: all 0.3s 0.3s;
    }

    .menu-toggle span:nth-of-type(3) {
      bottom: 0;
      top: auto;
      left: 0;
      transition: all 0.3s 0.3s, transform 0.3s 0s;      
    }

    .menu-toggle.active {
        transform: translateY(-50%), rotate(135deg);
        transition: all 0.5s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(1) {
      top: 50%;
      margin-top: -1px;
      transform: rotate(90deg);
      transition: all 0.3s, transform 0.3s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(2) {
      opacity: 0;
      transition: all 0.3s, opacity 0.3s 0s;      
    }

    .menu-toggle.active span:nth-of-type(3) {
      bottom: 50%;
      margin-bottom: -1px;
      transform: rotate(0deg);
      transition: all 0.3s, transform 0.3s 0.3s;      
    }

    .header .call-block {
        display: none;
    }
    .header .bottom-header {
    }

    .header .bottom-header ul.menu {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 99999;
        display: none;
        left: 0;
        top: 0;
        background: #0f1729;
        text-align: center;
        padding-top: 100px;
        overflow-y: scroll;
        margin-left: 0;
        padding-left: 0;
    }

    .header .bottom-header ul.menu li {
        display: block !important;
        position: relative;
        float: none;
        height: unset;
        padding: 0;
    }

    .header .bottom-header ul.menu li a {
        padding: 22px;
        text-decoration: none;
        font-size: 22px;
        display: block;
        transition: 0.3s;
        border-left: none;
        width: 75%;
        margin: 0 auto;
        color: white;
        background: transparent;
        border: none;
    }

    .bottom-header ul li ul.dropdown {
        position: relative !important;
        left: 50%;
        top: 0;
        margin-left: 0;
        transition: all 0.4s ease;
        display: block !important;
        opacity: 0;
/*        background: white;*/
        text-align: center;
        height: auto;
        visibility: hidden;
        margin: 0;
        padding: 0;
        box-shadow: none;
        z-index: 9;
        transform: translate(-50%);
    }

    ul.double {
      columns: unset;
      -webkit-columns: unset;
      -moz-columns: unset;
    }

    .footer {
        text-align: center;
    }

    .footer ul.pages li {
        display: block;
        width: 100%;
    }

    .footer ul.pages li::before {
        display: none;
    }

    .footer .social {
        margin-bottom: 20px;
    }

    .footer .footer-heading {
        margin-top: 20px;
    }

    body {
        text-align: center;
    }
    
}

@media (max-width: 991px) {
    .hero .main,
    .heading {
        font-size: 35px;
        line-height: 35px;
    }

    .hero {
    	padding-bottom: 140px;
        margin-top: 80px;
    }

    .hero .cfhold {
    	margin-top: 30px;
    }

    .discover {
        padding: 80px 0;
    }

    .discover .middle-sec {
        padding: 20px;
    }

    .about {
        padding: 0;
    }

    .about .about-image {
        width: 100%;
    }

    .about .about-image::after,
    .about .about-image::before {
        display: none;
    }

    .about .col-md-7 {
        margin-bottom: 40px;
    }
    
    .stat-counter {
    	position: relative;
    	background: #0f1729;
    }

    .text-right {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .team .member {
        margin: 20px;
    }

    .about .image-holder {
    	margin: 20px 0;
    }

    .about .image-holder .image1 {
    	width: 80%;
    }

    .about .image-holder .image2 {
    	width: 60%;
    	right: 0;
    }

    .services .service-block {
    	margin: 10px 0;
    }
}

@media (max-width: 576px) {

}

@media (max-width: 400px) {

}
