@font-face {
    font-family: Montserrat;
    src: url("../../font/Montserrat-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}
body{
    margin: 0;
}
img{
    width: 100%;
}
/* menu style  */
.menu_outer{
    font-family: Montserrat;
}
.menu_outer a{
    text-decoration: unset;
}
.menu_open .menu_outer{
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #31343900;
    z-index: 1111;
}
.logo{
    width: 105px;
    padding: 11px 13px 6px;
    background: #ef0d33;
    display: block;
    position: fixed;
    top: 0;
    left: 30px;
    z-index: 1;
    box-shadow: 0px 2px 19px 9px rgba(239, 13, 51, 0.1);
}
.menu_outer .logo img{
    width: 105px;
    height: 24px;
    object-fit: cover;
}
.menu_open .menu_outer>.logo, .detail_open .menu_outer>.logo{
    display: none;
}
.menu_btn_wrap{
    background: #ef0d33;
    border-radius: 3px;
    box-shadow: 0px 2px 19px 9px rgba(239, 13, 51, 0.08);
    color: #fff;
    position: fixed;
    top: 20px;
    right: 40px;
    cursor: pointer;
    font-size: 0;
    z-index: 1000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 1px;
}


.menu_btn_wrap .ripple{
    display: inline-block;
    vertical-align: middle;
}
.ripple{
    position: relative;
    overflow: hidden;
}
.call_icon{
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 30px;
    background: url(../images/phone-receiver.png) no-repeat center;
    background-size: 15px;
    cursor: pointer;
    border-right: 1px solid rgba(197, 11, 42, 0.4);
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.ripple:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-transform: scale(10, 10);
    -moz-transform: scale(10, 10);
    -ms-transform: scale(10, 10);
    -o-transform: scale(10, 10);
    transform: scale(10, 10);
    opacity: 0;
    -webkit-transition: transform .5s, opacity 1s;
    -moz-transition: transform .5s, opacity 1s;
    -ms-transition: transform .5s, opacity 1s;
    -o-transition: transform .5s, opacity 1s;
    transition: transform .5s, opacity 1s;
}
.menu_btn_wrap .ripple{
    display: inline-block;
    vertical-align: middle;
}
.menu_icon{
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 30px;
    background-size: 25px;
    cursor: pointer;
}
#nav-icon3{
    width: 15px;
    height: 45px;
    position: relative;
    margin: 9px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon3 span{
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}
#nav-icon3 span:nth-child(1){
    top: 0px;
}
#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3){
    top: 6px;
}
#nav-icon3 span:nth-child(4){
    top: 12px;
}
.menu_wrapper{
    height: 100%;
    display: none;
}
.menu_icon:hover, .call_icon:hover{
    background-color: #d60c2e;
}
.menu_open .menu_wrapper{
    display: block;
    animation: fadeIn 1s;
    z-index: 10;
}
.menu_open #nav-icon3 span:nth-child(1), .detail_open #nav-icon3 span:nth-child(1){
    top: 6px;
    width: 0%;
    left: 50%;
}
.menu_open #nav-icon3 span:nth-child(2), .detail_open #nav-icon3 span:nth-child(2){
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu_open #nav-icon3 span:nth-child(3), .detail_open #nav-icon3 span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menu_open #nav-icon3 span:nth-child(4), .detail_open #nav-icon3 span:nth-child(4){
    top: 6px;
    width: 0%;
    left: 50%;
}
.menu_open .call_icon{
    width: 0;
    padding: 0;
    border: none;
}
.menu_wrapper.open .menu_links_wrap{
    right: 0%;
}
h4.main_head{
    font-size: 50px;
    font-weight: bolder;
    color: #ebebeb;
    margin: 0px;
    line-height: 60px;
    margin-top: 20px;
}
.menu_links_wrap>ul{
    margin: 15px 0;
    list-style: none;
    padding: 0 30px 0px 0px;
    border-bottom: 1px solid #ebebeb;
}
.menu_open .menu_links_wrap ul li{
    animation: menuSlideLeft 0.5s forwards;
    animation-delay: 0.5s;
}
.menu_links_wrap ul li{
    position: relative;
    opacity: 1;
}
.menu_wrapper{
    font-family: Montserrat;
}
.menu_links_wrap ul>li>a{
    color: #121315;
    padding: 9px 10px;
    display: block;
    font-size: 11px;
    margin: 0px 0px;
    font-weight: 600;
    font-family: Montserrat;
    border: 1px solid transparent;
}
.btm_icon:hover{
    background: #ebebeb;
}
.menu_links_wrap{
    position: absolute;
    right: -100%;
    top: 0px;
    bottom: 0;
    background: #f5f5f5;
    width: 24.5%;
    padding: 20px 30px;
    box-sizing: border-box;
    z-index: 1;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.menu_icons_wrap{
    display: flex;
    flex-wrap: wrap;
}
.menu_icons_wrap a{
    width: 33%;
    display: inline-block;
    vertical-align: top;
}
.btm_icon{
    font-weight: 800;
    text-align: center;
    width: 100%;
    cursor: pointer;
    margin: 5px 0px;
    padding: 5px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 5px;
}
.menu_links_wrap ul>li:hover>a, .menu_links_wrap ul>li.active>a{
    background-color: white;
    color: #ef0d33;
}
.btm_icon .icon{
    width: 40px;
    height: 40px;
    margin: 5px auto 0px;
    background: white;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    background: url("../images/ai.png") no-repeat center;
    background-size: contain;
}
.menu_icons_wrap a:nth-child(3) .btm_icon .icon{
    background: url("../images/blockchain.png") no-repeat center;
}
.btm_icon p{
    color: #777;
    font-size: 10px;
    line-height: 12px;
    margin: 5px 0px 0px;
    height: 28px;
    overflow: hidden;
}
.page_links{
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    background-color: #ebebeb;
    padding: 20px 0;
    overflow: hidden;
}
.page_links::before{
    content: '';
    position: absolute;
    width: 105%;
    height: 23px;
    border-radius: 50%;
    top: -22px;
    left: -5%;
    -webkit-box-shadow: 0 6px 6px -7px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0 6px 6px -7px rgba(0, 0, 0, 0.35);
    box-shadow: 0 6px 6px -7px rgba(0, 0, 0, 0.35);
}
.page_link_adjust{
    display: flex;
    display: -ms-flex;
    display: -mos-flex;
    display: -webkit-flex;
    justify-content: space-between;
    padding: 0 8%;
    flex-wrap: wrap;
}
.page_links_div{
    width: 48%;
    text-align: center;
    margin: 5px 0;
}
.page_links_div a{
    display: flex;
    align-items: center;
}
.page_links div:nth-child(1) .page_link_inner{
    background-image: url("../images/newblog.png");
}
.page_link_inner{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f8f8;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 10px 0 0;
}
.page_link_p{
    padding-top: 5px;
    text-align: left;
    color: #5b5b5b;
    font-size: 11px;
    font-weight: 800;
}
.page_links div:nth-child(1) .page_link_inner{
    background-image: url("../images/newblog.png");
}
.page_links div:nth-child(2) .page_link_inner{
    background-image: url("../images/newwhite_paper.png");
}
.page_links div:nth-child(3) .page_link_inner{
    background-image: url("../images/newindustry.png");
}
.page_links div:nth-child(4) .page_link_inner{
    background-image: url("../images/play.png");
}
.page_links div:nth-child(6) .page_link_inner{
    background-image: url("../images/gallery.png");
    opacity: 0.6;
}
@media only screen and (max-width: 4000px) and (min-width: 1452px) {
    .menu_links_wrap{
        padding: 1.28vw 1.92vw;
        box-shadow: 0px 0px 0.96vw 0.064vw rgb(0 0 0 / 10%);
    }
    h4.main_head{
        font-size: 3.2vw;
        line-height: 3.84vw;
        margin-top: 2.56vw;
    }
    .menu_links_wrap>ul{
        padding: 0 1.92vw 0px 0px;
    }
    .menu_links_wrap ul>li>a{
        padding: 0.6vw 0.64vw;
        font-size: 0.7vw;
    }
    .btm_icon{
        margin: 0.32vw 0px;
        padding: 0.32vw;
        padding-top: 0.32vw;
    }
    .btm_icon .icon {
        width: 2.56vw;
        height: 2.56vw;
        margin: 0.32vw auto 0px;
    }
    .btm_icon p{
        font-size: 0.64vw;
        line-height: 0.76vw;
        margin: 0.32vw 0px 0px;
        height: 2.56vw;
    }
    .page_links{
        padding: 1.28vw 0;
    }
    .page_links::before{
        height: 1.47vw;
        top: -1.41vw;
    }
    .page_links_div{
        margin: 0.32vw 0;
    }
    .page_link_inner {
        width: 2.56vw;
        height: 2.56vw;
        margin: 0 0.64vw 0 0;
    }
    .page_link_p {
        padding-top: 0.32vw;
        font-size: 0.70vw;
    }
    .call_icon{
        width: 3.2vw;
        height: 2.1vw;
    }
    .menu_icon{
        width: 3.2vw;
        height: 2.1vw;
        background-size: 1.6vw;
    }
    #nav-icon3{
        width: 0.96vw;
        height: 2.8vw;
        margin: 0.57vw auto;
    }
    #nav-icon3 span{
        height: .13vw;
    }
    #nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3){
        top: 0.38vw;
    }
    #nav-icon3 span:nth-child(4){
        top: 0.76vw;
    }
    .call_icon{
        background-size: 0.96vw;
    }
    .menu_btn_wrap{
        border-radius:  0.19vw;
        top: 1.28vw;
        right: 2.56vw;
    }
    .menu_outer .logo img{
        width: 6.73vw;
        height: 1.53vw;
    }
    .logo{
        width: 6.7vw;   
        padding: 0.7vw 0.83vw 0.64vw;
        left: 1.92vw;
    }
    
}
@media only screen and (max-width: 768px){
    .menu_links_wrap{
        width: 50%;
    }  
}
@media only screen and (max-width: 578px){
    .menu_links_wrap{
        width: 100%;
    } 
}
@media only screen and (max-width: 425px){
    .logo{
        position: absolute;
        display: block;
        left: 14px;
    }
    .menu_btn_wrap{
        top: 15px;
        right: 15px;
    }
}
/* footer style */
footer{
    font-family: Montserrat;
}
section#footer_section{
    position: relative;
}
  .country-dropdown{
    outline: none;
  }

  
