@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* End Fonts */

:root {
    --main-color: #263860;
    --sec-color: #5aa6ab;
    --thr-color: #ad7934;
    --bg-color: #F3F6F4;
    --dark-color: #000;
    --gray-color: #474e69;
    --font-body: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--thr-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    background: #fff;
    text-align: start;
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: #fff;
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    line-height: 27px;
    color: #333;
    padding: 10px 0;
    display: block;
    border-bottom: 1px #eee solid;
    text-align: start;
    text-transform: capitalize;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */

/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/*** 

====================================================================
	End Search Popup
====================================================================

***/

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    /* margin-top: 27px; */
    gap: 31px;
}

header.sticky {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 23px 0;
    /* overflow: hidden; */
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: var(--main-color);
    display: table;
    font-size: 18px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid var(--main-color);
    line-height: 40.37px;
    text-align: center;
    position: relative;
    left: 0;
    top: 0;
    margin: 0;
    z-index: 8;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h a {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #fff;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: 100%; */
    /* overflow-y: auto; */
}

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
    padding: 0 20px;
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 50px;
    padding: 5px 20px;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 130px;
    width: 100%;
    /* margin-inline-end: 47px; */
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

.header-med .head-inner ul li .sub-menu a:hover,
.header-med .head-inner ul li .sub-menu li .sub-menu a:hover {
    background: var(--main-color) !important;
    color: #fff;
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 9px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 188px;
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #0000001A;
    border-radius: 0;
    padding: 0;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    padding: 18px 10px;
    display: block;
    color: var(--dark-color);
    border-bottom: 1px solid #EDEDED;
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    /* padding-top: 0; */
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    /* padding-bottom: 0; */
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 23px;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
    height: 35px;
    align-content: center;
    text-align: center;
    background: var(--main-color);
    border-radius: 6px;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3.5px auto;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .5s;
    top: 0;
    right: 0;
    left: 0;
}

.mobile-nav-toggler .lines ::after {
    /* transform: translateX(-50px); */
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    margin: 0 auto;
}

.item.res-menu {
    display: none;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    border: 1px solid var(--main-color);
    padding: 5px 20px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 167px;
    background: var(--main-color);
    min-height: 42px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    box-shadow: none !important;
    z-index: 1;
    gap: 8px;
    /* font-weight: 700; */
    font-size: 18px;
    line-height: 28px;
}

header .btn {
    /* font-size: 15px; */
    /* line-height: 18.23px; */
    margin-inline-start: 15px;
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
    display: none;
}

.btn::before {
    left: 0;
}

.btn::after {
    left: 50%;
}

.search-box-btn.search-box-outer {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
}

.header-med .head-inner ul li.current-menu-item a {
    /* color: var(--main-color) !important; */
    background: transparent;
    /* border-top: 4px; */
}

.lang-menu {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

.lang-menu>a {
    min-width: 130px;
    min-height: 48px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--main-color);
    background: #fff;
    gap: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--main-color);
    cursor: pointer;
}

.contact-menu>a {
    background: var(--main-color);
    color: #fff;
}

.lang-menu ul {
    display: block;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 130px;
    padding-inline-end: 6px;
}

.lang-menu ul li a {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #E5EEFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    gap: 6px;
    align-items: center;
    -webkit-align-items: center;
}

.lang-menu ul li:first-child a {
    padding-top: 0;
}

.lang-menu ul li:last-child a {
    border: none;
    padding-bottom: 0;
}


.btn:hover {
    color: #fff;
}

.header-med .head-inner ul li.current-menu-item a::before,
.header-med .head-inner ul li a:hover::before {
    height: 4px;
}

.header-med .head-inner ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: #fff;
    transition: all .4s;
}

/* End Header */

/* Start Banner-h */

.banner-h .row {
    min-height: 510px;
    align-items: center;
}

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: .5;
}

.banner-text {
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
}

.banner-text h1 {
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    max-width: 456px;
    margin: 0 auto;
}

/* End Banner-h */

/* Start Business-h */

.business-h {
    padding: 50px 0;
}

.business-title h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4em;
    margin: 0;
    color: var(--main-color);
}

.business-title {
    max-width: 560px;
}

.business-p p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.business-h .row {
    align-items: center;
    -webkit-align-items: center;
}

/* End Business-h */

/* Start About-h */

.about-h {
    padding: 50px 0;
    background: var(--bg-color);
}

.title {
    margin-bottom: 25px;
}

.title h3 {
    position: relative;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--main-color);
}

.title h3::after {
    content: "";
    position: relative;
    display: table;
    height: 5px;
    width: 98px;
    background: #c5c5cf;
    margin-top: 15px;
}

.list-h ul li {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 20px;
}

