@import url('https://fonts.googleapis.com/css?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css?family=Cairo:300,400,600,700&display=swap');
/*General rules*/

/*Variables*/
:root {

    /*Font colors*/
    --c-f-c-blue: #005DA3;
    --c-f-c-medium-blue: #80AED1;
    --c-f-c-light-blue: #A6C6DF;
    --c-f-c-grey: #56636D;
    --c-f-c-light-grey: #D9E7F1;
    --c-f-c-brown: #80AED1;
    --c-f-c-white: #FFFFFF;

    /*Background colors*/
    --c-bg-c-blue: #005DA3;
    --c-bg-c-medium-blue: #80AED1;
    --c-bg-c-light-blue: #A6C6DF;
    --c-bg-c-grey: #56636D;
    --c-bg-c-light-grey: #D9E7F1;
    --c-bg-c-brown: #80AED1;
    --c-bg-c-white: #FFFFFF;


    /*Buttons colors*/
    --c-btn-c-blue: #005DA3;
    --c-btn-c-medium-blue: #80AED1;
    --c-btn-c-light-blue: #A6C6DF;
    --c-btn-c-grey: #56636D;
    --c-btn-c-light-grey: #D9E7F1;
    --c-btn-c-brown: #80AED1;
    --c-btn-c-white: #FFFFFF;

    /*Buttons background colors*/
    --c-btn-bg-c-blue: #005DA3;
    --c-btn-bg-c-dmedium-blue: #80AED1;
    --c-btn-bg-c-light-blue: #A6C6DF;
    --c-btn-bg-c-grey: #56636D;
    --c-btn-bg-c-light-grey: #D9E7F1;
    --c-btn-bg-c-brown: #80AED1;
    --c-btn-bg-c-white: #FFFFFF;

    /*Border colors*/
    --c-b-c-blue: #005DA3;
    --c-b-c-dark-blue: #152744;
    --c-b-c-light-blue: #A6C6DF;
    --c-b-c-grey: #56636D;
    --c-b-c-light-grey: #D9E7F1;
    --c-b-c-brown: #80AED1;
    --c-b-c-white: #FFFFFF;

    /*Font weight*/
    --c-f-w-light: 300;
    --c-f-w-regular: 400;
    --c-f-w-semi-bold: 600;
    --c-f-w-bold: 700;

}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    position: relative;
    color: var(--c-f-c-grey);
    background: #ffffff;
    font-weight: var(--c-f-w-regular);
}

/*Scroll to top btn*/
.scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #000000;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 10;
    cursor: pointer;
}

.scrollToTop:hover {
    background: #5c5c5c;
}

.c-section {
    min-height: 1px;
    position: relative;
}

.container-fluid.c-section-full-width {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}

/*Headings*/
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    line-height: 60px;
    color: var(--c-f-c-blue);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 56px;
    color: var(--c-f-c-blue);
}

h3 {
    font-size: 35px;
    line-height: 36px;
    font-weight: var(--c-f-w-bold);
    color: var(--c-f-c-blue);
}

h4 {
    font-size: 25px;
    line-height: 25px;
    font-weight: var(--c-f-w-bold);
    color: var(--c-f-c-blue);
}

h5 {
    font-size: 23px;
    line-height: 25px;
    font-weight: var(--c-f-regular);
    color: var(--c-f-c-blue);
}

h6 {
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--c-f-w-bold);
    color: var(--c-f-c-blue);
}

/*End of headings*/

/*Paragraphs*/
.c-p-v1 {
    font-size: 25px;
    line-height: 32px;
    font-weight: var(--c-f-w-regular);
}

.c-p-v2 {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--c-f-w-regular);
}

/*End of paragraphs*/

