/*default presets*/
:root {
    --default-color: #6480D3;
    --default-alt-color: #60AC97;
    --default-gray: #8d8d8d;
}

.c-split * {
    box-sizing: border-box;
}

.c-split a {
    text-decoration: none;
    cursor: pointer;
}

.c-split img {
    max-width: 100%;
    height: 100%;
}

/*width and height*/
.c-split .w-100 {
    width: 100%;
}

.c-split .h-100p {
    height: 100%;
}

/*Icons*/
.icon-50 {
    width: 50px;
    height: 50px;
    max-width: 50px;
}

.icon-70 {
    width: 70px;
    height: 70px;
    max-width: 70px;
}

/*Absolute and relative*/
.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.a-t-r {
    top: 20px;
    right: 0px;
}

.a-b-l {
    bottom: 0px;
    left: 0px;
}

.a-t-l {
    top: 0px;
    left: 0px;
}

.a-t-r {
    top: 10px;
    right: 10px;
}

.a-t-c {
    top: 50%;
    left: 50%;
        transform: translate(-50%, -50%);
}

/*Container types*/
.c-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.c-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rg-block.c-split{
    align-items: flex-start;
}

.c-stretch {
    display: flex;
    justify-content: stretch;
    align-items: center;
}

.c-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-wrap {
    flex-wrap: wrap;
}

/*Flex*/
.flex-1 {
    flex: 1;
}

.splash > :nth-child(n) {
    flex: 1;
    min-width: 260px;
}

.splash > :nth-child(2n), .splash > :nth-child(9n) {
    flex: 2;
    min-width: 360px;
}

.splash > :nth-child(5n), .splash > :nth-child(50n-48) {
    flex: 3;
    min-width: 420px;
}

.splash > :nth-child(6n) {
    flex: 4;
    min-width: 640px;
}

.special {
    flex: 4 !important;
    min-width: 640px !important;
}

/*Padding types*/
.p-sides-18 {
    padding-left: 17vw;
    padding-right: 17vw;
}

.p-sides-12 {
    padding-left: 12vw;
    padding-right: 12vw;
}

.p-b-1 {
    padding-bottom: 1vh;
}