.list-h ul li::before {
    content: "\f058";
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    font-size: 20px;
    margin-inline-end: 10px;
}

.about-h .row {
    margin: 0;
    padding: 30px 15px;
    background: #fff;
}

.about-img {
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* End About-h */

/* Start Advisory-h */

.advisory-h {
    padding: 60px 0;
}

.title-without-line h3::after {
    display: none;
}

.advg-img {
    height: calc(100% - 30px);
    margin: 15px 0;
    background: var(--bg-color);
    padding: 50px;
    padding-inline-end: 30px;
    transition: all .4s;
}

@media (min-width: 992px) {
    .advisory-h .col-md-3 {
        width: 20%;
    }
}

.advg-img .icon {
    width: 55px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    transition: all .4s;
}

.advg-img .details h3 {
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #000000;
    transition: all .4s;
}

.advg-img .details p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4em;
    color: #000;
    transition: all .4s;
}

.advg-img:hover {
    background: var(--main-color) !important;
}

.advg-img:hover .details h3,
.advg-img:hover .details p {
    color: #fff;
}

.advg-img:hover .icon {
    filter: brightness(0) invert(1);
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1450px;
    }
}

/* End Advisory-h */

/* Start Capital-h  */

.capital-h {
    padding: 60px 0;
    background: var(--bg-color);
}

.capital-h .advg-img {
    background: #fff;
}

/* End Capital-h  */

/* Start Mergers-h */

.mergers-h {
    padding: 60px 0;
}

/* End Mergers-h */

/* Start Strategic-h */

.strategic-h {
    padding: 60px 0;
    background: var(--bg-color);
}

.strategic-h .advg-img {
    background: #fff;
}

/* End Strategic-h */

/* Start Contact-h */

.contact-h {
    padding: 80px 0;
    background: var(--main-color);
}

.contact-h .container>.row {
    align-items: center;
    -webkit-align-items: center;
}

.contact-title {}

.contact-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.contact-title p {
    max-width: 275px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.contact-form .form-group {
    margin: 8px 0;
}

.contact-form .form-group label {
    font-size: 14px;
    color: #fff;
    padding-bottom: 5px;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.contact-form .form-group .form-control {
    background: none;
    border: 0;
    outline: 0;
    color: #000000;
    font-size: 14px;
    line-height: 35px;
    border: 1px solid #a8a8a8;
    border-radius: 10px;
    padding: 10px 10px 10px 13px;
}

.contact-form .form-group textarea.form-control {
    height: 183px;
}

.contact-form .form-group button.btn {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    background-color: var(--sec-color);
    color: #fff;
    line-height: 34px;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
}

.contact-form .form-group button.btn:hover {
    background: var(--thr-color) !important;
}

/* End Contact-h */

/* Start Clients-h */

.clients-h {
    padding: 60px 0;
}

.title p {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    margin-top: 20px;
}

.title.text-center h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2em;
}

/* End Clients-h */

/* Start Footer */

footer {
    background: var(--main-color);
    padding: 10px 10px 0;
}

footer .container {
    max-width: 100%;
}

@media (min-width: 992px) {

    .footer-top .col-md-3 {
        width: 20%;
    }

}

.footer-top .col-md-3 {
    border: 1px #c5c5cf solid;
    padding: 70px 30px;
    border-inline-end: 0;
}

.foot-block>h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 35px;
    position: relative;
}

.footer-top .col-md-3:last-child {
    border-inline-end: 1px #c5c5cf solid;
}

.foot-block>h3::after {
    content: "";
    position: relative;
    display: table;
    width: 41px;
    height: 5px;
    background: #c5c5cf;
    margin-top: 25px;
}

.foot-block p {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
}