/*
--c-f-c-blue: #1C91B9;
    --c-f-c-dark-blue: #152744;
    --c-f-c-light-blue: #00aec8;
*/
/*Buttons*/
.c-btn-v1 {
    font-size: 18px;
    width: 210px;
    height: 75px;
    line-height: 75px;
    background: var(--c-bg-c-brown);
    color: var(--c-f-c-white);
    font-weight: var(--c-f-w-bold);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.c-btn-v1:hover {
    background: #004476;
    color: var(--c-f-c-white);
    text-decoration: none;
}

.c-btn-v2 {
    font-size: 18px;
    width: 500px;
    height: 75px;
    line-height: 75px;
    background: var(--c-bg-c-brown);
    color: var(--c-f-c-white);
    font-weight: var(--c-f-w-bold);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.c-btn-v2:hover {
    background: #004476;
    color: var(--c-f-c-white);
    text-decoration: none;
}

.c-btn-v3 {
    font-size: 18px;
    width: 160px;
    height: 55px;
    line-height: 55px;
    background: var(--c-bg-c-brown);
    color: var(--c-f-c-white);
    font-weight: var(--c-f-w-bold);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.c-btn-v3:hover {
    background: #004476;
    color: var(--c-f-c-white);
    text-decoration: none;
}

/*End of buttons*/

/*Margins*/
/*Margins*/
/*Margins*/


/*Full side margins*/
.c-m-10 {
    margin: 10px;
}

.c-m-20 {
    margin: 20px;
}

.c-m-30 {
    margin: 30px;
}

.c-m-40 {
    margin: 40px;
}

.c-m-50 {
    margin: 50px;
}

.c-m-60 {
    margin: 60px;
}

.c-m-70 {
    margin: 70px;
}

.c-m-80 {
    margin: 80px;
}

.c-m-90 {
    margin: 90px;
}

.c-m-100 {
    margin: 100px;
}

/*End of full side margins*/

/*Margin top*/
.c-m-t-10 {
    margin-top: 10px;
}

.c-m-t-20 {
    margin-top: 20px;
}

.c-m-t-30 {
    margin-top: 30px;
}

.c-m-t-40 {
    margin-top: 40px;
}

.c-m-t-50 {
    margin-top: 50px;
}

.c-m-t-60 {
    margin-top: 60px;
}

.c-m-t-70 {
    margin-top: 70px;
}

.c-m-t-80 {
    margin-top: 80px;
}

.c-m-t-90 {
    margin-top: 90px;
}

.c-m-t-100 {
    margin-top: 100px;
}

.c-m-t-200 {
    margin-top: 200px;
}

.c-m-t-300 {
    margin-top: 300px;
}

.c-m-t-400 {
    margin-top: 400px;
}

.c-m-t-500 {
    margin-top: 500px;
}

/*End of margin top*/

/*Margin right*/
.c-m-r-10 {
    margin-right: 10px;
}

.c-m-r-20 {
    margin-right: 20px;
}

.c-m-r-30 {
    margin-right: 30px;
}

.c-m-r-40 {
    margin-right: 40px;
}

.c-m-r-50 {
    margin-right: 50px;
}

.c-m-r-60 {
    margin-right: 60px;
}

.c-m-r-70 {
    margin-right: 70px;
}

.c-m-r-80 {
    margin-right: 80px;
}

.c-m-r-90 {
    margin-right: 90px;
}

.c-m-r-100 {
    margin-right: 100px;
}

/*End of margin right*/

/*Margin bottom*/
.c-m-b-10 {
    margin-bottom: 10px;
}

.c-m-b-20 {
    margin-bottom: 20px;
}

.c-m-b-30 {
    margin-bottom: 30px;
}

.c-m-b-40 {
    margin-bottom: 40px;
}

.c-m-b-50 {
    margin-bottom: 50px;
}

.c-m-b-60 {
    margin-bottom: 60px;
}

.c-m-b-70 {
    margin-bottom: 70px;
}

.c-m-b-80 {
    margin-bottom: 80px;
}

.c-m-b-90 {
    margin-bottom: 90px;
}

.c-m-b-100 {
    margin-bottom: 100px;
}

/*End of margin bottom*/

/*Margin left*/
.c-m-l-10 {
    margin-left: 10px;
}

.c-m-l-20 {
    margin-left: 20px;
}

.c-m-l-30 {
    margin-left: 30px;
}

.c-m-l-40 {
    margin-left: 40px;
}

.c-m-l-50 {
    margin-left: 50px;
}

.c-m-l-60 {
    margin-left: 60px;
}

.c-m-l-70 {
    margin-left: 70px;
}

.c-m-l-80 {
    margin-left: 80px;
}

.c-m-l-90 {
    margin-left: 90px;
}

.c-m-l-100 {
    margin-left: 100px;
}

/*End of margin left*/

/*Margin top and bottom*/
.c-m-t-b-10 {
    margin: 10px 0px;
}

.c-m-t-b-20 {
    margin: 20px 0px;
}

.c-m-t-b-30 {
    margin: 30px 0px;
}

.c-m-t-b-40 {
    margin: 40px 0px;
}

.c-m-t-b-50 {
    margin: 50px 0px;
}

.c-m-t-b-60 {
    margin: 60px 0px;
}

.c-m-t-b-70 {
    margin: 70px 0px;
}

.c-m-t-b-80 {
    margin: 80px 0px;
}

.c-m-t-b-90 {
    margin: 90px 0px;
}

.c-m-t-b-100 {
    margin: 100px 0px;
}

/*End of margin top and bottom*/

/*End of Margins*/
/*End of Margins*/
/*End of Margins*/







/*Paddings*/
/*Paddings*/
/*Paddings*/


/*Full side padding*/
.c-p-10 {
    padding: 10px;
}

.c-p-20 {
    padding: 20px;
}

.c-p-30 {
    padding: 30px;
}

.c-p-40 {
    padding: 40px;
}

.c-p-50 {
    padding: 50px;
}

.c-p-60 {
    padding: 60px;
}

.c-p-70 {
    padding: 70px;
}

.c-p-80 {
    padding: 80px;
}

.c-p-90 {
    padding: 90px;
}

.c-p-100 {
    padding: 100px;
}

/*End of full side paddings*/

/*Padding top*/
.c-p-t-10 {
    padding-top: 10px;
}

.c-p-t-20 {
    padding-top: 20px;
}

.c-p-t-30 {
    padding-top: 30px;
}

.c-p-t-40 {
    padding-top: 40px;
}

.c-p-t-50 {
    padding-top: 50px;
}

.c-p-t-60 {
    padding-top: 60px;
}

.c-p-t-70 {
    padding-top: 70px;
}

.c-p-t-80 {
    padding-top: 80px;
}

.c-p-t-90 {
    padding-top: 90px;
}

.c-p-t-100 {
    padding-top: 100px;
}

/*End of padding top*/

/*Padding right*/
.c-p-r-10 {
    padding-right: 10px;
}

.c-p-r-20 {
    padding-right: 20px;
}

.c-p-r-30 {
    padding-right: 30px;
}

.c-p-r-40 {
    padding-right: 40px;
}

.c-p-r-50 {
    padding-right: 50px;
}

.c-p-r-60 {
    padding-right: 60px;
}

.c-p-r-70 {
    padding-right: 70px;
}

.c-p-r-80 {
    padding-right: 80px;
}

.c-p-r-90 {
    padding-right: 90px;
}

.c-p-r-100 {
    padding-right: 100px;
}

/*End of padding right*/

/*Padding bottom*/
.c-p-b-10 {
    padding-bottom: 10px;
}

.c-p-b-20 {
    padding-bottom: 20px;
}

.c-p-b-30 {
    padding-bottom: 30px;
}

.c-p-b-40 {
    padding-bottom: 40px;
}

.c-p-b-50 {
    padding-bottom: 50px;
}

.c-p-b-60 {
    padding-bottom: 60px;
}

.c-p-b-70 {
    padding-bottom: 70px;
}

.c-p-b-80 {
    padding-bottom: 80px;
}

.c-p-b-90 {
    padding-bottom: 90px;
}

.c-p-b-100 {
    padding-bottom: 100px;
}

/*End of padding bottom*/

/*Padding left*/
.c-p-l-10 {
    padding-left: 10px;
}

.c-p-l-20 {
    padding-left: 20px;
}

.c-p-l-30 {
    padding-left: 30px;
}

.c-p-l-40 {
    padding-left: 40px;
}

.c-p-l-50 {
    padding-left: 50px;
}

.c-p-l-60 {
    padding-left: 60px;
}

.c-p-l-70 {
    padding-left: 70px;
}

.c-p-l-80 {
    padding-left: 80px;
}

.c-p-l-90 {
    padding-left: 90px;
}

.c-p-l-100 {
    padding-left: 100px;
}

/*End of padding left*/

/*Padding top and bottom*/
.c-p-t-b-10 {
    padding: 10px 0px;
}

.c-p-t-b-20 {
    padding: 20px 0px;
}

.c-p-t-b-30 {
    padding: 30px 0px;
}

.c-p-t-b-40 {
    padding: 40px 0px;
}

.c-p-t-b-50 {
    padding: 50px 0px;
}

.c-p-t-b-60 {
    padding: 60px 0px;
}

.c-p-t-b-70 {
    padding: 70px 0px;
}

.c-p-t-b-80 {
    padding: 80px 0px;
}

.c-p-t-b-90 {
    padding: 90px 0px;
}

.c-p-t-b-100 {
    padding: 100px 0px;
}

/*End of padding top and bottom*/



/*End of paddings*/
/*End of paddings*/
/*End of paddings*/

/*Font colors*/
.c-f-c-blue {
    color: var(c-f-c-blue) !important;
}

.c-f-c-medium-blue {
    color: var(--c-f-c-medium-blue);
}

.c-f-c-light-blue {
    color: var(--c-f-c-light-blue);
}

.c-f-c-grey {
    color: var(--c-f-c-grey);
}

.c-f-c-light-grey {
    color: var(--c-f-c-light-grey);
}

.c-f-c-brow {
    color: var(--c-f-c-brown);
}

.c-f-c-white {
    color: var(--c-f-c-white);
}


/*End of font colors*/


/*Background colors*/
.c-bg-c-blue {
    color: var(c-bg-c-blue);
}

.c-bg-c-medium-blue {
    color: var(--c-bg-c-medium-blue);
}

.c-bg-c-light-blue {
    color: var(--c-bg-c-light-blue);
}

.c-bg-c-grey {
    color: var(--c-bg-c-grey);
}

.c-bg-c-light-grey {
    color: var(--c-bg-c-light-grey);
}

.c-bg-c-brow {
    color: var(--c-bg-c-brown);
}

.c-bg-c-white {
    color: var(--c-bg-c-white);
}

/*End of background colors*/


/*Font sizes*/
.c-f-s-10 {
    font-size: 10px;
}

.c-f-s-12 {
    font-size: 12px;
}

.c-f-s-14 {
    font-size: 14px;
}

.c-f-s-16 {
    font-size: 16px;
}

.c-f-s-18 {
    font-size: 18px;
}

.c-f-s-20 {
    font-size: 20px;
}

.c-f-s-22 {
    font-size: 22px;
}

.c-f-s-24 {
    font-size: 24px;
}

.c-f-s-26 {
    font-size: 26px;
}

.c-f-s-28 {
    font-size: 28px;
}

.c-f-s-30 {
    font-size: 30px;
}

.c-f-s-32 {
    font-size: 32px;
}

.c-f-s-34 {
    font-size: 34px;
}

.c-f-s-36 {
    font-size: 36px;
}

.c-f-s-38 {
    font-size: 38px;
}

.c-f-s-40 {
    font-size: 40px;
}

.c-f-s-42 {
    font-size: 42px;
}

.c-f-s-44 {
    font-size: 44px;
}

.c-f-s-46 {
    font-size: 46px;
}

.c-f-s-48 {
    font-size: 48px;
}

.c-f-s-50 {
    font-size: 50px;
}

/*End of font sizes*/

/*Text align*/
.c-text-left {
    text-align: left;
}

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

.c-text-right {
    text-align: right;
}

/*End of text align*/

/*Font weight*/
/*
.c-f-w-thin {
    font-weight: thin;
}

.c-f-w-bold {
    font-weight: bold;
}
*/

/*End of font weight*/

/*End of general rules*/


/*Hamburger button*/

/*Hamburger icon*/
.c-burger-container {
    width: 35px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    Change this to show icon display: block;
    z-index: 999999999999;
    position: absolute;
    right: 30px;
    top: 20px;
}

.c-burger-container div {
    width: 100%;
    height: 3px;
    /*    background: #000000;*/
    background: var(--c-bg-c-blue);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.c-burger-container.active div:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 5px);
    transform: rotate(45deg) translate(6px, 5px);
}

.c-burger-container.active div:nth-child(2) {
    opacity: 0;
}

.c-burger-container.active div:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(10px, -10px);
    transform: rotate(-45deg) translate(10px, -10px);
}

.c-burger-container {
    display: none;
    visibility: hidden;
}

/*End of hamburger button*/


/*Navigation*/

.c-main-nav-container {
    display: flex;
    align-items: center;
}

.c-logo-container {
    width: 35%;
    text-align: center;
    background: var(--c-bg-c-white);
}

.c-logo-container img {
    width: 350px;
    height: 110px;
}

.c-main-nav-right-container {
    width: 65%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    background: var(--c-bg-c-blue);
}

.c-main-nav-right-container ul {
    margin: 0px;
}

/*Top navigation*/
.c-top-nav-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 100px;
}

.c-top-nav-container .c-top-ul {
    display: flex;
    align-items: center;
    list-style: none;
    color: var(--c-f-c-white);
}

.c-top-nav-container .c-top-ul li {
    font-size: 16px;
    /*    margin: 0px 20px*/
}

.c-top-nav-container .c-top-ul li.c-top-nav-email,
.c-top-nav-container .c-top-ul li.c-top-nav-phone {
    margin: 0px 40px;
    font-weight: var(--c-f-w-light);
    font-size: 14px;
}

.c-top-nav-container .c-top-ul li.c-top-nav-email i,
.c-top-nav-container .c-top-ul li.c-top-nav-phone i {
    margin-right: 5px;
}

