/*
Theme Name: euexpressit
Theme URI: #
Author: Rechat
Author URI: https://insanustu.co/
Description: This is Exclusive For Insanustu
Version: 1.0
*/
/*********************
START: PUBLIC
*********************/
:root {
    --direction: ltr;
    --font-family: "Nunito";
    --primary-color:#1781CB;
    --secondary-color:#EA9458;
    --bg-color: #DFEAF2;
	--baseLight-color: #fff;
    --global-section-padding: 180px;
    --line-height:140%;
	
	--border-radius10: 10px;
	--border-radius15: 15px;
	--border-radius20: 20px; 

    /* border-color */
    --border-color-1: #999;
    --border-color-2: #1a1a1a;

    /* text-color */
    --text-color-1: #111d25;
    --text-color-hover: rgba(92, 92, 92, 0.7);


    /* font-size */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.5rem;
    /* 56px */
    --text-7xl: 4rem;
    /* 64px */
    --text-8xl: 4.375rem;
    /* 70px */
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button,
input,
textarea,
a {
    cursor: pointer;
    outline: none;
    background: 0 0;
    text-decoration: none;
    font-weight: 500;
    font-weight: 500;
}

button:focus,
input:focus,
textarea:focus,
a:focus,
input::placeholder,
textarea::placeholder {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    font-size: var(--text-lg);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height); 
}

img {
    vertical-align: middle;
}



body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    direction: var(--direction);
    overflow-x: hidden !important;
    position: relative;
}


/* button */
/* bnt-public */
.btn, 
button[type=submit]{
    text-transform: capitalize;
    cursor: pointer;
    overflow: hidden;
    line-height: 1;
    padding: 0.75rem 2.5rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-size: var(--text-sm);
	border: none;
	outline: none;
	font-weight: 700;
	border-radius: var(--border-radius10);
	display: flex;
    align-items: center;
    justify-content: center;
}

.btn img{
	margin-left: 0.5rem;
}

.btn--primary{
	background-color: var(--primary-color);
	color: var(--baseLight-color);
}

.btn--white{
	background-color: var(--baseLight-color);
	color: #0B4974;
}

.btn--secondary{
	background-color: var(--secondary-color);
	color: var(--baseLight-color);
}
/* bnt-public */


/* input */
form textarea,
form input[type=email],
form input[type=text],
form input[type=search],
form input[type=number],
form input[type=tel],
form textarea {
    text-align: left;
    width: 100%;
    padding:1rem 0.75rem;
    background-color: var(--baseLight-color);
	border-radius: var(--border-radius10);
    border: none;
}

form input[type=search]::placeholder,
form input[type=email]::placeholder,
form input[type=text]::placeholder,
form input[type=number]::placeholder,
form input[type=tel]::placeholder,
form textarea::placeholder {
	color: #7F8386;
	font-family: Nunito;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background: var(--primary-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: none;
}
/* 
form input[type=submit] {
    margin-block-start: 0;
    color: var(--baseLight-color);
    background-color: var(--text-color-1);
    border:1px solid var(--text-color-1);
    padding: 16px 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
	transition: all .2s;
	font-family: var(--font-family-Lato);
	text-transform: uppercase;
	font-weight: 700;
} */

/* form input[type=submit]:hover{
	background-color: var(--baseLight-color);
	color: var(--text-color-1);
} */

/* clears the ‘X’ from Internet Explorer */
/* input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
} */

/* clears the ‘X’ from Chrome */
/* input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
} */

/* input */


/* breadcrumb */
.breadcrumb--container .title {
    line-height: var(--line-height150);
}

.breadcrumb--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 40%;
    padding-block-start: 1.5rem;
    margin-block-start: 5rem;
    position: relative;
    color: var(--baseLight-color);
    height: 100%;
}