.work-time {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.work-time .icon {
    width: 73px;
}

.work-time .detials {
    width: calc(100% - 73px);
    padding-inline-start: 15px;
}

.work-time .detials h3 {
    font-size: 12px;
    font-weight: 700;
    line-height: 1em;
    color: #FFFFFF;
}

.work-time .detials h4 {
    font-size: 12px;
    font-weight: 700;
    line-height: 1em;
    color: #FFFFFF;
    margin: 0;
}

.links-f ul li a {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    display: inline-block;
    color: #fff;
    text-decoration: underline !important;
    margin-bottom: 15px;
}

.links-f ul li a:hover {
    color: var(--thr-color);
}

.info-f ul li {
    display: flex;
    margin-bottom: 15px;
}

.info-f ul li .icon {
    display: none;
}

.info-f ul li .details h3 {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.info-f ul li .details span {
    text-decoration: underline;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
}

.s-h {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
    justify-content: space-between;
}

.s-h a {
    font-size: 25px;
    color: #fff;
}

.s-h a:hover {
    color: var(--thr-color);
}

.logo-med {
    max-width: 190px;
}

.logo-med img {
    /* max-height: 150px; */
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-med .row {
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.footer-med .container row {
    padding: 30px 0;
}

.footer-med .container .row {
    border-bottom: 1px #c5c5cf solid;
}

.btn-med .btn {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
}

.btn-med .btn:hover {
    background: var(--thr-color);
    color: #fff;
    border-color: var(--thr-color);
}

.copy-right {
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
}

.copy-right p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}

/* End Footer */

/* Start About-page */

.breadcrumb-h {
    padding: 210px 0 90px;
}

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: .7;
}

.breadcrumb-h .banner-text h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 20px;
}

.breadcrumb-h .banner-text {
    max-width: 100%;
}

.about-h.about-page {
    background: transparent;
    padding-block: 100px;
}

.about-h.about-page .row {
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    padding: 0;
}

.about-text h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 2em;
    color: var(--main-color);
}

.about-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 2em;
    color: var(--main-color);
}

.mision-h {
    padding-block: 60px;
}

.mision-block {
    padding: 30px 40px;
    background: #fff;
    margin: 10px 0;
    height: calc(100% - 20px);
}

.mision-block .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
}

.mision-block .icon img {
    max-width: 45px;
    max-height: 45px;
}

.mision-block .details {
    padding-top: 20px;
}

.mision-block .details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    position: relative;
}

.mision-block .details h3::after {
    content: "";
    display: table;
    width: 48px;
    height: 5px;
    background: var(--main-color);
    margin: 20px 0;
}

.mision-block .details p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8em;
    color: var(--main-color);
}

.choose-h {
    padding-block: 100px;
}

.choose-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: .8;
}

.choose-h .title h3 {
    color: #fff;
}

.choose-h .title h3::after {
    margin: 15px auto;
}

.choose-h .title p {
    color: #fff;
}

@media (min-width: 992px) {
    .choose-h .col-md-3 {
        width: 20%;
    }
}

.choose-block {
    text-align: center;
    margin-top: 30px;
}

.choose-block .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: 0 auto 20px;
}

.choose-block .details p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6em;
    color: #fff;
}

.ethos-h {
    padding: 60px 0;
}

.title.text-center h3::after {
    margin: 15px auto;
}

.ethos-block {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    border: 1px solid #73738c;
    border-radius: 10px;
    height: calc(100% - 30px);
}

.ethos-block .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: 0 auto 20px;
}

.ethos-block .details h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--main-color);
}

@media (min-width: 1400px) {
    .body-inner .container {
        max-width: 1200px;
    }
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* End About-page */

/* Start Services-page */

.services-page {
    padding-block: 80px;
}

/* End Services-page */

/* Start Single-page */

.single-page {
    padding-block: 50px;
}

.single-top {
    margin: 50px 0;
}

.single-top p {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 15px;
}

.single-top p:last-child {
    margin: 0;
}

/* End Single-page */

/* Start Contact-page */

.map-h {
    height: 450px;
}

.contact-page {
    padding-block: 100px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info .item>h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--main-color);
    margin-bottom: 20px;
}

.contact-info .item ul li {
    margin: 5px 0 0;
}

.contact-info .item a,
.contact-info .item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 2em;
    color: #182749;
}

.contact-info .item a u {
    display: inline-block;
    direction: ltr;
    text-decoration: none;
}

.contact-info .item a:hover,
.contact-info .item p:hover {
    color: var(--thr-color);
}

.contact-form.contact-form-in {
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px;
    border-radius: 10px;
}

.contact-form.contact-form-in>h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-color);
}

.contact-form.contact-form-in .form-group {
    margin: 0 0 50px;
}

.contact-form.contact-form-in .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    padding-bottom: 12px;
}

.contact-form.contact-form-in .form-group .form-control {
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-bottom: 1px solid #69727d;
    border-radius: 0;
    box-shadow: none !important;
    transition: all .4s;
}

.contact-form.contact-form-in .form-group .form-control:focus {
    border-color: var(--thr-color);
}

.contact-form.contact-form-in .form-group button.btn {
    width: auto;
    min-width: 250px;
    background: var(--main-color);
}

.contact-form.contact-form-in .col-md-12:last-child .form-group {
    margin: 0;
}

.contact-info .item .s-h {
    justify-content: start;
    gap: 12px;
}

.contact-info .item .s-h a {
    width: 32px;
    height: 32px;
    background: var(--main-color);
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
}

.contact-info .item .s-h a i {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.contact-info .item .s-h a:hover {
    color: #fff;
    background: var(--thr-color);
}

/* End Contact-page */