:root{
    --primary--color: #F5F5DC;
    --secounddary--color: #D3D3D3;
    --black--color: #000000;
    --white--color: #ffffff;
    --section--padding: 60px 0px;
    --text--color: #5e5e5e;
}
body{
    font-family: 'Montserrat' !important;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 700;
}
p{
    color: var(--text--color);
    text-align: justify;
}
.ff__terms--section{
    padding: 40px 0px;
}
main{
    overflow: hidden;
}
/*Header Css Start*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 11;
    background-color: var(--black--color);
    padding: 15px 0;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.header__logo a svg {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;  
}
.header__logo a svg path{
    fill: var(--white--color);
}
.header__logo a {
    display: inline-block;
}
.header ul li{
    list-style: none;
}
.header ul li:not(:last-child) {
    padding-right: 30px;
}
.header ul li a{
    color:var(--white--color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .4s ease-in-out;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--black--color);
}
.header ul li a:hover{
    border-bottom: 2px solid var(--white--color);
    padding-bottom: 6px;
    transition: all .4s ease-in-out;
}
.ff__contact{
    margin-left: -10px;
}
.ff__contact a{
    color: var(--white--color) !important;
    padding: 10px 15px !important;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}
.ff__contact a:hover{
    padding: 10px 15px !important;
    border-bottom-color: var(--black--color)!important;
}
.ff__banner--section {
    margin-top: 95px;
    position: relative;
}
.ff__banner--section:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
    width: 100%;
    height: 100%;
}
.ff__banner--section .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.ff__contact a svg {
    margin-right: 10px;
}
#menu-main-menu{
    padding-left: 0px;
}
.toggle__menu {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    width: 35px;
    height: auto;
    line-height: 0.7;
    cursor: pointer;
    display: none;
}
.toggle__menu span {
    background-color:var(--white--color);
    width: 100%;
    height: 3px;
    display: inline-block;
    border-radius: 8px;
}
.toggle__menu.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggle__menu.open span:nth-child(2) {
    display: none;
}
.toggle__menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: -11px;
}
.menu-item.active a {
    border-bottom-color: #ffffff !important;
    padding-bottom: 6px !important;
}
@media(max-width:1199px){
    .header ul li a{
        font-size: 14px;
    }
    .header ul li:not(:last-child){
        padding-right: 14px;
    }
    .ff__contact{
        padding-left: 0px;
    }
}
@media (max-width: 991px) {
.header {
    z-index: 99;
}
.header ul li a {
    color: #ffffff;
}
.header.fixed {
    padding: 20px 0;
}
.toggle__menu {
    display: block;
    z-index: 9;
}

.header__menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: var(--black--color);
    padding: 30px;
}
.header__menu ul {
    margin: 0;
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: calc(100vh - 100px);
}
.header__menu ul li a {
    font-size: 24px;
}
.header__menu ul li:not(:last-child) {
    padding: 0;
    margin: 0 0 20px;
}
.header ul li a{
    border-bottom: 0;
}
.toggle__menu.open span{
background-color: var(--white--color);
}
#menu-main-menu{
    justify-content: center !important;
}
}
@media (max-width: 767px) {
    .header .col-md-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 80%;
              flex: 0 0 80%;
      max-width: 80%;
    }
    .header .col-md-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
      max-width: 20%;
    }
   
    .header__menu ul li a{
        font-size: 20px;
    }
    .header__logo {
        position: relative;
        z-index: 1;
    }
  }

/*Banner Section css Start*/
.fullpage__intro-video {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    object-fit: cover;
}
.slide-section{
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
.ff__bnner--text {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.slide-section.page3 {
    transform: scaleX(-1);
}
.slide-section.page3 .ff__section--text{
    transform: scaleX(-1);
}
.ff__bnner--text h1{
    text-align: left;
    color: var(--white--color);
    font-weight: 500;
    font-size: min(max(4.2vw,36px),110px);
    line-height: .95;
    letter-spacing: -.04em;
    text-transform: capitalize;
}
.ff__bnner--text p{
    color: var(--white--color);
}
.ff__banner--section .ff__btn, .portfoliobanner .ff__btn {
    border-color: var(--white--color);
}
.ff__banner--section .ff__btn a, .portfoliobanner .ff__btn a {
    color: var(--white--color);
}
.ff__btn{
    width:170px;
    height:50px;
    border:2px solid var(--black--color);
    text-align:center;
    cursor:pointer;
    position:relative;
    box-sizing:border-box;
    overflow:hidden;
  }
  .ff__btn a{
    width:170px;
    height:50px;
    font-family: 'Montserrat';
    font-size:16px;
    color:var(--black--color);
    text-decoration:none;
    line-height:45px;
    transition:all .5s ease;
    z-index:2;
    position:relative;
  }
  .ff__btn--effect{
    width:170px;
    height:50px;
    bottom:-50px;
    background:var(--black--color);
    position:absolute;
    transition:all .5s ease;
    z-index:1;
  }
  .ff__btn:hover .ff__btn--effect{
    bottom:0;
  }
  .ff__btn:hover a{
    color:#fff;
  }
  
/*======================
WHAT WE DO SECTION
======================*/
.what-we-do {
    padding: 100px 250px;
    background: #e8e0cc;
}

.what-we-do-content {
    display: flex;
    justify-content: center;
    gap: 80px
}

.what-we-do__heading {
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.what-we-do-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 517px;
}

.what-we-do-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.what-we-do-item-heading-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border: 3px solid #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.what-we-do-item__heading {
    margin: 0;
    font-size: 18px;
}

.what-we-do-item__text {
    color: #000;   
    font-size: 30px;
}

.what-we-do-divider {
    width: 70px;
}

.what-we-do-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.what-we-do-list__text {
    color: #000;
    max-width: 400px;
}

@media (max-width: 1446px) {
    .what-we-do {
        padding: 100px 100px;
    }
}

@media (max-width: 1140px) {
    .what-we-do {
        padding: 100px 60px;
    }
}

@media (max-width: 1026px) {
    .what-we-do {
        padding: 100px 40px;
    }
    
    .what-we-do-item__text {
        font-size: 18px;
    }
}

@media (max-width: 952px) {
    .what-we-do {
        padding: 100px 30px;
    }
    
    .what-we-do-list {
        margin-top: 0px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .what-we-do-divider {
        display: none;
    }
}

@media (max-width: 818px) {
    .what-we-do-content {
        flex-direction: column;
        /*align-items: center;*/
    }
    
    .what-we-do-item__text {
    color: #000;   
    font-size: 25px;
}
    
}

@media (max-width: 482px) {
    .what-we-do-item__text {
        font-size: 16px;
    }
}

/*======================
SLIDE SECTION
======================*/
.slide-section.page3 .ff__top--text h6,
.slide-section.page3 .ff__section--text h2,
.slide-section.page3 .ff__top--text strong{
    color: var(--white--color) !important;
}
.slide-section.page3 .ff__top--text strong{
    border-bottom-color: var(--secounddary--color);
}

.slide-section.page3 .ff__section--text p{
    color: var(--secounddary--color);
}
  /*secound section css*/
.slide-section.page2,.slide-section.page3,.slide-section.page4 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.ff__section--text{
    position: relative;
    width: 100%;
    max-width: 550px;
}
.ff__top--text {
    margin-bottom: 30px;
    position: relative;
}
.ff__top--text  strong {
    font-size: 40px;
    display: block;
    border-bottom: 1px solid var(--black--color);
    padding-bottom: 10px;
}
.ff__section--text h2{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 40px;
}
.ff__top--text h6 {
    margin-top: 20px;
    font-size: 20px;
    text-transform: capitalize;
    
    border-bottom: 1px solid var(--black--color);
    padding-bottom: 10px;
}

.ff__top--text h6.border-white {
    border-bottom: 1px solid var(--secounddary--color);
}
/*Footer Css*/
.ff__footer .ff__footer--logo svg {
    width: 180px;
    height: auto;
}
.ff__footer .ff__footer--logo svg path{
    fill: var(--white--color);
}
.ff__footer {
    background: #000000;
    padding: 30px 0px 20px;
}
.footer--links li{
    list-style: none;
    padding-left: 20px;
}
.footer--links li a{
    color: var(--white--color);
    text-decoration: none;
    transition: all .4s ease-in-out;
    padding: 5px 8px;
}
.footer--links li a:hover{
    color: var(--black--color);
    transition: all .4s ease-in-out;
    background-color: var(--primary--color);
}
.ff__footer  .row{
    border-bottom: 1px solid var(--secounddary--color);
    padding-bottom: 20px;
}
.ff__copyright-text p {
    margin-bottom: 0px;
    margin-top: 20px;
    color: var(--secounddary--color);
}
@media(max-width:1199px){
    .footer--links li {
        padding-left: 10px;
    }
}
@media(max-width:991px){
    .footer--links li {
        padding-left: 10px;
    }
    .ff__footer .col-md-3, .ff__footer .col-md-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ff__footer .col-md-3{
        text-align: center;
        margin-bottom: 15px;
    }
   
}
@media(max-width: 767px){
    .ff__section--text h2{
        font-size: 26px;
    }
    .footer--links li{
        margin-bottom: 10px;
    }
    .slide-section.page2, .slide-section.page3, .slide-section.page4{
        background-position: left;
    }
}
.web__inner--banner {
    margin-top: 100px;
    padding: 80px 0;
    background:var(--primary--color);
}
.ff__terms--text h2{
    margin-bottom: 10px;
}
.ff__terms--text h6,.ff__terms--text h5{
    margin-bottom: 10px;
    font-weight: 600;
}
.ff__terms--text ul{
    padding-left: 20px;
}
.ff__terms--text ul li{
    margin-bottom: 5px;
}
.ff__terms--text a{
    font-weight: 600;
    color: var(--black--color);
    text-decoration: none;
}
.ff__terms--text{
    font-size: 14px;
}
/*Firm Page Css*/
.ff__firm--section {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0px;
    background-position: center center;
    margin-top: 95px;
}

.ff__firm--section .ff__firm--text p{
 color: var(--black--color);
}
.ff__firm--section .ff__firm--text h1{
    font-size: 40px;
    line-height: 50px;
    font-family: 'Montserrat';
}
.ff__firm--whoweare {
    overflow: hidden;
}
.ff__firm--whoweare .container-fluid{
    padding: 0;
}
.ff__whweare--img {
    height: 100%;
}
.ff__whweare--img img {
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.ff__whoweare--text {
    height: 100%;
    padding: 5vw 3vw;
}
.ff__build--section{
    padding: 150px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.ff__build--section:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}
.ff__build--section .ff__build--text{
    position: relative;
    z-index: 2;
}
.ff__build--section .ff__build--text h4{
    font-size: 44px;
    line-height: 60px;
    color: var(--white--color);
    max-width: 900px;
    
}
.ff__why--foris{
    padding: var(--section--padding);
    background-color: #f4f4f4;
}
.ff__why--box{
    background-color: #ffffff;
    padding: 50px 25px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 1%);
    border: 2px dashed var(--white--color);
    transition: all .4s ease-in-out;
    min-height: 265px;
}
.why--icon svg {
    width: 60px;
}
.why--icon {
    text-align: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.why--icon:before{
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed var(--black--color);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%,-50%)
}
.ff__why--box:hover{
    border: 2px dashed var(--black--color);
    transition: all .4s ease-in-out;
}
.ff__why--box:hover .why--icon:before{
    -webkit-animation: rotation 10s infinite linear;
}
.box2 svg .cls-2{
    fill: #000000;
}
@-webkit-keyframes rotation {
    from {
            -webkit-transform: translate(-50%,-50%)rotate(0deg);
    }
    to {
            -webkit-transform: translate(-50%,-50%)rotate(359deg);
    }
}
.ff__why--box h5{
    text-align: center;
    font-size: 18px;
    max-width: 74%;
    margin: 0 auto;
    margin-top: 15px;
}
.why--fortis--title{
    margin-bottom: 30px;
}
.ff__prrtfolio--img {
    background-color: var(--white--color);
    height: 220px;
    width: 220px;
    border: 2px solid #dfdfdf;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all .4s ease-in-out;
    box-shadow: 0 2px 15px 0 rgb(223 223 223 / 16%), 0 2px 15px 0 rgb(223 223 223 / 12%);
}
.ff__prrtfolio--img:hover{
    border: 2px dashed #dfdfdf;
    transition: all .4s ease-in-out;
}
.ff__prrtfolio--img img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
}
.ff__portfolio--images{
    padding: 60px 0px;
}
@media(max-width:767px){
    .ff__portfolio--images .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .ff__prrtfolio--img {
        height: 160px;
        width: 160px;
    }
}
.ff__contact--banner{
    position: relative;
}
.ff__contact--banner:before{
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
 background-color: rgba(0,0,0,.5);
}
.ff__contact--banner h1 {
    color: var(--white--color);
    position: relative;
    z-index: 1;
}
.ff__contact--section{
        padding: var(--section--padding);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left;
}
.form--row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.form--row .form-group {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}
.form-group label {
    display: block;
}
.ff__contact--form .form-group input {
    border: none;
    background-color: #e5e5e5;
    border-radius: 0;
    padding: 11px 15px;
    position: relative;
    z-index: 1;
}
.ff__contact--form .form-group input:focus,
.ff__contact--form .form-group textarea{
    outline: none;
}
.ff__contact--form .form-group textarea{
    width: 100%;
    border: none;
    background-color: #e5e5e5;
    border-radius: 0;
    padding: 10px 15px;
    resize: none;
}
.ff__contact--img,.ff__contact--img img{
    height: 100%;
    object-fit: cover;
}
.ff__form--btn button {
    background-color: var(--black--color);
    color: var(--white--color);
    border: 2px solid var(--black--color);
    transition: all .4s ease-in-out;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
}
.ff__form--btn button:hover {
    background-color: transparent;
    color: var(--black--color);
}
.ff__contact--img{
    display: none;
}
.porfolio--title{
    padding: 0 15px;
    margin-bottom: 15px;
}
.porfolio--title h3{
    font-size: 22px;
}
.alert-black {
    color: #ffffff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}
.notfound .title {
    font-size: 80px;
    margin: 50px 0;
    text-align: center;
}
@media(max-width:1199px){
    .ff__contact--section{
        background-image: inherit !important;
        background-color: var(--primary--color);
    }
    .ff__contact--img{
        display: block;
    }
}
@media(max-width:1024px){
    .slide-section.page2, .slide-section.page3, .slide-section.page4{
        background-position: left;
        height: 100%;
        padding: 40px 0px;
    }
    .ff__section--text{
        max-width: 490px;
    }
    .ff__why--box{
        min-height: 250px;
        padding: 50px 0px;
    }
}
@media(max-width:991px){
    .ff__contact--section .col-md-6{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ff__contact--form{
        margin-top: 30px;
    }
    .slide-section{
        height: 100%;
        padding: 30px 0px;
    }
    .ff__banner--section{
        margin-top: 85px;
    }
    .ff__section--text{
        max-width: 100%;
    }
}