.country-dropdown .select-items{
    height: 166px;
    overflow: hidden;
    overflow-y: scroll;
}
.country-dropdown .select-items::-webkit-scrollbar {
    width: 5px;
  }

  .country-dropdown .select-items::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .country-dropdown .select-items::-webkit-scrollbar-thumb {
    background: #888;
  }

  .country-dropdown .select-items::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  #country_search{
    position: absolute;
    top: 5vw;
    color: black;
    background: white;
    z-index: 11111;
}
#country_search::placeholder{
    color: black;
}
.country-dropdown .select-items{
    top: 193%;
}
.hidden_flex .select-style{
    margin: 0 0 10px 0;
}
footer {
    background: #212121;
    padding: 3% 140px;
    display: flex;
    justify-content: space-between;
    /* background-image: url(../images/component.png); */
    /* height: 1080px;
    background-size: contain; */
}
.cookie-confirmation{
    z-index: 999999999999 !important;
    display: none;
    font-size: .7vw;
    position: fixed;
    top: auto!important;
    bottom: 0;
    color: white;
    z-index: 11111;
    background: #2d2d2dd1;
   
}
.cookie-confirmation.open{
 display: grid;
}

.cookie-confirmation p{
    width: 70%;
    padding: 12px 18px 18px;
    margin: 0;
}
.cookie-confirmation #cookie_agree:hover{
    background-color: #fff!important;
    color: #d03a00!important;
}

