/*****************************************************************
1.  Homepage

******************************************************************/
:root{
	--primary: #E67225;
	--secondary: #030511;
    --gray-neutral-50: #F8FAFC;

	--heading-1: 72px;
	--heading-2: 40px;
	--heading-3: 34px;
	--heading-4: 28px;
	--heading-5: 24px;
	--heading-6: 20px;

	--fw-300: 300;
	--fw-400: 400;
	--fw-700: 700;
	--fw-900: 900;

	--body-font-size: 18px;

	--ease-transition: all 0.4s ease-in-out;
}
@font-face {
    font-family: "FrutigerLTStd";
    src: url("fonts/FrutigerLTStd-Light.woff2") format("woff2"),
       url("fonts/FrutigerLTStd-Light.woff") format("woff"),
       url("fonts/FrutigerLTStd-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "FrutigerLTStd";
    src: url("fonts/FrutigerLTStd-Roman.woff2") format("woff2"),
       url("fonts/FrutigerLTStd-Roman.woff") format("woff"),
       url("fonts/FrutigerLTStd-Roman.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "FrutigerLTStd";
    src: url("fonts/FrutigerLTStd-Bold.woff2") format("woff2"),
       url("fonts/FrutigerLTStd-Bold.woff") format("woff"),
       url("fonts/FrutigerLTStd-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "FrutigerLTStd";
    src: url("fonts/FrutigerLTStd-Black.woff2") format("woff2"),
       url("fonts/FrutigerLTStd-Black.woff") format("woff"),
       url("fonts/FrutigerLTStd-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body{
	margin: 0;
    font-family: "FrutigerLTStd";
    font-size: var(--body-font-size);
    font-weight: var(--fw-400);
    line-height: 28px;
    color: var(--gray-neutral-50);
    background-color: var(--secondary);
}
h1, h2, h3, h4, h5, h6{
	color: var(--gray-neutral-50);
    margin: 0;
}
h1{
	font-size: var(--heading-1);
	line-height: normal;
	font-weight: var(--fw-700);
}
h2{
	font-size: var(--heading-2);
	line-height: normal;
	font-weight: var(--fw-700);
    color: var(--body-text-color);
}
h3{
	font-size: var(--heading-3);
	line-height: normal;
	font-weight: var(--fw-700);
    color: var(--black);
}
h4{
	font-size: var(--heading-4);
	line-height: normal;
	font-weight: var(--fw-700);
}
h5{
	font-size: var(--heading-5);
	line-height: normal;
	font-weight: var(--fw-700);
}
h6{
	font-size: var(--heading-6);
	line-height: 22px;
	font-weight: var(--fw-700);
}
.container{
    max-width: 1328px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.row>*{
    padding-left: 15px;
    padding-right: 15px;
}
img{
    max-width: 100%;
    vertical-align: middle;
}
.col-3{
    flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    max-width: 25%;
}
.col-4{
    flex: 0 0 33.33333333%;
    -webkit-flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}
.col-5{
    flex: 0 0 40%;
    -webkit-flex: 0 0 40%;
    max-width: 40%;
}
.col-6{
    flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    max-width: 50%;
}
.col-7{
    flex: 0 0 60%;
    -webkit-flex: 0 0 60%;
    max-width: 60%;
}
.col-8{
    flex: 0 0 66.66666667%;
    -webkit-flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
}
.col-12{
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    max-width: 100%;
}
.col{
    flex: 1 0 0%;
    -webkit-flex: 1 0 0%;
    max-width: 100%;
}

.align-items-center{
    align-items: center;
    -webkit-align-items: center;
}
.justify-content-center{
   justify-content: center; 
   -webkit-justify-content: center; 
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.text-white{
    color: #fff;
}
.primary-color{
    color: var(--primary);
}
.py-80{
    padding-top: 80px;
    padding-bottom: 80px;
}
.mb-40{
    margin-bottom: 40px;
}
.m-0{
    margin: 0;
}

/* Header CSS */
.header{
    background-color: rgba(0,0,0,0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.custom-dropdown{
    position: relative;
    display: inline-block;
    padding-top: 12px;
}
.dropdown-selected{
    cursor: pointer;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    gap: 10px;
}
.dropdown-options{
    list-style-type: none;
    position: absolute;
    width: 100%;
    display: none;
    z-index: 999;
    margin: 0;
    background-color: #031016;
    border: 1px solid #1e293b;
    padding: 8px 12px;
    border-radius: 4px;
}
.dropdown-selected .arrow{
    padding-bottom: 5px;
    height: 15px;
    transition: all 350ms ease-in-out;
}
.dropdown-selected .arrow svg{
    vertical-align: text-top;
}
.custom-dropdown.open .dropdown-selected .arrow{
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

/* Hero Section */
.hero_section{
    background-image: url('images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    min-height: 750px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.hero_section::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 4, 16, .65);
    z-index: -1;
}
.hero_section::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg,rgba(1, 3, 14, 1) 0%, rgba(2, 4, 16, 0) 86%);
    z-index: -1;
}
.hero_section h1{
    margin: 4px 0 10px;
}
.hero_section p{
    max-width: 790px;
    margin: 0 auto;
}

/* Unique Section */
.unique_box{
    background-color: rgba(255,255,255,0.02);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    min-height: 208px;
    position: relative;
}
.unique_box>span{
    width: 54px;
    height: 54px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.unique_box p{
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.unique_block,
.service_block{
    row-gap: 30px;
}

/* Services Section */
.service_box{
    background-color: rgba(255,255,255,0.02);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    min-height: 185px;
    position: relative;
}
.gradient_hover::before{
    content: "";    
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(318deg,rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 48%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: all 300ms ease-in-out;
}
.gradient_hover:hover::before{
    background: linear-gradient(318deg,rgba(254, 89, 44, 1) 0%, rgba(0, 0, 0, 1) 48%, rgba(254, 89, 44, 1) 100%);
}
.service_box>span{
    width: 54px;
    height: 54px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 0 0 20px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.service_box p{
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.gradient_hover:hover p{
    color: var(--primary);
}
.gradient_hover:hover span img{
  filter: brightness(0) saturate(100%) invert(53%) sepia(79%) saturate(1566%) hue-rotate(346deg) brightness(92%) contrast(88%);
  -webkit-filter: brightness(0) saturate(100%) invert(53%) sepia(79%) saturate(1566%) hue-rotate(346deg) brightness(92%) contrast(88%);
}
/* Footer Section */
.footer .footer-top{
    background-image: url('images/footer-bg.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 70px 0;
}
.footer .footer-top::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: -1;
}
.foot_top_area{
    margin: 0 0 30px;
}
.foot_top_area p{
    margin: 30px 0 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.footer-top ul{
    padding: 0;
    margin: 0;
}
.footer-top ul li{
    display: block;
}
.address_info ul li:not(:last-child){
    margin-bottom: 6px;
}
.address_info li>a{
    display: flex;
    display: -webkit-flex;
    gap: 10px;
    width: max-content;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.address_info li>a:hover{
    text-decoration: underline;
}
.inquery_block>li:not(:last-child){
    margin-bottom: 10px;
}
.inquery_block>li>a{
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    min-width: 235px;
    width: max-content;
    margin: 0 auto;
}
.copyright{
    padding: 14px 0;
}
.copyright p{
    margin: 0;
    font-size: 14px;
}

@media screen and (min-width: 992px) and (max-width: 1199px){
    .col{
        flex: 0 0 25%;
        -webkit-flex: 0 0 25%;
        max-width: 25%;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    h1{
        font-size: 50px;
    }
    .col-3,
    .col{
        flex: 0 0 33.33%;
        -webkit-flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .hero_section{
        min-height: 580px;
    }
}

@media screen and (max-width: 767px){
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 30px;
    }
    .mb-40{
        margin-bottom: 20px;
    }
    .py-80{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8{
        flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        max-width: 100%;
    }
    .col-3,
    .col{
        flex: 0 0 50%;
        -webkit-flex: 0 0 50%;
        max-width: 50%;
    }
    .header .col-8{
        flex: 0 0 66.66666667%;
        -webkit-flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }
    .header .col-4{
        flex: 0 0 33.33333333%;
        -webkit-flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
    .hero_section{
        min-height: 580px;
    }
    .inquery_block>li>a{
        margin-left: 0;
    }
    html[dir="rtl"] .inquery_block>li>a{
        margin-right: 0;
        margin-left: auto;
    }
    .footer-top .inquery_block{
        margin-top: 30px;
    }
    .footer .footer-top{
        background-position: center;
        padding: 40px 0;
    }
}

@media screen and (max-width: 575px){
    .col-3,
    .col{
        flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        max-width: 100%;
    }
    .unique_box,
    .service_box{
        min-height: auto;
    }
    .service_box>span{
        margin: 0 auto 20px;
    }
    .service_box p{
        text-align: center;
    }
    .d-sm-none{
        display: none;
    }
    .unique_block, 
    .service_block{
        row-gap: 15px;
    }
}