.breadcrumb {
    color: var(--baseLight-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    margin-block-end: 2rem;
}

.breadcrumb li {
    font-size: var(--text-2xl);
    text-transform: capitalize;
}

.breadcrumb li:nth-child(even) {
    margin-inline: 0.25rem;
}

.breadcrumb li:last-child {
    font-weight: 500;
    color: var(--primary-color-2);
}

.breadcrumb li>a {
    margin-inline: 0.25rem;
}

/* breadcrumb */
/*********************
END: PUBLIC
*********************/

/*********************
START: HEADER
*********************/
header {
    position: fixed;
    z-index: 11;
    width: 100%;
    /* height: 140px; */
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    color: var(--text-color);
    transition: all 0.5s ease-in-out;
    padding-block: 1rem;
}

header.sticky{
	background-color:#0B4065;
	box-shadow: 0px 0px 7px 7px rgba(0, 0, 0, 0.7);
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header--items{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header--items a.btn--primary{
	margin-right: 1rem;  
}

/* header--logo */
.header--logo {
    width: 10%;
}

.header--logo img {
    width: 80%;
}

.header--designing__mobile {
    display: none;
}

.nav-icon {
    position: absolute;
    display: inline-block;
    top: 50%;
    right: 0;
    z-index: 100;
    transform: translateY(-50%);
    transition: transform 0.5s;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
    background-color: var(--baseLight-color);
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin: 5px 0;
    transition: all 0.2s ease-in-out;
}

.nav-icon.open:before {
    transform: translateY(6px) rotate(135deg);
    background-color: var(--baseLight-color);
}

.nav-icon.open:after {
    transform: translateY(-8px) rotate(-135deg);
    background-color: var(--baseLight-color);
}

.nav-icon.open div {
    transform: scale(0);
}

.darkpage {
    background-color: rgba(30, 54, 70, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    transition: opacity 1s linear;
}

/* header--nav */
.header--nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
	overflow-x: hidden;
}

.header--nav nav {
    width: 97%;
    margin-inline: 20px;
}

.header--nav .header--items nav>img {
    display: none;
}

.header--nav nav ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header--nav nav > ul > li {
    text-align: center;
    position: relative;
}

.header--nav nav > ul > li:not(:last-child){
	margin-inline-end: 1rem;
}

.header--nav nav > ul > li > a {
    color: var(--baseLight-color);
    position: relative;
    position: relative;
    width: 100%;
    display: block;
}

/*********************
END: HEADER
*********************/

/*********************
START: FOOTER
*********************/

footer {
    background-color: #0F334D;
    padding-block-start: 80px;
    color: var(--baseLight-color);
}

/* footer--up */
.footer--up>ul {
    display: flex;
    justify-content: space-between;
}

/* footer--up>ul>li:first-child */
.footer--up>ul>li:first-child {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer--up>ul>li:first-child>picture>img {
    width: 100%;
}

/* footer--up>ul>li:not(:first-child) */
.footer--up>ul>li:not(:first-child) {
    width: 37.5%;
}

.footer--up>ul>li:nth-child(even) {
    padding-inline: 50px;
    margin-inline: 50px;
    border-left: 1px solid var(--bg-color);
    border-right: 1px solid var(--bg-color);
}

.footer--up>ul>li .headerWidget h3 {
    font-size: var(--text-4xl);
    margin-block-end: 2rem;
}

.footer--up>ul>li:not(:first-child) .bodyWidget span {
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: var(--line-height);
}

/* footer--up>ul>li:nth-child(2) */
.footer--up>ul>li:nth-child(2) ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer--up>ul>li:nth-child(2) ul li {
    margin-block-end: 1.5rem;
    width: 49%;
}


/* footer--up>ul>li:nth-child(3) */
.footer--up>ul>li:nth-child(3) ul li {
    margin-block-end: 2rem;
}

.footer--up>ul>li:nth-child(3) ul li>img {
    margin-inline-end: 0.75rem;
}

/* footer--social */
.footer--social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: 1.5rem;
    padding-block-end: 1.5rem;
    border-bottom: 1px solid rgba(223, 234, 242, 0.5);
}

.footer--social>ul,
.footer--social>div {
    display: flex;
    align-items: center;
}

.footer--social>div span {
    margin-inline: 0.5rem;
}

.footer--social>div a {
    color: #C4C8CC;
    font-size: var(--text-lg);
}

.footer--social>ul>li:not(:last-child) {
    margin-inline-end: 1rem;
}

/* footer--down */
.footer--down {
    padding-block-end: 1.5rem;
    text-align: center;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
}

/*********************
END: FOOTER
*********************/

/*********************
START: container and its media
*********************/
/* container  */
.container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1320px 1fr;
    grid-template-areas: ". content .";
}

.container>* {
    grid-area: content;
}

@media screen and (min-width: 1920px) {
    .container {
        grid-template-columns: 1fr 1400px 1fr;
    }

    .consultation {
        width: 1500px;
        margin-inline: auto;
        border-radius: var(--border-radius15);
    }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .container {
        grid-template-columns: 1fr 1330px 1fr;
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .container {
        grid-template-columns: 1fr 1310px 1fr;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1319px) {
    .container {
        grid-template-columns: 1fr 1140px 1fr;
    }
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
    .container {
        grid-template-columns: 1fr 970px 1fr;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .container {
        grid-template-columns: 1fr 750px 1fr;
    }
}

@media screen and (max-width: 768px) {
    .container {
        grid-template-columns: 1fr 95% 1fr;
    }
}

/*********************
END: container and its media
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
 	.footer--up>ul>li .headerWidget h3 {
        font-size: var(--text-4xl);
    }

    .footer--up>ul>li:not(:first-child) .bodyWidget span {
        font-size: var(--text-xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
	.footer--up>ul>li .headerWidget h3 {
        font-size: var(--text-3xl);
    }

    .footer--up>ul>li:not(:first-child) .bodyWidget span {
        font-size: var(--text-lg);
    }

}

@media screen and (max-width: 1319px) {
	.header--nav nav > ul > li:not(:last-child){
		margin-inline-end: 0.5rem;
	}
	
	.header--items a.btn--primary {
    	margin-right: 0.5rem;
	}
	
	.footer--up>ul>li:nth-child(even) {
        padding-inline: 40px;
        margin-inline: 40px;
    }

    .footer--up>ul>li .headerWidget h3 {
        font-size: var(--text-3xl);
    }

    .footer--up>ul>li:not(:first-child) .bodyWidget span {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 1200px) {
	:root {
		--global-section-padding: 130px;
	}
	
	.header--nav nav > ul > li > a{
		font-size: var(--text-sm);
	}
	
    .footer--up>ul>li:nth-child(even) {
        padding-inline: 20px;
        margin-inline: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .header--right .header--menu .navigation {
        display: none;
    }
}

@media screen and (max-width: 992px) {
	:root {
		--global-section-padding: 100px;
	}
	
    .header--designing__mobile {
        display: block;
    }

    .darkpage.open {
        opacity: 1;
        visibility: visible;
        transition: opacity 1s linear;
    }

    .header--nav nav {
        position: fixed;
        top: 50px;
        right: -100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
        width: 60%;
		background-color: #0B4065;
        min-height: 350px;
        z-index: 100;
        transition: right 1s;
        margin: 0;
		border-top-left-radius: var(--border-radius10);
		border-top-right-radius: var(--border-radius10);
    }

    .header--nav .header--items nav>img {
        display: block;
        margin: 0 auto 2rem auto;
    }

    .header--nav nav.active {
        right: 0;
    }

    .header--nav nav > ul {
        flex-direction: column;
        justify-content: center;
    }

    .header--nav nav > ul > li {
        margin-left: 0;
        margin-block-end: 1rem;
        width: 100%;
    }

    .header--logo {
        width: 16%;
    }
	
	.header--logo img {
   	 	width: 100%;
	}
		
	.header--items{
		margin-inline-end: 2.5rem;
	}
	
    .footer--up>ul>li:not(:first-child) .bodyWidget span {
        font-size: var(--text-base);
    }

    .footer--up>ul>li .headerWidget h3 {
        font-size: var(--text-2xl);
    }

    .footer--up>ul>li:nth-child(even) {
        padding-inline: 10px;
        margin-inline: 10px;
    }

    .footer--up>ul>li:not(:first-child) {
        width: 40%;
    }

    .footer--up>ul>li:nth-child(3) ul li>img {
        margin-inline-end: 0.25rem;
    }

    .footer--up>ul>li:first-child {
        width: 20%;
    }		
}

@media screen and (max-width: 768px) {
	:root {
		--global-section-padding: 80px;
	}
	
    .header--menu__content.active {
        width: 270px;
    }

    .menu--container nav>ul>li>a {
        font-size: var(--text-lg);
    }

	.footer--up>ul{
        flex-wrap: wrap;
        justify-content: center
    }

    .footer--up>ul>li:first-child {
        width: 50%;
        margin-block-end: 2rem;
    }

    .footer--up>ul>li:nth-child(even) {
        padding-inline: 0;
        margin-inline: 0 16px;
    }

    .footer--up>ul>li:not(:first-child) {
        width: 48%;
        border-radius: var(--border-radius15);
        border: 1px solid var(--bg-color);
    }

    .footer--up>ul>li:not(:first-child) .bodyWidget span {
        font-size: var(--text-base);
    }

    .footer--up>ul>li .headerWidget h3{
        padding: 0.75rem 0.75rem;
        border-top-right-radius: 13px;
        border-top-left-radius: 13px;
        background-color: var(--primary-color);
    }

    .footer--up>ul>li .bodyWidget {
        padding-inline: 1rem;
    }

    .footer--up>ul>li:nth-child(3) ul li>img {
        width: 1.25rem;
    }

    .footer--social>ul>li a img{
        width: 2rem;
    }

    .footer--social>ul>li:not(:last-child) {
        margin-inline-end: 0.5rem;
    }

    .footer--social>div a {
        font-size: var(--text-base);
    }

}

@media screen and (max-width: 576px) {
	:root {
		--global-section-padding: 60px; 
	}
	
    .footer--up>ul>li:not(:first-child) {
        width: 100%;
    }

    .footer--up>ul>li:first-child{
        display: block;
    }

    .footer--up>ul>li:nth-child(even) {
        margin-inline: 0;
        margin-block-end: 2rem;
    }

    .footer--social>ul>li:not(:last-child) {
        margin-inline-end: 0.25rem;
    }

    .footer--social>ul>li a img{
        width: 1.75rem;
    }
	
}

@media screen and (max-width: 425px) {
	.header--logo {
        width: 20%;
    }
	
   	footer--social{
        flex-direction: column;
    }

    .footer--social>ul{
        margin-block-start: 1rem;
    }

    .footer--down{
        font-size: var(--text-base);
    }
	
}

@media screen and (max-width: 375px) {
  
	
}

/*********************
END: MEDIA
*********************/
@media screen and (max-width:990px){
	.sub-menu > li > a {
		color: #eee  !important;
	}
	.sub-menu {
		border: unset  !important;
		background: unset  !important;
	margin: auto;
		position:inherit  !important;
	}
	li.open > .sub-menu{
		display:block !important;
	}
}
.menu-item-has-children {
  overflow: visible;
}
.sub-menu {
    display: none !important;
	border: 1px solid #fff;
	background: #eee;
	border-radius: 4px;
	padding: 15px;
	position: fixed;
  	width: fit-content !important;
}
li:hover > .sub-menu{
	display:block !important;
}
.sub-menu > li > a {
	color: #333;
}
.sub-menu > li {
	padding: 10px 0;
}