.c-top-nav-container .c-top-ul li.c-top-li-dropdown {
    display: inline-block;
    color: var(--c-f-c-white);
    height: 100px;
    width: 100px;
    padding: 40px 0px 40px 40px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
    display: none;
}

.c-top-nav-container .c-top-ul li a.c-facebook-icon,
.c-top-nav-container .c-top-ul li a.c-linkedin-icon {
    display: inline-block;
    color: var(--c-f-c-white);
    height: 100px;
    width: 100px;
    padding: 40px 0px 40px 40px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    font-size: 22px;
    line-height: 30px;
    transition: all .3s ease-in-out;
}

.c-top-nav-container .c-top-ul li a.c-facebook-icon:hover,
.c-top-nav-container .c-top-ul li a.c-linkedin-icon:hover {
    background: var(--c-bg-c-white);
    color: var(--c-f-c-blue);
}

.c-top-nav-container .c-top-ul li a .c-top-nav-container .c-top-ul li i {}

/*End of top navigation*/







/*Bottom navigation*/

.c-bottom-nav-container {
    border-top: 1px solid #ffffff;
}

.c-bottom-nav-container .c-main-nav {}

.c-bottom-nav-container .c-main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.c-bottom-nav-container .c-main-nav ul li {}

.c-bottom-nav-container .c-main-nav ul li a {
    display: inline-block;
    color: var(--c-f-c-white);
    margin: 0px 15px;
    font-size: 20px;
    transition: all .3s ease-in-out;
}

.c-bottom-nav-container .c-main-nav ul li a:hover {
    text-decoration: none;
    color: var(--c-f-c-brown);
}

.c-bottom-nav-btn {
    margin: 0px !important;
    width: 200px;
}


/*Services dropdown menu*/
li#c-our-services-dropdown {
    position: relative;
    cursor: pointer;
}

li#c-our-services-dropdown i {
    color: var(--c-f-c-white);
    font-size: 12px;
}

li.c-our-services-dropdown {
    position: relative;
    cursor: pointer;
}

li.c-our-services-dropdown i {
    color: var(--c-f-c-white);
    font-size: 12px;
}

ul.c-our-services-submenu {
    position: absolute;
    background: var(--c-bg-c-brown);
    flex-direction: column;
    z-index: 9;
    /*    min-width: 100px;*/
    min-width: 135px;
    padding-left: 0px;
    display: none !important;
    margin-top: 20px;
}

ul.c-our-services-submenu.c-submenu-active {
    display: flex !important;
    flex-direction: column !important;
}

li.c-our-services-li {
    width: 100% !important;
    padding: 5px !important;
}

li.c-our-services-li a {
    display: block !important;
    /*    font-size: 10px !important;*/
    font-size: 14px !important;
    border-bottom: 1px solid var(--c-bg-c-white);
    padding-bottom: 10px;
    min-width: 130px;
}

li.c-our-services-li a:hover {
    color: #ffffff !important;
}

li.c-our-services-li:last-child a {
    border: none;
}

.c-our-services-submenu.c-submenu-active li {
    margin: 0px !important;
}

/*End of services dropdown menu*/



/*End of bottom navigation*/

/*End of navigation*/



/************ Homepage ************/
/************ Homepage ************/
/************ Homepage ************/


/*Section 2 about us*/

.c-homepage-about-us-section-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-homepage-about-us-left-content-container,
.c-homepage-about-us-right-content-container {
    flex: 1;
    flex-shrink: 0;
}

.c-homepage-about-us-title-container {
    width: 60%;
    margin: 0 auto;
}

.c-homepage-about-us-content {
    padding: 40px 150px;
    background: var(--c-bg-c-blue);
    color: var(--c-f-c-white);
    position: relative;
    -webkit-box-shadow: -10px 10px 6px -4px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: -10px 10px 6px -4px rgba(0, 0, 0, 0.36);
    box-shadow: -10px 10px 6px -4px rgba(0, 0, 0, 0.36);
}

.c-homepage-about-us-link-container {
    display: flex;
    align-items: center;
    width: 25%;
    color: var(--c-f-c-white);
    justify-content: space-between;
    border-bottom: 1px solid var(--c-f-c-white);
}

.c-homepage-about-us-link-container:hover {
    text-decoration: none;
    color: var(--c-f-c-white);
}

.c-homepage-about-us-right-content-container {
    position: relative;
    z-index: -1;
    right: 80px
}

/*End of section 2 about us*/

/*Section 3 services*/

.c-homepage-services-section-main-container {
    background: url("../images/homepage/leo-hp-services-ankor-bkg.svg");
    background-size: 40vw;
    background-repeat: no-repeat;
    background-position: left center;
    padding: 200px 0px;
}

.c-homepage-services-container {
    width: 75%;
}

.c-homepage-services-title-container {
    display: flex;
    justify-content: center;
    /*    align-items: center;*/
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.c-homepage-services-content-container {
    background: var(--c-bg-c-blue);
    /*    padding: 40px 40px 40px 60px;*/
    padding: 30px 40px 40px 70px;
    margin: 30px 0px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    z-index: 3;
    transition: all .3s ease-in-out;
}

.c-homepage-services-content-container:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #80AED1;
    top: 20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.c-homepage-services-content-container:hover {
    -webkit-box-shadow: -10px 10px 6px -4px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: -10px 10px 6px -4px rgba(0, 0, 0, 0.36);
    box-shadow: -10px 10px 6px -4px rgba(0, 0, 0, 0.36);
}

.c-homepage-services-content-container:hover:before {
    transform: scale(40) rotate(200deg);
    border: 50%;
}

.c-homepage-services-content-container:hover a {
    text-decoration: none;
    color: var(--c-f-c-white);
}

.c-homepage-services-content-container h5 {
    color: var(--c-f-c-white);
}

.c-homepage-services-content-container ul {
    list-style: none;
    padding-left: 0px;
}

.c-homepage-services-content-container ul li {
    color: var(--c-f-c-white);
    margin: 15px 0px;
    /*    border-bottom: 1px solid rgba(255, 255, 255, 0.5);*/
    position: relative;
    padding-bottom: 10px;
    font-size: 14px;
}


.c-homepage-services-content-container ul li:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    bottom: 0px;
}

/*End of section 3 services*/

/*Homepage last section*/

.c-last-section-parallax-main-container {
    background: url("../images/leo-hp-cta-parallax.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 625px;
    width: 100%;
    position: relative;
    background-attachment: fixed;
}

.c-last-section-content-container {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 93, 163, 0.85);
    /*    padding: 20px 30px;*/
    padding: 20px 70px;
    color: var(--c-f-c-white);
    max-width: 30%;
}

.c-last-section-content-container h3 {
    font-family: 'Playfair Display', serif;
    color: var(--c-f-c-white);
    font-weight: var(--c-f-w-semi-bold);
    font-size: 38px;
    line-height: 48px;
}

.c-last-section-content-container h3,
.c-last-section-content-container p,
.c-last-section-content-container a {
    margin: 20px 0px;
}

/*End of homepage last section*/

/************ End of homepage ************/
/************ End of homepage ************/
/************ End of homepage ************/

/************ About us page ************/
/************ About us page ************/
/************ About us page ************/