/*Button types*/
button, select {
    outline: none;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

/*Margin types*/
.m-t-18 {
    margin-top: 18vh;
}

.m-t-9 {
    margin-top: 9vh;
}

.m-t-7 {
    margin-top: 7vh;
}

.m-t-5 {
    margin-top: 5vh;
}

.m-t-3 {
    margin-top: 3vh;
}

.m-b-20 {
    margin-bottom: 20vh;
}

.m-l-14px {
    margin-left: 14px;
}

/*Text stylings*/
.t-black {
    color: #000000;
}

.t-center {
    text-align: center;
}

.t-48 {
    font-size: 56px;
}

.t-24 {
    font-size: 24px;
}

.t-20 {
    font-size: 20px;
}

.t-16 {
    font-size: 16px;
}

.t-w {
    color: #ffffff;
}

.t-gray {
    color: var(--default-gray);
}

.t-bold {
    font-weight: 700;
}

.t-bolder {
    font-weight: 800;
}

.t-u {
    border-bottom: 2px solid #ffffff;
}

/*Main page*/
header * {
    max-height: 60px;
}

.splash-logo {
    width: 15vw;
}

.splash-img, .splash-color-1, .splash-color-2, .client-color-1 {
    object-fit: cover;
    display: block;
    height: 37vh;
    width: 100%;
    transition: all 0.4s;
    transition-timing-function: ease-in-out;
}

.splash-color-1 {
    background: rgba(119, 143, 207, 0.75);
}

.splash-color-2 {
    background: rgba(131, 187, 174, 0.75);
}

.splash-c {
    height: 37vh;
    margin: 7px;
    max-width: 100%;
    transition: all 0.4s;
    transition-timing-function: ease-in-out;
}

.splash-c>div>div {
    padding-bottom: 20px;
}

.splash-t, .heading {
    margin: 10px 40px;
    line-height: 24px;
    text-align: left !important;
    align-self: flex-start;
    max-height: 78px;
    overflow-y: hidden;
}

.rg-block .splash-t{
    max-height: initial;
} 

.heading {
    text-align:left !important;
    white-space: normal;
    overflow: hidden;
    margin: 0px;
    padding: 10px 40px;
	max-height: 82px;
}

.splash-b {
    background-color: var(--default-color);
    width: 200px;
    height: 60px;
    padding: 0px;
    white-space: nowrap;
    border-radius: 10px;
    top: 30px;
    right: 30px;
    font-size: 18px;
}

/*Clients page*/
.client-color-1 {
    margin: 0px 0px 1vh 0px;
    background: rgba(119, 143, 207, 0.35);
}

.client-img, .client-color-1 {
    height: 23vh;
}

.client-c {
    box-shadow: 0px 0px 10px var(--default-gray);
    height: auto !important;
}

/*Hover*/
.splash-c:hover {
    transform: scale(1.02);
}

@media (max-height: 900px) {
    .splash-c, .splash-img, .splash-color-1, .splash-color-2 {
        height: 380px;
    }
    
    .client-color-1, .client-img {
        height: 280px;
    }
}

/*Laptop*/
@media (max-width: 1200px) {
    .p-sides-18 {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

/*Tablet*/
@media (max-width: 900px) {
    header > .c-split {
        flex-direction: column;
        max-height: fit-content;
    }

    .m-t-18 {
        margin-top: 5vh;
    }

    .m-t-9 {
        margin-top: 3vh;
    }

    .m-b-20 {
        margin-bottom: 10vh;
    }
}

@media (max-width: 725px) {
    .splash-c {
        min-width: 300px !important;
    }
    .splash-c, .splash-img, .splash-color-1, .splash-color-2 {
        height: 340px;
    }

    .client-color-1, .client-img {
        height: 240px;
    }
}

/*Mobile*/
@media (max-width: 425px) {
    .splash-b {
        left: 50%;
        transform: translateX(-50%);
    }
}

.s-post img {
    max-width: 100%;
}
.s-post h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
}
.s-post .p-date {
    font-weight: 600;
    margin-bottom: 20px;
    color: #777;
}
.post-cont p{
    margin-bottom: 15px;
}
.s-post{
    margin-bottom:20px;
}
.dhref{
    cursor: pointer;
}
.up-btn {
    z-index: 10;
}
.wpb_image_grid .wpb_image_grid_ul .isotope-item { 
    position: static !important;
	    left: 0px !important;
}
@media (min-width: 560px) {
    ul.wpb_image_grid_ul {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative !important;
        height: auto !important;
        flex-wrap: wrap;
    }
    .wpb_image_grid .wpb_image_grid_ul .isotope-item {  
        list-style: none;
        margin: 0 1px 1px 0;
        max-width: 100%;
        width: calc(50% - 1px);
        position: relative !important;
        height: auto;
        box-sizing: border-box;
        top: 0px !IMPORTANT;
    }
}
@media (min-width: 900px) {
    .wpb_image_grid .wpb_image_grid_ul .isotope-item {
        width: calc(33.3% - 1px);
    }
}
@media (min-width: 1280px) {
    .wpb_image_grid .wpb_image_grid_ul .isotope-item {
        width: calc(25% - 1px);
    }
}

li.lang-item:not(.current-lang):hover {
    opacity: 1;
}
li.lang-item:not(.current-lang) {
    opacity: .5;
    filter: grayscale(1);
}

.h-langs li {
    display: inline-block;
    padding: 0px 5px;
}
.h-langs.mob-only {
    display: none;
}
@media (max-width: 991px){
    .h-langs.mob-only {
        display: flex !important;
        text-align: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .h-menu-row{
        overflow: auto;
    }
}