.cookie-confirmation #cookie_agree{
    position: absolute;
    right: 19%;
    top: 27%;
    cursor: pointer;
    background-color: #ef0d33!important;
    color: #fff!important;
    padding: 3px 13px!important;
    border: 2px solid #ef0d33!important;
    border-radius: 0!important;
    box-shadow: none;
    text-transform: uppercase;
    text-shadow: none!important;
    font-weight: 600!important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;

}
.input_wrap.foo-phone-field input{
    padding: 8px 0.6vw;
}
.input_wrap.foo-phone-field{
    display: grid;
    grid-template-columns: 5.5vw .3vw auto;
    gap: .4vw;
}
.foo-divider{
    margin-top: 36px;
}
#quote_country::placeholder {
    font-size: .73vw;
}
#quote_number::placeholder {
    font-size: .73vw;
}
.foo-number-field{
    margin-top: auto;
}
@media only screen and (max-width: 768px){
  
    .cookie-confirmation #cookie_agree{
        position: unset;
    }
    .cookie-confirmation{
        font-size: 1.2vw;
    }
    .cookie-confirmation p{
        width: unset;
        padding-bottom: 5px;
    }
    .cookie-confirmation a{
        position: unset;
        margin-left: auto;
        margin-right: auto;
        top: 0;
    }
}
@media only screen and (max-width: 500px){
  
    .cookie-confirmation{
        line-height: 1.8;
        font-size: 2.4vw;
    }
}
.select-style {
    margin-top: auto;
    margin-bottom: auto;
  }
  .select-style1 {
    margin: 0 0 10px 0;
  }
  
  .select-style select {
    display: none; 
  }
  .select-style1 select {
    display: none; /*hide original SELECT element:*/
  }
  .select-selected {
    background-color: #282828;
  }
  .agree_checkbox a{
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
  }
  #footer_section .right_wrap form{
      margin-top: 10px;
  }
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 2.5vw;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: rgba(255, 255, 255, 0.3) transparent transparent transparent;
  }
  
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent rgba(255, 255, 255, 0.3) transparent;
    top: 2vw;
  }
  .agree_checkbox{
    margin-top: 10px;
  }
  .select-items div,.select-selected {
    font-size: 13px;
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.3);
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
  }
  .same-as-selected, .same-as-selected1{
    border-left: 1px solid #ef0d33 !important;
  }
  .project-type .select-items {
    height: 166px;
    overflow: hidden;
    overflow-y: scroll;
  }
  .project-type .select-items::-webkit-scrollbar {
    width: 5px;
  }

  .project-type .select-items::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .project-type .select-items::-webkit-scrollbar-thumb {
    background: #888;
  }

  .project-type .select-items::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .select-items {
    position: absolute;
    background-color: #282828;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected, .same-as-selected1 {
    background-color: rgba(0, 0, 0, 0.1);
    border-left: 1px solid #ef0d33;
  }
  @media screen and (max-width: 1100px) and (min-width: 700px){
    .select-items div, .select-selected{
        font-size: 12px;
    }
  }
  @media only screen and (max-width: 700px) {
    .select-selected.select-arrow-active:after{
        top: 18px;
    }
    .select-items div, .select-selected{
        margin: 2% 0;
        font-size: 10px;
    }
    .select-selected:after{
        top: 26px;
    }
  }