.c-about-us-section-one {
    background: url("../images/homepage/leo-about-ankor-bkg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 500px;
    padding-top: 30px;
}

.c-about-download-one {
    background: url("../images/homepage/leo-about-ankor-bkg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: auto;
    margin-top: 80px;
}

.c-about-us-section-one h3 {
    margin-bottom: 35px;
}

.c-about-us-timeline-main-container {
    margin-top: 30px;
    margin-bottom: 200px;
}

.c-about-us-tabs-container {
    display: flex;
    justify-content: flex-end;
    padding: 40px 0px;
    background: var(--c-bg-c-blue);
    color: var(--c-f-c-medium-blue);
    position: relative;
}

.c-about-us-tabs-container:before {
    content: "";
    position: absolute;
    left: 0px;
    width: 90%;
    height: 1px;
    background: #5794C2;
    bottom: 30px;
}

.c-about-us-tabs-container .about-us-tab-title {
    color: var(--c-f-c-medium-blue);
    margin: 0px 20px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.c-about-us-tabs-container .about-us-tab-title:last-child {
    padding-right: 100px;
}

.c-about-us-tabs-container .about-us-tab-title:hover {
    color: var(--c-f-c-white);
}


.c-about-us-timline-title-container {
    /*    display: none;*/
    position: absolute;
    width: 65%;
    right: 0px;
    opacity: 0;
    transition: all .5s ease;
}

.c-about-us-timline-title-container.is-selected {
    /*    display: block;*/
    opacity: 1;
    transition: all .5s ease;
}

.c-about-us-timline-title-container h2 {
    margin-top: 50px;
    margin-bottom: 20px;
}

.c-about-us-timline-title-container p:nth-child(2) {
    margin-bottom: 50px;
}


/************ End of about us page ************/
/************ End of about us page ************/
/************ End of about us page ************/



/************ Our services page ************/
/************ Our services page ************/
/************ Our services page ************/

.c-our-services-main-container {
    width: 100%;
    background: var(--c-bg-c-light-grey);
    margin-top: 50px;
}

.c-our-services-nav {
    width: 100%;
    background: var(--c-bg-c-light-grey);
    height: 100px;
}

.c-our-services-ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 80%;
    margin: 0 auto;
}

.c-our-services-ul li {
    min-width: 280px;
    text-align: center;
    height: 100px;
}

.c-our-services-ul li a {
    text-decoration: none;
    color: var(--c-f-c-blue);
    display: block;
    padding: 30px;
    margin: 0px;
    font-weight: var(--c-f-w-bold);
    border-right: 1px solid var(--c-bg-c-light-blue);
    transition: all .3s ease-in-out;
    height: 100px;

    font-size: 22px;
    font-weight: var(--c-f-w-bold);
    line-height: 24px;
    max-width: 300px;
}

.c-our-services-ul li a:hover {
    background: var(--c-bg-c-blue);
    color: var(--c-f-c-white);
}

.c-our-services-ul li:last-child a {
    border-right: 0px solid transparent;
}

.c-our-services-ul li a.c-our-services-link-active {
    background: var(--c-bg-c-blue);
    color: var(--c-f-c-white);
}

.c-our-services-content-container {
    display: flex;
    /*    align-items: center;*/
    align-items: flex-start;
    margin: 0px 100px;
    /*    padding: 100px 0px;*/
    padding: 100px 0px 150px 0px;
}

.c-our-services-left-content-container {
    padding-right: 100px;
    padding-left: 50px;
    position: relative;
}

.c-our-services-left-content-container:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    left: 0px;
    background: var(--c-bg-c-blue);

}

.c-our-services-left-content-container h4 {
    margin: 0px 0px 15px 0px;
}

.c-our-services-dots-container img {
    width: 165px;
    position: absolute;
    bottom: 90px;
    right: 40px;
    z-index: -1;
}


/************ End of our services page ************/
/************ End of our services page ************/
/************ End of our services page ************/



/************ Blog page ************/
/************ Blog page ************/
/************ Blog page ************/




.c-blog-content-container {
    position: relative;
    height: 445px;
    overflow: hidden;
}

.c-blog-content-container:before {
    content: "";
    position: absolute;
    background: rgba(0, 93, 163, 0.8);
    width: 100%;
    height: 150px;
    bottom: 0px;
    transition: all .3s ease-in-out;
}

.c-blog-content-container:hover:before {
    height: 100%;
    transition: all .3s ease-in-out;
}

.c-blog-content-container:hover .c-blog-content {
    /*
    height: 100%;
    transition: all .3s ease-in-out;
*/
}

.c-blog-content {
    position: absolute;
    bottom: 0px;
    height: 150px;
    display: flex;
    justify-content: space-around;
    /*    background: rgba(0, 93, 163, 0.8);*/
    width: 100%;
    color: var(--c-f-c-white);
    align-items: center;
    transition: all .3s ease-in-out;
}

.c-blog-title-container h6 {
    color: var(--c-f-c-white);
}

.c-blog-date-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.c-blog-date-container:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #ffffff;
    left: -20px
}

.c-blog-date-container p {
    margin-bottom: 0px;
}

.c-blog-date-container .c-blog-date {
    font-weight: var(--c-f-w-bold);
    font-size: 22px;
}

.c-blog-date-container .c-blog-month {
    font-size: 14px;
}

.c-blog-date-container .c-blog-year {
    font-weight: var(--c-f-w-light);
    color: var(--c-f-c-light-blue);
    font-size: 14px;
}



/************ End of blog page ************/
/************ End of blog page ************/
/************ End of blog page ************/



/************ Single blog page ************/
/************ Single blog page ************/
/************ Single blog page ************/


.c-single-blog-ul-title {
    color: var(--c-f-c-grey);
}

.c-single-blog-ul {
    list-style: none;
    padding-left: 0px;
    margin: 30px 0px;
}

.c-single-blog-ul li {
    position: relative;
    margin: 15px 0px;
    display: flex;
    color: var(--c-f-c-grey);
}

.c-single-blog-ul li i {
    margin-right: 20px;
    font-size: 12px;
    color: var(--c-f-c-brown);
}

.c-single-post-related-articles-main-container h3 {
    font-family: 'Playfair Display', serif;
}

/************ End of single blog page ************/
/************ End of single blog page ************/
/************ End of single blog page ************/


/************ Our offices ************/
/************ Our offices ************/
/************ Our offices ************/

.c-our-offices-info-container {
    width: 100%;
    height: 100%;
}

.c-our-offices-ul {
    list-style: none;
    padding-left: 0px;
    position: absolute;
    bottom: 0px;
    margin-bottom: 0px;
    width: 100%;
    background: var(--c-bg-c-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    line-height: 70px;
    color: var(--c-f-c-white);
}

.c-our-offices-ul li {
/*    font-size: 12px;*/
    font-size: 11px;
    margin: 0px 10px;
}

.c-our-offices-ul li a {
    color: var(--c-f-c-white);
}

.c-our-offices-ul li i {
    margin-right: 10px;
}

.c-our-offices-main-container {
    background: url(../images/Offices/leo-offices-ankor-bkg.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.c-our-offices-content-container {
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.c-our-offices-img-container {
    position: relative;
}

.c-our-offices-n-p {
    padding-left: 0px !important;
    padding-right: 0px !important;
}



/************ End of our offices ************/
/************ End of our offices ************/
/************ End of our offices ************/


/************ Contact us page ************/
/************ Contact us page ************/
/************ Contact us page ************/

.c-contact-us-info-main-container h6 {}

.c-contact-us-info-ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0px;
    padding-bottom: 20px;
    /*    border-bottom: 1px solid var(--c-bg-c-light-blue);*/
}

.c-contact-us-info-ul li {
    margin: 10px 0px;
    font-size: 14px;
    display: flex;
}

.c-contact-us-info-ul li a {
    text-decoration: none;
    color: var(--c-f-c-grey);
}

.c-contact-us-info-ul li i {
    margin-right: 20px;
    font-size: 10px;
    color: var(--c-f-c-grey);
}




/*New contact us desing*/



/************ Contat us page ************/
/************ Contat us page ************/
/************ Contat us page ************/


/*Contact form*/

.wpcf7-form {
    position: relative;
    top: 50px;
    right: 70px;
}

input {
    padding: 20px;
    width: 500px;
    /*    border: 1px solid #D9E7F1;*/
    border: none;
    border-left: 1px solid #D9E7F1;
    border-right: 1px solid #D9E7F1;
    border-bottom: 1px solid #D9E7F1;
    background: transparent;
    outline: none;
    color: var(--c-f-c-white);
}

input:focus {
    outline: none;
}

.c-contact-form-placeholder {
    color: #ffffff;
    position: absolute;
    left: 12%;
    top: 7px;
}

textarea {
    overflow: auto;
    resize: vertical;
    background: transparent;
    width: 500px;
    border: 1px solid #D9E7F1;
    height: 150px;
    margin-top: 20px;
    color: var(--c-f-c-white);
}

.c-contact-form-textarea {
    color: #ffffff;
}

/*lines*/
.form-group {
    position: relative;
}

.c-contact-form-top-left-line {
    content: "";
    position: absolute;
    width: 8%;
    height: 1px;
    background: #D9E7F1;
    bottom: 84%;
}

.c-contact-form-top-right-line {
    content: "";
    position: absolute;
    width: 65%;
    height: 1px;
    background: #D9E7F1;
    bottom: 84%;
    right: 3.8%;
}

/*Submit*/

.c-contact-us-submit-btn-container {
    margin-top: 50px;
}

input[type=submit] {
    font-size: 18px;
    width: 500px;
    height: 75px;
    line-height: 0px;
    border: 0px;
    background: var(--c-bg-c-brown);
    color: var(--c-f-c-white);
    font-weight: var(--c-f-w-bold);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

input[type=submit]:hover {
    background: #004476;
    color: var(--c-f-c-white);
    text-decoration: none;
}


/*Error messages*/
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #ff0000;
    color: var(--c-f-c-white);
}

/*End of contact form*/




.c-contact-us-section-container h2 {
    display: flex;
    width: 47vw;
    justify-content: flex-end;
}

.c-contact-us-main-container {
    display: flex;
    justify-content: center;
}

.c-contact-us-left-main-container {
    margin-right: 50px;
    position: relative;

    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    background: var(--c-bg-c-blue);
    padding-bottom: 100px;

}

.c-contact-us-left-shadow {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: var(--c-bg-c-blue);
    bottom: -20px;
    z-index: 9;
    box-shadow: 0px 15px 15px -2px black;
}

.c-contact-us-right-main-container {
    margin-left: 50px;


    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: flex-start;


}

.c-contact-us-columns-container {
    display: flex;
    justify-content: space-between;
    width: 60%;
    border-bottom: 1px solid var(--c-bg-c-light-blue);
}

.c-contact-us-right-main-container h6 {
    margin-top: 30px;
}

.c-contact-us-left-column {
    width: 50%;
}

.c-contact-us-right-column {
    width: 50%;
}

.c-contact-us-info-ul {
    padding-left: 0px;
    list-style: none;
    padding-bottom: 20px;
    /*    border-bottom: 1px solid var(--c-bg-c-light-blue);*/
    display: flex;
    min-height: 120px;
    flex-direction: column;
    justify-content: space-between;
}

.c-contact-us-info-ul li {
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
}

.c-contact-us-info-ul li a {
    text-decoration: none;
    color: var(--c-f-c-grey);
    margin: 0px;
}

.c-contact-us-info-ul li i {
    margin-right: 10px;
    margin-top: 5px;
    font-size: 10px;
    color: var(--c-f-c-grey);
}

.c-contact-us-social-links-main-container {
    display: flex;
    justify-content: space-around;
    width: 60%;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.c-contact-us-social-links-main-container h6 {
    margin: 0px;
    font-size: 20px;
}

.c-contact-us-social-links-container {
    display: flex;
    margin-right: 100px;
}

.c-contact-us-social-links-main-container a {
    display: inline-block;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--c-bg-c-blue);
    margin: 0px 20px;
}

.c-contact-us-social-links-main-container a i {
    color: #ffffff;
    font-size: 24px;
}


/************ End of contat us page ************/
/************ End of contat us page ************/
/************ End of contat us page ************/




/*End of new contact us desing*/



/************ End of contact us page ************/
/************ End of contact us page ************/
/************ End of contact us page ************/



/************ Footer ************/
/************ Footer ************/
/************ Footer ************/
.c-footer {
    position: relative;
    padding: 70px 0px;
}

.c-footer ul {
    list-style: none;
    padding-left: 0px;
}

.c-footer-main-container {
    width: 85%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.c-footer-logo-container {
    width: 350px;
    margin-right: 120px;
}


.c-footer-info-main-container {
    display: flex;
    flex: 1;
}

.c-footer-info-container {
    margin: 0px 20px;
    position: relative;

    flex: 1;
}

.c-footer-info-container:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--c-bg-c-light-blue);
    left: -20px;
}

.c-footer-info-container h6 {
    color: var(--c-f-c-blue);
    font-weight: var(--c-f-w-bold);

}

.c-footer-info-container ul {}


.c-footer-info-container ul li {
    color: var(--c-f-c-blue);
    margin: 20px 0px;
    display: flex;
    font-size: 12px;
}

.c-footer-info-container ul li i {
    margin-right: 5px;
    margin-top: 3px;
    color: #AAB1B6;
}


.c-footer-info-container ul li a {
    color: var(--c-f-c-blue);
    font-size: 12px;
    margin: 0px 0px;
}



/*Social links*/

.c-footer-social-links-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 100px;
    text-align: center;
    background: var(--c-bg-c-blue);
    position: absolute;
}

.c-footer-social-links-container h3,
a {
    margin: 20px 0px
}



.c-footer-social-links-container h3 {
    font-size: 16px;
    color: var(--c-f-c-white);
    font-weight: var(--c-f-w-regular);
    line-height: 20px;
}

.c-footer-social-links-container > a {
    font-size: 25px;
    color: var(--c-f-c-white);
    font-weight: var(--c-f-w-bold);
}

.c-footer-social-links-container a p {
    font-weight: var(--c-f-w-regular);
    color: #A6C6DF;
    font-size: 12px;
}


/*Copyright*/
.c-footer-copyright-container {
    width: 85%;
    margin: 0 auto;
    font-size: 12px;
    color: var(--c-f-c-grey);
    font-weight: var(--c-f-w-light)
}



/************ End of footer ************/
/************ End of footer ************/
/************ End of footer ************/



/*General header*/
.c-general-header-main-container {
    position: relative;
    /*    height: 550px;*/
    height: 570px;
    /*    margin-bottom: 50px;*/
    margin-bottom: 30px;
}

.c-general-section-bg-container {}

.c-general-section-white-container {
    width: 35%;
    height: 100%;
    position: absolute;
    left: 0px;
    z-index: -1;
}

.c-general-section-blue-container {
    width: 65%;
    background: var(--c-bg-c-blue);
    height: 100%;
    position: absolute;
    right: 0px;
    z-index: -1;
}

.c-general-section-content-container {
    display: flex;
    align-items: center;
}

.c-general-section-img-container {
    /*    width: 75wv;*/
}

.c-general-section-img-container img {
    width: 66.5vw;
}

.c-general-section-content {
    padding: 30px;
}

.c-general-section-content h2 {
    color: var(--c-f-c-white);
}

.c-general-section-content p {
    color: var(--c-f-c-white);
}

/*End of general header*/


/*
@media only screen and (min-width: 0px) and (max-width: 1600px) {

    .c-homepage-slider-content-main-container {
        position: relative !important;
        flex-direction: column !important;
    }

    .c-homepage-slider-content-container h1 {
        top: 15% !important;
        right: 50% !important;
        transform: translate(50%) !important;
        line-height: 54px !important;
    }

    .c-homepage-slider-cities-container {
        display: none !important;
    }

    .c-homepage-slider-content-container > p {
        position: absolute !important;
        top: 50% !important;
        width: 50% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .c-slider-left-container {
        display: none !important;
    }

    .c-slider-right-container {
        width: 100vw !important;
        left: 0% !important;
    }

    .c-homepage-slider-img-container {
        width: 100% !important;
    }

    .c-homepage-slider-img-container img {
        width: 100% !important;
        height: 725px;
    }

    #c-homepage-slider.owl-theme .owl-nav {
        position: absolute !important;
        left: 50% !important;
        bottom: -7.5% !important;
        transform: translateX(-50%) !important;
    }

    .owl-theme .owl-dots {
        text-align: center !important;
        position: absolute !important;
        left: 50% !important;
        bottom: -12% !important;
        transform: translateX(-50%) !important;
    }

}
*/



@media only screen and (min-width: 992px) and (max-width: 1700px) {

    .c-homepage-our-services-first-title,
    .c-homepage-our-services-second-title {
        position: relative;
        bottom: 15px;
    }

    .c-homepage-services-ul.c-homepage-our-services-first-ul,
    .c-homepage-services-ul.c-homepage-our-services-second-ul {
        position: relative;
        bottom: 10px;
    }


    .c-homepage-services-content-container ul li {
        color: var(--c-f-c-white);
        margin: 10px 0px;
        /*        border-bottom: 1px solid rgba(255, 255, 255, 0.5);*/
        padding-bottom: 10px;
        font-size: 12px;
    }

    .c-homepage-services-content-container h5 {
        color: var(--c-f-c-white);
        font-size: 16px;
        line-height: 25px;
    }

    .c-homepage-services-content-container {
        /*        height: 450px;*/
        height: 400px;
    }
    
    
    .container-fluid.c-homepage-services-container *:nth-child(3) h5,
    .container-fluid.c-homepage-services-container *:nth-child(4) h5,
    .container-fluid.c-homepage-services-container *:nth-child(5) h5,
    .container-fluid.c-homepage-services-container *:nth-child(6) h5 {
        top: -3px;
    }


    .container-fluid.c-homepage-services-container *:nth-child(2) ul {

    }
    
    .container-fluid.c-homepage-services-container *:nth-child(2) h5 {
       
    }

    .container-fluid.c-homepage-services-container *:nth-child(3) ul,
    .container-fluid.c-homepage-services-container *:nth-child(4) ul,
    .container-fluid.c-homepage-services-container *:nth-child(5) ul,
    .container-fluid.c-homepage-services-container *:nth-child(6) ul {
        top: 13px;
    }

}



@media only screen and (min-width: 992px) and (max-width: 1700px) {

    /*Homepage Services*/
    

    /*Single post*/
    .c-thumbnail-img-container img {
        width: 65vw !important;
    }

    /*Footer*/
    .c-footer-logo-container {
        width: 200px;
        margin-right: 60px;
    }

}




/*Media queries between 1250px and 992px*/
@media only screen and (min-width: 992px) and (max-width: 1300px) {

    .c-logo-container {
        width: 20%;
        padding: 0px 20px;
    }

    .c-main-nav-right-container {
        width: 80%;
    }

}

/* Extra large devices (large desktops, 1200px and down) */
@media only screen and (max-width: 1200px) {


    .c-order-1-lg {
        order: 1 !important;
    }

    .c-order-2-lg {
        order: 2 !important;
    }


    /*General Header 1200*/
    .c-general-header-main-container {
        height: auto;
    }

    .c-general-section-content-container {
        flex-direction: column;
    }

    .c-general-section-bg-container {}

    .c-general-section-blue-container {
        width: 100%;
    }

    .c-general-section-img-container img {
        width: 100%;
    }

    /*End of general header 1200*/



    /*Our services pages 1200*/

    /*Our services menu*/
    .c-our-services-nav {
        height: auto;
    }

    .c-our-services-ul {
        flex-direction: column;
        height: auto;
    }

    /*Our sercives pages*/
    .c-our-services-content-container {
        padding: 20px 0px;
        flex-direction: column;
        margin: 0px 10px;
    }

    .c-our-services-ul li {
        height: auto;
    }

    .c-our-services-ul li a {
        border-right: 0px;
        padding: 5px;
        font-size: 14px;
        height: auto;
    }

    .c-our-services-left-content-container {
        padding-right: 0px;
    }

    /*End of services page 1200*/


    /*Contact us page 1200*/
    /*Contact form 1200*/
    .c-contact-us-section-container h2 {
        width: 100vw;
        justify-content: center;
    }

    .c-contact-us-main-container {
        flex-direction: column;
    }

    .c-contact-us-left-main-container {
        width: 100% !important;
        align-items: center !important;
    }

    .c-contact-us-right-main-container {
        margin-top: 100px;
    }

    .c-contact-us-right-main-container {
        width: 100%;
    }

    .c-contact-us-columns-container {
        width: 100%;
    }

    /*End of contact us page 1200*/

    /*Footer*/

    .c-footer {
        padding: 40px;
        overflow-y: hidden;
    }

    .c-footer-main-container {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .c-footer-info-main-container {
        flex-direction: column;
        /*        align-items: flex-start;*/
    }

    .c-footer-info-main-container:before {
        display: none;
    }

    .c-footer-info-container:before {
        display: none;
    }

    .c-footer-logo-container {
        margin-right: 0px;
        margin-bottom: 40px;
    }


    .c-footer-copyright-container {
        width: 95%;
    }

    /*Footer social links*/
    .c-footer-social-links-container {
        width: 100%;
        /*        height: auto;*/
        height: 40px;
        top: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .c-footer-social-links-container a p {
        margin-bottom: 0px;
    }

}


.c-general-header-parallax {
    height: 500px;
/*    width: 1285px;*/
    width: 70vw;
    background-repeat: no-repeat;
    background-position: left center;
    background-attachment: fixed;
}

.c-general-header-parallax.c-blog-header-bg {
/*    background: url("../images/blog/leo-blog-hd.jpg");*/
    background: url("../images/blog/leo-blog-parallax.jpg");
    height: 500px;
/*    width: 1285px;*/
    width: 70vw;
    background-repeat: no-repeat;
    background-position: left center;
    background-attachment: fixed;
}

/* Large devices (desktops, 992px and down) */
@media only screen and (max-width: 992px) {

    /*Responsive css*/
    /*Responsive css*/
    /*Responsive css*/


    /*Show parallax images on mobile devices*/
    .c-general-header-parallax {
        background-attachment: scroll !important;
        /*        width: 65vw !important;*/
        width: 100vw !important;
        background-size: contain !important;
        height: 200px !important;
    }
    
    

    /*Breadcrumbs*/
    .c-breadcrumbs-main-container {
        margin-left: 0% !important;
        width: 100vw !important;
        padding-left: 0px !important;
        background: var(--c-bg-c-blue);
        padding-bottom: 0px !important;
        color: var(--c-f-c-white);
        padding: 15px !important;
        font-size: 12px !important;
        text-align: center !important;
    }

    /*About us timeline*/
    
    .c-about-us-tabs-container .about-us-tab-title:last-child {
        padding-right: 0px !important;
    }
    
    .c-about-us-timline-title-container {
        width: 100%;
    }
    
    
    .c-about-us-timline-title-container.is-selected {
        position: relative;
        display: block;
    }
    
    .c-about-us-timeline-main-container {
        margin-top: 300px;
    }
    
    .c-timeline-years-of-experience-title {
        text-align: center !important;
    }
    
    .c-about-us-tabs-container .about-us-tab-title {
        margin: 0px 5px !important;
    }
    



    /*Services*/
    
    .menu-services-menu-container {
        padding: 20px 0px;
    }
    
    .c-our-services-dots-container {
        display: none;
    }

    .c-our-services-img-v1 {
        width: 100% !important;
        padding: 30px !important;
    }
    
    h2.c-our-offices-main-title {
        font-size: 20px;
        text-align: center;
        padding-left: 0px !important;
    }
    
    
    /*Our offices*/
    .c-our-offices-ul {
        padding: 10px 20px;
    }
    
    .c-our-offices-content-container {
        padding: 20px;
    }
    
    /*blog page*/
    .c-blog-content {
        padding: 20px;
    }
    
    /*Single blog*/
    .c-thumbnail-img-container img {
        width: 100vw;
        height: auto;
    }
    
    
    

    /*End of responsive css*/
    /*End of responsive css*/
    /*End of responsive css*/









    .c-burger-container {
        visibility: visible;
    }

    .c-logo-container {
        width: 90%;
        text-align: left;
    }

    .c-logo-container img {
        width: 200px;
        height: 70px;
    }

    .c-main-nav-container {
        flex-direction: column;
    }

    .c-main-nav-right-container {
        width: 100vw;
        height: 100vh;
        align-items: center;
        transform: translateX(100%);
        transition: all .3s ease-in-out;
        position: absolute;
        top: 1.5%;
        z-index: 999999999999;
		margin-top: 0px;
    }

    .c-main-nav-right-container.c-show-nav {
        transform: translateX(0px);
    }

    .c-top-nav-container {
        display: none;
    }

    .c-bottom-nav-container {
        border-top: 0px;
        height: 100%;
    }

    .c-bottom-nav-container .c-main-nav {
        height: 100%;
    }

    .c-bottom-nav-container .c-main-nav ul {
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }

    .c-bottom-nav-container .c-main-nav ul li {
        margin: 15px 0px;
    }


    /*Services sub menu*/
    .c-our-services-submenu.c-submenu-active {
        position: relative;
    }

    .c-bottom-nav-container .c-main-nav ul {
        height: 80%;
		margin-top: 20px;
    }

    li#c-our-services-dropdown {
        text-align: center;
    }

    li.c-our-services-dropdown {
        text-align: center;
    }




    /*Homepage 992*/

    .c-homepage-about-us-section-main-container {
        flex-direction: column;
    }

    .c-homepage-about-us-content {
        padding: 40px 20px;
    }

    .c-homepage-about-us-right-content-container {
        right: 0px;
    }


    /*Parallax*/

    .c-last-section-parallax-main-container {
        background-attachment: scroll;
    }

    .c-last-section-content-container {
        max-width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    /*Footer*/
    .c-footer-logo-container {
        width: 100%;
    }

    .c-footer-copyright-container {
        margin-bottom: 50px;
    }

}

/*Dropdown link*/
.c-top-li-dropdown-services {
    display: block;
    color: var(--c-f-c-white);
    margin: 0px 15px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    transition: all .3s ease-in-out;
}

.c-top-li-dropdown-services:hover {
    text-decoration: none;
    color: var(--c-f-c-brown);
}

/*Sub menu*/
.c-top-li-services-dropdown-menu {
    position: absolute;
    min-width: 400px;
    padding-left: 0px;
    padding-top: 20px;
    z-index: 99999999;
    background: var(--c-bg-c-blue);
    display: block !important;
}

.c-top-li-services-dropdown-menu li {
    width: 100%;
    height: 100%;
    padding-left: 10px;
}

.c-top-li-services-dropdown-menu li a {
    display: block;
    padding: 20px 0px;
    width: 100%;
    margin: 0px 0px !important;
}

.c-top-li-services-dropdown-menu li a:hover {
    /*    background:red;*/
}

/* Medium devices (tablets, 768px and down) */
@media only screen and (max-width: 768px) {

    /*slider*/
    .c-homepage-slider-content-container h1 {
        line-height: 44px !important;
        font-size: 40px !important;
        width: 70% !important;
    }

    .c-homepage-slider-content-container > p {
        width: 70% !important;
    }

    /*Our offices page*/
    .c-our-offices-ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: baseline;
        height: auto;
        width: auto;
        line-height: 25px;
    }

    /*Contact us page*/

    .wpcf7-form {
        right: 0px;
        top: 0px;
    }

    .c-contact-us-columns-container {
        flex-direction: column;
    }

    .c-contact-us-right-column {
        width: 100%;
    }

    /*
    .c-contact-form-top-right-line {
        right: 2%;
    }
*/

    .c-contact-us-left-main-container {
        justify-content: center;
        align-items: center;
        display: block;
    }

    .c-contact-form-top-left-line {
        display: none;
    }

    .c-contact-form-top-right-line {
        display: none;
    }

    .c-contact-form-placeholder {
        position: relative;
        left: 0px;
        top: 0px;
    }

    input {
        border-left: 0px solid #D9E7F1;
        border-right: 0px solid #D9E7F1;
        border-bottom: 0px solid #D9E7F1;
        border: 1px solid #D9E7F1;
        width: 100%;
    }

    textarea {
        width: 100%;
    }

    input[type=submit] {
        width: 100%;
    }


    .c-contact-us-social-links-main-container {
        width: 100%;
    }

    /*End of contact us page*/

}

/* Small devices (landscape phones, 576px and down) */
@media only screen and (max-width: 576px) {}









/*Digital clocks*/

.c-contact-us-clock-main-container {
    /*    padding: 100px;*/
    padding: 130px 0px 100px 0px;
    background: var(--c-bg-c-light-grey);
}

.c-contact-us-clock-main-container h2 {
    text-align: center;
    margin-bottom: 50px;
}

.c-clock-main-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.c-clock-content-container {
    margin-top: 30px;
}

.c-clock-content-container h6 {
    font-size: 20px;
}

.c-clock-content-container p {
    font-size: 14px;
}

.c-clock-content-container p i {
    font-size: 12px;
    margin-right: 5px;
}




/*Languages dropdown*/
.c-top-li-dropdown {
    position: relative;
}

.c-languages-dropdown-sub-menu {
    position: absolute;
    list-style: none;
    padding-left: 0px;
    display: inline-block;
    color: var(--c-f-c-white);
    height: 76px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*    padding: 40px 0px 40px 40px;*/
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    font-size: 14px;
    z-index: 9999;
    background: #ffffff;
    left: 0px;
    bottom: -76px;
    display: none;
}

.c-languages-dropdown-sub-menu.c-languages-submenu-active {
    display: flex;
}













/*nav button example*/
#c-our-services-dropdown {
    display: inline-block;
    color: var(--c-f-c-white);
    margin: 0px 15px;
    font-size: 20px;
    transition: all .3s ease-in-out;
}

#c-our-services-dropdown:hover {
    text-decoration: none;
    color: var(--c-f-c-brown);
}