.hidden_field{
    display: none;
}
#footer_error.show{
    opacity: 1;
}
.icon_wrap svg{
    width: 15px;
}
.icon_wrap svg:hover path{
    fill:#ef0d33;
    transition: 0.5s ease;
}
.bottom_sec .phone svg{
    width: 18px;
}
.bottom_sec .phone span:hover svg path{
    fill:#ef0d33;
    transition: 0.5s ease;
}
#footer_error{
    width: 100%;
    opacity: 0;
    color: #e74c3c;
    font-size: 12px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
#sales_enquiry{
    width: 100%;
}
.hidden_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
p.career_info{
    width: 100% !important;
}
.left_wrap {
    width: 106%;
    padding-right: 5px;
    position: relative;
    border-right: 1px solid #ffffff21;
    overflow: hidden;
}

hr {
    border: 3px solid #ef0d33;
}

.left_wrap h4 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}
body .zsiq_floatmain{
    z-index: 10000000 !important;
}

.left_wrap hr {
    width: 13%;
    margin: 0;
}

.image_wrap {
    width: 67%;
    display: flex;
    margin: 25px 0;
    align-items: center;
    justify-content: space-between;
}

.image_wrap img {
    /* filter: grayscale(100%); */
    filter: brightness(0.6);
    /*transition: 0.5s ease;*/
}

.image_wrap img:hover {
    /* filter: grayscale(0%); */
    filter: brightness(1);
    /*transition: 0.5s ease;*/
}

.image_wrap .clutch {
    width: 105px;
    /* height: 30px; */
    height: auto;
}

.image_wrap .goodfirms {
    width: 66px;
    /* height: 53px; */
    height: auto;
}

.image_wrap .firms {
    width: 127px;
    /* height: 66px; */
    height: auto;
}

.quick_links {
    margin-top: 82px;
    padding-bottom: 6vw;
}

.quick_links h3 {
    color: #fff;
    line-height: 25px;
    font-size: 21px;
}

.links_wrap {
    width: 97%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
}

.link_item p {
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
}

.link_item ul {
    padding: 0;
}

.link_item li {
    list-style: none;
}