.c-our-services-dropdown {
    display: inline-block;
    color: var(--c-f-c-white);
    margin: 0px 15px;
    font-size: 20px;
    transition: all .3s ease-in-out;
}

.c-our-services-dropdown:hover {
    text-decoration: none;
    color: var(--c-f-c-brown);
}













/*Slider*/
.c-homepage-slider-main-container {
    padding-bottom: 250px;
}

.c-homepage-slider-main-container button:hover,
.c-homepage-slider-main-container button:focus,
.c-homepage-slider-main-container button:active {
    outline: none !important;
}

.c-homepage-slider-container {
    position: relative;
    height: 700px;
    /*    background:orange;*/
    z-index: 0;
    top: 30px;
}

.c-homepage-slider-bg-conainers {
    display: flex;
    width: 100%;
    justify-content: center;
    /*    height: 65px;*/
    position: absolute;
}

.c-slider-left-container {
    width: 25%;
    left: 0px;
    background: white;
    position: absolute;
    z-index: -1;
    /*    height: 100%;*/
}

.c-slider-right-container {
    width: 65%;
    left: 35%;
    background: var(--c-bg-c-blue);
    position: absolute;
    z-index: -2;
    height: 800px;
}

.c-homepage-slider-content-main-container {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.c-homepage-slider-cities-container {
    padding: 0px 50px;
    color: var(--c-f-c-medium-blue);
}


.c-homepage-slider-img-container {
    max-width: 100%;
    height: 600px;
    position: relative;
    z-index: 50;
}

.c-homepage-slider-img-container img {
    width: 100% !important;
    height: 725px;
}


/*Content*/
.c-homepage-slider-content-container {
    /* padding: 40px; */
    /* float: left; */
    z-index: 9999;
    position: absolute;
    right: 5%;
    left: 60%;
    top: 50px;
    bottom: 50px;
}

.c-homepage-slider-content-container h1 {
    font-size: 50px;
    color: #ffffff;
    position: absolute;
    top: 9%;
    left: 0;
    display: block;
    left: 0;
    right: 0;
    z-index: 100;
}

.c-homepage-slider-content-container > p {
    color: #ffffff;
    position: absolute;
    top: 40%;
    display: block;
    right: 0;
    left: 55%;
    background: rgba(0, 93, 163, 0.8);
    ;
    z-index: 100;
    padding: 20px;
}

.c-homepage-slider-link-container {
    display: flex;
}

.c-homepage-slider-content-container a {
    display: flex;
    align-items: center;
    /*    width: 25%;*/
    width: 200px;
    color: var(--c-f-c-white);
    justify-content: space-between;
    border-bottom: 1px solid var(--c-f-c-white);
    /*
    position: relative;
    top: 140px;
    left: 36%;
*/
    position: absolute;
    right: 200px;
    bottom: 120px;

    display: none;

}

.c-homepage-slider-content-container a:hover {
    text-decoration: none;
}

.c-homepage-slider-content-container a i {
    color: #ffffff;
}




/*#c-homepage-slider.owl-theme*/
/*Buttons*/

#c-homepage-slider.owl-theme .owl-nav {
    border: 1px solid #ffffff;
    position: relative;
}

#c-homepage-slider.owl-theme .owl-nav:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    ;
    background: #ffffff;
    left: 50%;
    top: 10%;

}

#c-homepage-slider .owl-prev {
    font-size: 20px;
    right: -90px;
    top: 15px;
    padding: 9px 20px !important;
    margin: 0 !important;
}

#c-homepage-slider .owl-next {
    font-size: 20px;
    right: -90px;
    top: 15px;
    padding: 9px 20px !important;
    margin: 0 !important;
}

#c-homepage-slider.owl-theme .owl-nav {
    position: absolute;
    left: 35%;
    bottom: -7%;
    margin: 0;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #ffffff !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
}


/*Dots*/
.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    left: 43%;
    bottom: -40px;
}

.owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
    width: 20px;
    background: rgba(255, 255, 255, 0.5);
    height: 1px;
    margin: 5px 2px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff;
    height: 2px;
}



@media only screen and (min-width: 1300px) and (max-width: 1600px) {
    .c-homepage-slider-container {
        height: auto;
    }

    .c-homepage-slider-img-container {
        width: 100%;
        max-width: 900px;
        max-height: 725px;
        position: relative;
        z-index: 50;
    }

    .c-homepage-slider-img-container img {
        width: 100%;
        max-height: 725px;
    }

    .c-homepage-slider-container {
        position: relative;
        height: auto;
        z-index: 0;
    }

    .c-homepage-slider-content-container {
        z-index: 9999;
        position: absolute;
        right: 0;
        left: 60%;
        top: 15%;
        bottom: 25%;
    }

    .c-homepage-slider-content-container h1,
    .c-homepage-slider-content-container > p {
        left: 0 !important;
        right: 0 !important;
    }

    .c-homepage-slider-content-container > p {
        left: 33% !important;
        top: 60%;
    }

    .c-homepage-slider-content-container h1 {
        top: 5%;
    }

    #c-homepage-slider.owl-theme .owl-nav {
        position: absolute;
        left: 35%;
        bottom: -8.2%;
    }

    .owl-theme .owl-dots {
        left: 45%;
    }
}

/*@media only screen and (min-width: 991px) and (max-width: 1300px) {*/
/*    .c-homepage-slider-content-container {*/
/*        z-index: 9999;*/
/*        position: absolute;*/
/*        right: 15%;*/
/*        left:30%;*/
/*        top: 25%;*/
/*        bottom: 25%;*/
/*    }*/
/*    .c-homepage-slider-content-container h1,.c-homepage-slider-content-container > p {*/
/*        left:0 !important;*/
/*        right:15% !important;*/
/*    }*/
/*    .c-homepage-slider-content-container > p  {*/
/*        top: 55%;*/
/*    }*/
/*}*/

@media only screen and (min-width: 768px) and (max-width: 1300px) {
    .c-homepage-slider-content-container {
        background: rgba(0, 93, 163, 0.6);
        right: 5%;
        left: 45%;
        top: 15%;
        bottom: 20%;
    }

    .c-homepage-slider-content-container > p {
        background: none;
        left: 5%;
        right: 5%;
        padding: 20px 0;
    }

    .c-homepage-slider-content-container h1 {
        line-height: 38px !important;
        font-size: 35px !important;
        left: 5%;
        right: 5%;
    }
}

@media only screen and (min-width: 300px) and (max-width: 768px) {
    .c-homepage-slider-main-container {
        padding-bottom: 100px;
    }

    .c-homepage-slider-cities-container {
        display: none;
    }

    .c-slider-right-container {
        display: none;
    }

    .c-homepage-slider-content-container {
        right: 20px;
        left: 20px;
        background: rgba(0, 93, 163, 0.6);
    }

    .c-homepage-slider-content-container > p {
        right: 0;
        left: 0;
        background: none;
        left: 5%;
        padding: 0;
        width: 100%;
    }

    .c-homepage-slider-content-container h1 {
        line-height: 38px !important;
        font-size: 35px !important;
        width: 100% !important;
        left: 5%;
    }
}










/*Credit*/



/*Footer convertico credits*/