.link_item ul li a {
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.link_item ul li a:hover {
    color: white;
}

.bottom_sec {
    width: 100%;
    bottom: 2px;
    margin-bottom: 6%;
}

.phone {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6%;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.phone a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.phone span {
    cursor: pointer;
    display: inline-block;
    margin-right: 12px;
    line-height: 0;
}

.phone span .fa-phone {
    transform: rotate(90deg);
}

.phone:hover,
.phone:hover a {
    color: white;
}

.bottom_sec i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.5s ease;
    cursor: pointer;
}

.bottom_sec i:hover {
    color: #ef0d33;
    transition: 0.5s ease;
}

.icon_wrap {
    width: 100%;
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
}

.right_wrap {
    margin-bottom: 3%;
    width: 21%;
    margin-top: 6%;
    padding-left: 115px;
}

.right_wrap h2 {
    font-size: 35px;
    line-height: 43px;
    color: #fff;
    margin: 17px 0;
}

.right_wrap hr {
    margin: 0;
    width: 15%;
}

.right_wrap p {
    width: 53%;
    font-size: 14px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0px 20px 0;
}
.input_wrap.select-style.arrow{
    margin-top: 0;
}
.input_wrap.select-style.arrow .select-selected:after{
    top: 2.5vw;
}
.input_wrap.select-style.arrow .select-selected.select-arrow-active:after{
    top: 2vw;
}
.right_wrap label{
    opacity: .6;
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input_wrap {
    width: 48%;
    position: relative;
}

.phone input {
    padding-left: 50px !important;
}

.country-select input {
    padding: 0;
    width: 100%;
    color: #000;
}

.input_wrap input,
.input_wrap select {
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.03);
    border: none;
    height: 61px;
    line-height: 61px;
    width: 100%;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 8.5px 0;
    resize: none;
    padding: 5px 24px;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
    /* box-shadow: 0px 3px 12px #00000082; */
    background-color: rgba(255, 255, 255, 0.93);
    color: #212121;
    outline: none;
}

input:focus::placeholder {
    color: #212121;
}

.input_wrap select {
    -webkit-appearance: none;
    /* background-image: url(../images/down-arrow.svg); */
    background-position: 88%;
    background-size: 16px;
    background-repeat: no-repeat;
}

option {
    padding: 5px 20px;
    line-height: 20px;
}

.textarea {
    width: 100%;
}

.input_wrap textarea {
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.03);
    border: none;
    width: 100%;
    color: rgba(255, 255, 255, 0.3);
    margin: 5.5px 0;
    resize: none;
    padding: 24px;
    box-sizing: border-box;
    height: 75px;
}

::placeholder {
    font-size: 14px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.3);
}

.btn_wrap {
    width: 100%;
    display: flex;
    /* justify-content: flex-end; */
    margin: 0px 0;
}

.btn_wrap #contact_btn {
    background: #ef0d33;
    border-radius: 5px;
    opacity: 1;
    border: none;
    font-size: 16px;
    line-height: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 40px;
    cursor: pointer;
}

.contact_clicked {
    position: relative;
    overflow: hidden;
}

.contact_clicked::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/loaderwhite.gif);
    background-position: center;
    background-size: 20%;
    background-repeat: no-repeat;
    z-index: 1;
}

.contact_clicked::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: .5;
}