.c-footer {
    float: left;
    width: 100%;
    background: var(--black-bg-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.credit {
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: 0;
    left: 0;
    background-color: #2d2d2d;
    z-index: 2;
    -webkit-transition: height 250ms ease-out;
    transition: height 250ms ease-out;
}

.credit:hover {
    height: 50px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

.credit .circle {
    position: absolute;
    background-color: #2d2d2d;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
}

.credit .circle-1 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    z-index: 1;
    background: #2d2d2d;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.credit .circle-2 {
    width: 93px;
    height: 97px;
    bottom: -30px;
    z-index: 2;
    /*    border: 1px solid #808080;*/
    border: 1px solid #1b1e28;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

footer .credit:hover .circle-1,
footer .credit:hover .circle-2 {
    bottom: -10px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit:hover .circle-1,
footer .credit:hover .circle-2 {
    bottom: -10px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

.credit .outer-bg-line {
    height: 25px;
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    background-color: #0f1116;
    border-top: 1px solid #1b1e28;
    z-index: 1;
    -webkit-transition: height 250ms ease-out;
    transition: height 250ms ease-out;
}

footer .credit:hover .outer-bg-line,
footer .credit:hover .content {
    height: 45px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

.credit .content {
    background-color: #2d2d2d;
    height: 25px;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: height 250ms ease-out;
    transition: height 250ms ease-out;
}

footer .credit:hover .outer-bg-line,
footer .credit:hover .content {
    height: 45px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit .content img.logo {
    z-index: 6;
    width: 30px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    cursor: pointer;
    bottom: 10px;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit:hover .content img.logo {
    bottom: 30px;
}

footer .credit .content .note {
    margin-top: 17px;
    text-align: center;
    color: #fff;
    opacity: 0;
    -webkit-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

footer .credit:hover .note {
    opacity: 1;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}

footer .credit .content .note a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}




/*Breadcrumbs*/

.c-breadcrumbs-main-container {
    margin-left: 35%;
    width: 66vw;
    padding-left: 50px;
    background: var(--c-bg-c-blue);
    padding-bottom: 20px;
    color: var(--c-f-c-white);
}

.c-breadcrumbs-main-container a.c-breadcrumb-home {
    font-size: 14px;
    color: #80AED1;
}

.c-breadcrumbs-main-container a.c-breadcrumb-home:hover {
    text-decoration: none;
    color: #80AED1;
}

.c-breadcrumbs-main-container a.c-breadcrumb-link {
    color: #ffffff;
    font-size: 14px;
}

.c-breadcrumbs-main-container a.c-breadcrumb-link:hover {
    text-decoration: none;
    color: #ffffff;
}

.c-breadcrumbs-main-container a i {}



/*Services breadcrumbs*/
.c-breadcrumbs-main-container-services {
    margin-left: 35%;
    margin-top: 20px;
    width: 66vw;
    /*    padding-left: 50px;*/
    background: var(--c-bg-c-white);
    /*    padding-bottom: 20px;*/
}

.c-breadcrumbs-main-container-services a.c-breadcrumb-home {
    font-size: 14px;
    color: #80AED1;
}

.c-breadcrumbs-main-container-services a.c-breadcrumb-home:hover {
    text-decoration: none;
    color: #80AED1;
}

.c-breadcrumbs-main-container-services a.c-breadcrumb-link {
    color: var(--c-f-c-blue);
    font-size: 14px;
}

.c-breadcrumbs-main-container-services a.c-breadcrumb-link:hover {
    text-decoration: none;
    color: var(--c-f-c-blue);
}

.c-breadcrumbs-main-container-services a i {}








/*New offices page css*/

/*
.c-our-offices-row {
    border-bottom: 10px solid var(--c-bg-c-brown);
}
*/

.c-our-offices-n-p {
    padding-left: 0px !important;
    padding-right: 0px !important;
    position: relative;
}

.col-lg-12.col-xl-6.c-our-offices-n-p.c-order-1-lg:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 120%;
    background: var(--c-bg-c-blue);
    left: 0px;
    z-index: 1;
    bottom: -50px;
}

.c-offices-img-border {
    padding-left: 0px !important;
    padding-right: 0px !important;
    position: relative !important;
    ;
}

.c-offices-img-border:before {
    content: "" !important;
    ;
    position: absolute !important;
    ;
    width: 2px !important;
    ;
    height: 120% !important;
    ;
    background: var(--c-bg-c-blue) !important;
    ;
    right: 0px !important;
    ;
    z-index: 1 !important;
    ;
    bottom: -50px !important;
    ;
}

.c-our-offices-img-container img {
    width: 100%;
}

h2.c-our-offices-main-title {
    width: 100%;
    background: var(--c-bg-c-blue);
    height: 85px;
    line-height: 85px;
    padding-left: 80px;
    margin: 0px;
    color: var(--c-f-c-white);
    position: relative;
    z-index: 2;
}

.c-our-offices-main-title.c-our-offices-main-right {
    padding-left: 53vw;
}









/*Services img size*/
.c-our-services-img-v1 {
    width: 600px;
}


/*Breadcrumbs*/

a.home,
a.post-root.post.post-post,
a.taxonomy.category {
    color: #80AED1 !important;
}

a.home:hover {
    text-decoration: none;
}

.post.post-services.current-item,
.post.post-page.current-item,
.post-root.post.post-post.current-item,
.post.post-post.current-item {
    color: var(--c-f-c-white) !important;
}


/*Active main navigation link*/
.current_page_item a {
    position: relative;
    color: var(--c-f-c-brown) !important;
}

.current_page_item a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--c-bg-c-brown);
    bottom: -10px;
}


/*
.c-active-main-nav-link a {
    color: var(--c-f-c-brown) !important;
}*/






/*Single blog post*/

.c-single-post-date-container p {
    color: var(--c-f-c-white);
}


.c-thumbnail-img-container {
    width: 1285px;
    height: 500px;
}

.c-thumbnail-img-container img {
/*    width: 1285px;*/
    width: 70vw;
    height: 500px;
}

.c-single-post-container {
    position: relative;
    right: 20%;
}

.c-single-post-date {
    font-weight: var(--c-f-w-bold);
    font-size: 30px;
    margin-bottom: 0px;
    margin-top: 30px;
}

.c-single-post-month {
    font-size: 20px;
    margin-bottom: 0px;
}

.c-single-post-year {
    font-size: 22px;
    color: #A6C6DF !important;
    margin-bottom: 40px;
}

.c-single-post-title {
    color: white;
    font-size: 40px;
}

.c-singl-post-slider-content {
    color: white;
}


.c-prev-next-btns-container {
    position: absolute;
    left: 60%;
    bottom: -11.4%;
    /*    border: 1px solid white;*/
    padding: 10px 0px;
}

.c-prev-next-btns-container a {
    margin: 0px 20px;
    color: white;
}

.c-prev-next-btns-container a:hover {
    text-decoration: none;
}








.menu-item.menu-item-type-post_type.menu-item-object-services.current-menu-item.c-active-main-nav-link {
    background: var(--c-bg-c-blue);
}

.menu-item.menu-item-type-post_type.menu-item-object-services.current-menu-item.c-active-main-nav-link a {
    color: var(--c-f-c-white);
}




/*Last Main nav a link*/
#main_menu_v1 > li:last-of-type a {
    position: relative !important;
}

#main_menu_v1 > li:last-of-type a:before {
    content: "";
    background: transparent !important;
}



/*Breadcrumbs separator*/
.c-breadcrumb-separator {
    margin: 0px 5px;
}

/*Homepage slide active city*/
.c-slider-city-active {
    color: var(--c-f-c-blue);
}




/*Pagination*/
.c-blog-page-pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-blog-page-pagination-container a {
    display: flex;
    margin: 0px 10px;
}

.page-numbers.current {
    width: 38px;
    height: 38px;
    border: 1px solid var(--c-bg-c-blue);
    text-align: center;
    line-height: 38px;
    margin: 0px 10px;
}

.page-numbers {
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    display: flex !important;
    justify-content: center !important;
    transition: all .3s ease-in-out;
}

.page-numbers:hover {
    width: 38px;
    height: 38px;
    background: var(--c-bg-c-blue);
    color: var(--c-f-c-white);

}



/*Pagination previous next buttons*/


.c-pagination-btn {
    color: #989898;
    font-size: 12px;
    position: relative;
}

.c-pagination-btn.c-pagination-prev-btn {
    color: #989898;
    font-size: 12px;
    position: relative;
    right: 5px;
}

.c-pagination-btn.c-pagination-prev-btn:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #989898;
    right: -15px;
}

.c-pagination-btn.c-pagination-prev-btn:hover {
    text-decoration: none;
    color: var(--c-f-c-blue);
    background: var(--c-bg-c-white);
}

.c-pagination-btn.c-pagination-next-btn {
    color: #989898;
    font-size: 12px;
    position: relative;
    width: 40px;
    background: white;
}

.c-pagination-btn.c-pagination-next-btn:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #989898;
    left: -15px;
}

.c-pagination-btn.c-pagination-next-btn:hover {
    text-decoration: none !important;
    color: var(--c-f-c-blue);
}



/*About us history*/
.about-us-tab-title {
    position: relative;
}

.about-us-tab-title.c-is-selected:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: white;
    bottom: -10px;
}

/*Added by TA-Developer*/

.donwload-link {
	padding: 40px;
	color: #FFF;
	transition: all .3s ease-in-out;
}

.donwload-link:hover {
	color: #80AED1;
	text-decoration: none;
}

.donwload-link-active {
	color: #80AED1;
	text-decoration: none;
}

@media (min-width: 990px) {
	.marginSize {
		margin-left: 30px !important;
	}
}