@media screen and (max-width: 1700px) and (min-width: 1100px) {
    footer {
        padding: 0 95px;
    }
    hr {
        border: 1px solid #ef0d33;
    }
    .left_wrap h4 {
        font-size: 14px;
        line-height: 23px;
        margin-bottom: 10px;
    }
    .image_wrap .clutch {
        width: 78px;
        height: 21px;
    }
    .image_wrap .goodfirms {
        width: 54px;
        height: 42px;
    }
    .image_wrap .firms {
        width: 95px;
        height: 33px;
    }
    .quick_links {
        margin-top: 55px;
    }
    .quick_links h3 {
        line-height: 25px;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .links_wrap {
        margin-top: 3px;
    }
    .link_item p {
        font-size: 10px;
        line-height: 23px;
    }
    .link_item ul li a {
        font-size: 11px;
        /* line-height: 19px; */
    }
  
    .bottom_sec i {
        font-size: 17px;
    }
    .icon_wrap {
        margin: 20px 0;
    }
    .right_wrap {
        padding-left: 1.5vw;
        margin-top: 8%;
    }
    .right_wrap h2 {
        font-size: 24px;
        line-height: 28px;
        margin: 23px 0 14px 0;
    }
    .right_wrap p {
        font-size: 10px;
        line-height: 15px;
    }
    .right_wrap label{
        font-size: 10px;
    }
    .right_wrap #agree{
        height: 11px;
        margin-bottom: 0;
    }
    .input_wrap input,
    .input_wrap select {
        border-radius: 3px;
        height: 38px;
        line-height: 32px;
        padding: 8px 20px;
        font-size: 14px;
    }
     ::placeholder {
        font-size: 14px;
        line-height: 22px;
    }
    .input_wrap select {
        background-position: 91%;
        background-size: 12px;
    }
    button {
        font-size: 11px;
        line-height: 28px;
        padding: 7px 40px;
    }
}
@media screen and (max-width: 1390px) and (min-width: 1024px) {
    .country-select .flag-dropdown{
        top: -11px;
    }
    .input_wrap input, .input_wrap select{
        margin: 9px 0;
    }
    .input_wrap textarea{
        margin: 9px 0;
    }
}
@media only screen and (max-width: 1024px) {
    .input_wrap input, .input_wrap select{
        margin: 0 0 9px 0;
    }
    .input_wrap input, .input_wrap select{
        height: 40px !important;
    }
    .input_wrap.select-style.arrow .select-selected:after{
        top: 37px;
    }
    .input_wrap.select-style.arrow .select-selected.select-arrow-active:after{
        top: 29px;
    }
    .select-selected:after{
        top: 37px;
    }
    .select-selected.select-arrow-active:after{
        top: 29px;
    }
}
@media only screen and (max-width: 500px) {
    .input_wrap.select-style.arrow .select-selected:after{
        top: 45px;
    }
    .input_wrap.select-style.arrow .select-selected.select-arrow-active:after{
        top: 38px;
    }
    .select-selected:after{
        top: 45px;
    }
    .select-selected.select-arrow-active:after{
        top: 38px;
    }
}
@media screen and (max-width: 1024px) and (min-width: 900px) {

    .right_wrap p{
        line-height: 17px;
        margin: 9px 0;
    }
    .right_wrap label{
        line-height: 17px;
        margin: 9px 0;
    }
    footer .btn_wrap{
        margin: 0px 0;
    }
    .btn_wrap #contact_btn{
        line-height: 14px;
    }
    .right_wrap h2{
        margin: 0px 0 9px 0 !important;
    }
    
}
@media screen and (max-width: 1100px) and (min-width: 700px) {
    footer {
        flex-direction: column-reverse;
        flex-wrap: wrap;
        padding: 75px;
    }
    .left_wrap {
        width: 100%;
        border: 0;
    }
    .right_wrap {
        margin-bottom: 0;
        margin-top: 3%;
        width: 100%;
        padding: 0;
    }
    .left_wrap h4 {
        font-size: 14px;
        line-height: 23px;
        margin-bottom: 10px;
    }
    .image_wrap .clutch {
        width: 78px;
        height: 21px;
    }
    .image_wrap .goodfirms {
        width: 54px;
        height: 42px;
    }
    .image_wrap .firms {
        width: 95px;
        height: 33px;
    }
    .quick_links {
        margin-top: 2px;
    }
    .quick_links h3 {
        line-height: 25px;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .links_wrap {
        margin-top: 13px;
        width: 100%;
    }
    .link_item p {
        font-size: 10px;
        line-height: 23px;
    }
    .link_item ul li a {
        font-size: 11px;
    }
    .phone {
        font-size: 15px;
        line-height: 0;
        margin-bottom: 5%;  
    }
    .bottom_sec i {
        font-size: 17px;
    }
    .icon_wrap {
        width: 55%;
        margin: 20px 0;
    }
    .right_wrap h2 {
        font-size: 24px;
        line-height: 28px;
        margin: 23px 0 14px 0;
    }
    .right_wrap p {
        font-size: 10px;
        line-height: 22px;
    }
    .right_wrap label {
        font-size: 10px;
        line-height: 22px;
    }
    #quote_country::placeholder {
        font-size: 10px;
    }
    #quote_number::placeholder {
        font-size: 10px;
    }
    .input_wrap.foo-phone-field{
        grid-template-columns: 73px 6px auto;
        gap: 6px;
    }
    #country_search{
        top: 7vw;
    }
    .input_wrap input,
    .input_wrap select {
        border-radius: 3px;
        height: 45px;
        line-height: 32px;
        padding: 8px 20px;
        font-size: 12px;
    }
     ::placeholder {
        font-size: 10px;
        line-height: 22px;
    }
    .input_wrap select {
        background-position: 91%;
        background-size: 12px;
    }
    button {
        font-size: 11px;
        line-height: 28px;
        padding: 7px 40px;
    }
    .bottom_sec {
        position: relative;
        margin-top: 0;
    }
}
@media screen and (max-width: 768px) {
    #country_search{
        top: 9vw;
    }
}
@media screen and (max-width: 700px) {
    #country_search{
        top: 12vw;
    }
    .country-dropdown .select-items{
        top: 149%;
    }
}
@media screen and (max-width: 500px) {
    #country_search{
        top: 15vw;
    }
}
@media screen and (max-width: 425px) {
    #country_search{
        top: 17vw;
    }
}
@media screen and (max-width: 375px) {
    #country_search{
        top: 19vw;
    }
    .country-dropdown .select-items{
        top: 157%;
    }
}
@media screen and (max-width: 320px) {
    #country_search{
        top: 22vw;
    }
}
@media screen and (max-width: 700px) and (min-width: 300px) {
    footer {
        flex-direction: column-reverse;
        flex-wrap: wrap;
        padding: 50px 30px;
    }
    .left_wrap {
        width: 100%;
        border: 0;
        padding: 0;
    }
    .right_wrap {
        width: 100%;
        padding: 0;
    }
    .left_wrap h4 {
        font-size: 14px;
        line-height: 23px;
        margin-bottom: 10px;
    }
    .image_wrap {
        width: 80%;
    }
    .image_wrap .clutch {
        width: 68px;
        height: 19px;
    }
    .image_wrap .goodfirms {
        width: 50px;
        height: 42px;
    }
    .image_wrap .firms {
        width: 90px;
        height: 33px;
    }
    .quick_links {
        margin-top: 20px;
    }
    .quick_links h3 {
        line-height: 25px;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .links_wrap {
        margin-top: 3px;
        flex-wrap: wrap;
    }
    .link_item p {
        font-size: 10px;
        line-height: 23px;
    }
    .link_item {
        width: 45%;
    }
    .link_item ul li a {
        font-size: 9px;
        /* line-height: 19px; */
    }
    .phone {
        font-size: 12px;
        line-height: 30px;
    }
    .bottom_sec i {
        font-size: 17px;
    }
    .icon_wrap {
        width: 82%;
        margin: 20px 0;
    }
    .right_wrap h2 {
        font-size: 24px;
        line-height: 28px;
        margin: 23px 0 14px 0;
    }
    .right_wrap p {
        font-size: 10px;
        line-height: 22px;
        width: 100%;
    }
    #quote_country::placeholder {
        font-size: 10px;
    }
    #quote_number::placeholder {
        font-size: 10px;
    }
    .input_wrap.foo-phone-field{
        grid-template-columns: 73px 6px auto;
        gap: 6px;
    }
    .input_wrap.foo-phone-field input{
        padding: 8px 1.6vw;
    }
    .right_wrap label{
        font-size: 10px;
        line-height: 22px;
        width: 100%;
    }
    .input_wrap {
        width: 100%;
    }
    .input_wrap input,
    .input_wrap select {
        border-radius: 3px;
        height: 45px;
        line-height: 32px;
        padding: 8px 20px;
        font-size: 12px;
    }
     ::placeholder {
        font-size: 10px;
        line-height: 22px;
    }
    .input_wrap select {
        background-position: 91%;
        background-size: 12px;
    }
    .btn_wrap {
        justify-content: center;
        margin: 20px 0;
    }
    button {
        font-size: 11px;
        line-height: 28px;
        padding: 7px 40px;
    }
    .bottom_sec {
        position: relative;
        margin-top: 23px;
        bottom: 0;
    }
}

@media screen and (min-width: 1700px) {
    .bottom_sec {
        bottom: auto;
    }
}

@media only screen and (max-width: 2500px) and (min-width: 1921px) {
    .country-select.inside .flag-dropdown {
        transform: scale(1.5) !important;
     
    }

 
}

@media only screen and (max-width: 3000px) and (min-width: 2500px) {
    .country-select.inside .flag-dropdown {
        transform: scale(2) !important;
    }
    footer .phone input {
        padding-left: 3.5vw !important;
    }
   
}
.footer_section.fp-section.fp-table, .fp-slide.fp-table{
    background: #212121;
}
.copyright_wrap{
    position: absolute;
    bottom: 0;
    background: #2d3034;
    padding: 10px 120px;
    color: #a4a4a4;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
}
@media screen and (max-width: 330px) {
    .bottom_sec{
        margin-top: 17px;
    }
    .copyright_wrap {
        padding: 10px 11px;
    }
    .image_wrap {
        width: 100%;
    }
    .image_wrap img{
        object-fit: contain;
    }
}
@media only screen and (max-width: 4000px)and (min-width: 1452px) {
  
    footer {
        padding: 0 6.0897vw;
    }
    .left_wrap {
        padding-right: 0.487vw;
        border-right: 0.064vw solid #ffffff21;
    }
    .left_wrap h4 {
        font-size: 0.897vw;
        line-height: 1.474vw;
        margin-bottom: 0.641vw;
    }
    .image_wrap{
        margin: 1.60256vw 0;
    }
    .image_wrap .clutch {
        width: 5vw;
        height: 1.346vw;
    }
    .image_wrap .goodfirms {
        width: 3.461vw;
        height: 2.692vw;
    }
    .image_wrap .firms {
        width: 6.0897vw;
        height: 2.1153vw;
    }
    .quick_links {
        margin-top: 2.115vw;
    }
    .quick_links h3 {
        line-height: 1.60256vw;
        font-size: 1vw;
        margin-bottom: 0.64vw;
    }
    .links_wrap {
        margin-top: 0.192vw;
    }
    .link_item p {
        font-size: 0.64vw;
        line-height: 1.474vw;
    }
    .link_item ul li a {
        font-size: 0.705vw;
        line-height: 1.79487vw;
    }
    .bottom_sec{
        bottom: -1.0897vw;
    }
  
    .phone span{
        margin-right: .4vw;
    }
    .bottom_sec i {
        font-size: 1.0897vw;
    }
    .icon_wrap{
        margin: 1.282vw 0;
    }
    .right_wrap {
        padding-left: 1.4487vw;
        margin-top: 6%;
    }
    .right_wrap h2 {
        font-size: 1.5384vw;
        line-height: 1.79487vw;
        margin: 1.4743vw 0 0.8974vw 0;
    }
    .right_wrap p {
        font-size: .73vw;
        line-height: 1.41vw;
        margin: 1.92vw 0;
    }
    .right_wrap label {
        font-size: .73vw;
        line-height: 1.41vw;
    }
    .agree_checkbox{
        margin-top: .5vw;
    }
    .foo-divider{
        margin-top: 2.3vw;
    }
    .input_wrap input, .input_wrap select {
        border-radius: 0.192vw;
        height: 2.6vw;
        line-height: 2.05vw;
        padding: 8px 1.282vw;
        font-size: 0.8974vw;
        margin: 0 0 0.6vw 0;
    }
    .copyright_wrap{
        padding: 0.641vw 7.692vw;
        font-size: 0.769vw;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    ::placeholder {
        font-size: .8vw;
    }
    .phone input {
        padding-left: 4.205vw !important;
    }
    .country-select{
        top: 0.961vw;
        left: .9vw;
    }
    .input_wrap textarea {
        border-radius: 0.19vw;
        height: 4.8vw;
        margin: .9vw 0.265vw 0;
        margin: 0.265vw 0;
    }
    .btn_wrap #contact_btn{
        padding:  0.96vw 2.564vw;
        font-size: 1.025vw;
        line-height: 1.7948vw;
        border-radius: 0.32vw;
    }
    .select-items div, .select-selected{
        padding: .66vw 1.0256vw;
        font-size: .76vw;
        line-height: 1.3vw;
        border-radius: 0.192vw;
    }
    .select-selected.select-arrow-active:after{
        top: 60%;
    }
    .input_wrap.select-style.arrow .select-selected:after{
        top: 66%
    }
    .input_wrap.select-style.arrow .select-selected.select-arrow-active:after{
        top: 60%
    }
    .select-selected:after{
        top: 66%;
        right: 0.6410vw;
        border: 0.384vw solid transparent;
        border-color: rgba(255, 255, 255, 0.3) transparent transparent transparent;
    }
}



