/* ======== CSS Document =================== */
:root {
    --main-color:#FC4D00;
    --linear: linear-gradient(180deg, rgba(252, 77, 0, 0.05) 0%, rgba(68, 172, 0, 0.05) 37.6%, rgba(68, 172, 0, 0.05) 68.33%, rgba(191, 108, 0, 0.05) 100%);
    --border-radius: 10px;
    --black : #000;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2';
}
*::before,
*::after{
    box-sizing: border-box;
}
img{
    max-width: 100%;
}
ul,li,ol{
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
a,
a:hover,
a:visited,
a:focus
{
    text-decoration: none;
}
a:hover{
    color: #000;
}
p{
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px 0;
}
p:last-child{
    margin-bottom: 0;
}
.heading-area{
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
}
.heading-area.center{
    text-align: center;
}
.heading-area.center > *{
    display: block;
    text-align: center;
}
.sub-title{
    color: var(--black);
    font-size: 22px;
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0 10px 0;
    width: 100%;
}
.sub-title::before{
    content: '';
    display: block;
    background: var(--black);
    width: 40px;
    height: 2px;
    margin-right: 13px;
}
.main-title{
    color: var(--black);
    font-size: 40px;
    font-weight: bold;
    line-height: normal;
    text-transform: capitalize;
    display: block;
    line-height: 1em;
}
.orange-color{
    color: var(--main-color);
}
.heading-area.white > *{
    color: #fff;
}
main{
    max-width: 1920px;
    margin: 80px auto 0 auto;
}
main > *{
    padding: 40px 0;
}
.bg-color1{
    background-color: rgba(239, 230, 230, 0.8);
}
.bg-color2{
    background-color: rgba(233, 241, 241, 0.8);
}
/* ======================================================= */
.banner{
    background: var(--linear);
}
.banner_inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: grid;
}
.banner_left{
    width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.banner h1 {
    color: var(--black);
    font-size: 46px;
    font-weight: 400;
    line-height: 46px;
    font-weight: bold;
    margin: -8px 0 10px 0;
}
.banner b{
    color: var(--black);
    font-size: 26px;
    font-weight: bold;
    line-height: 1em;
    display: block;
    margin: 0 0 0 0;
}
.contact_detail .sales_title{
    color: var(--black);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin: 0 0 22px 0;
    text-transform: capitalize;
}
.contact_detail ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact_detail ul li{
    position: relative;
    padding: 15px 26px;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    min-height: 100px;
    display: flex;
    align-items: center;
}
.contact_detail ul li::before{
    content: '';
    border: 1px dashed #BCBCBC;
    opacity: 0.8;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 7px 0 0 8px;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    z-index: -1;
}
.contact_detail ul li > div:not(:last-child){
    margin: 0 0 10px 0;
}
.contact_detail ul li span{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    display: block;
    cursor: pointer;
}
.contact_detail ul li em{
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contact_detail ul li .center_details{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.contact_detail ul li .center_details .support_title{
    color: #1D1E31;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: normal;
    display: block;
}
.banner_right{
    width: 38%;
}
.contact-form-inner{
    max-width: 1310px;
    padding: 28px;
    margin: 0 auto;
    border: 1px solid #DBDBDB;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-left{
    width: 60%;
}
.contact-left form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}
.contact-left form b em{
    display: block;
    color: #AAA;
    font-size: 16px;
    font-weight: 400;
    line-height: 23.605px;
    font-style:normal ;
    text-transform: capitalize;
    margin: 0 0 4px 0;
}
.contact-left form b span:not(:last-child) {
    margin-bottom: 30px;
    display: block;
}
.contact-left form b:nth-child(4),
.contact-left form b:nth-child(3)
 {
    grid-column: 1 / 3;
    /* or grid-column: 1 / span 2 */
  }
.contact-left form input,
.contact-left form select,
.contact-left form textarea{
    border: 0;
    border-bottom: 1px solid #C1C1C1;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: 100%;
    padding: 0px 0 10px;
}
.contact-left form select {
    padding-bottom: 8px;
}
.d-flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    grid-column: 1 / 3;
    align-items: center;
    gap: 20px;
}
.chapcha-code{
    margin: 0;
}
.submit-nut2 {
    display: inline-block;
}
.contact-left form input[type="submit"] {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-transform: capitalize;
    border-radius: 5px;
    border: 0;
    outline: none;
    box-shadow: none;
    background: url(arrow-6.svg) no-repeat calc(100% - 40px) center;
    padding: 15.5px 44px 15.5px 25px;
    background-color: var(--main-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    background-size: 21px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.contact-left form input[type="submit"]:hover{
    background-color: var(--black);
}
.contact-right{
    width: 36%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-right .inner-box{
    border-radius: 7.884px;
    background: var(--white, #FFF);
    box-shadow: 0px 0px 23.653px -3.942px rgba(0, 0, 0, 0.15);
    padding: 15px;
    -webkit-border-radius: 7.884px;
    -moz-border-radius: 7.884px;
    -ms-border-radius: 7.884px;
    -o-border-radius: 7.884px;
}
.contact-right .inner-box i {
    display: block;
    margin: 0 0 10px 0;
}
.contact-right .inner-box i img{
    width: 50px;
    height: 50px;
    display: inline-block;
}
.contact-right .inner-box .strong-title{
    color: var(--black);
    font-size: 22px;
    font-weight: bold;
    line-height: 1em;
    display: block;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}
.contact-right .inner-box h4{
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    line-height: 32.194px;
}
.contact-right .inner-box h4 b{
    color: #7E7E7E;
    font-size: 14px;
    font-weight: 400;
    line-height: 32.194px;
}
.m-0{
    margin: 0 !important;
}
@media (max-width:1279px) {
    .contact-form-inner{
        max-width: calc(100% - 15px);
        max-width: -webkit-calc(100% - 15px);
        max-width: -moz-calc(100% - 15px);
        max-width: -ms-calc(100% - 15px);
        max-width: -o-calc(100% - 15px);
    }
}
@media (max-width:1199px) {
    .main-title {
        font-size: 38px;
    }
    .banner_right {
        width: 40%;
    }
    .banner_left {
        gap: 20px;
    }
    .contact-form-inner {
        padding: 15px;
    }
}
@media (max-width:991px) {
    .main-title {
        font-size: 35px;
        line-height: 1.2em;
    }
    .sub-title {
        font-size: 18px;
    }
    .banner_inner{
        flex-direction: column-reverse;
    }
    .banner_left{
        width: 100%;
    }
    .banner_right{
        width: 100%;
        text-align: center;
        margin: 0 0 20px 0;
    }
    .banner h1 {
        font-size: 42px;
        margin: 0 0 10px;
    }
    .banner b {
        font-size: 24px;
    }
    .contact-form-inner {
        padding: 25px 15px;
    }
    .contact-left{
        width: 100%;
        margin: 0 0 30px;
    }
    .contact-right{
        width: 100%;
    }
}
@media (max-width:630px) {
    main > *{
        padding: 40px 0;
    }
    .heading-area {
        margin: 0 0 15px 0px;
    }
    .main-title {
        font-size: 26px;
        line-height: 1em;
    }
    .sub-title {
        font-size: 17px;
        margin: 0 0 10px 0;
    }
    .sub-title::before {
        width: 20px;
        margin-right: 7px;
    }
    .banner h1 {
        font-size: 32px;
        line-height: 1em;
    }
    .banner b {
        font-size: 20px;
    }
    .contact_detail ul{
        grid-template-columns: 1fr;
    }
    .contact-left form {
        grid-template-columns: 1fr;
    }
     .contact-left form b {
        grid-column: 1 / 3;
    }
    .contact-right .inner-box{
        padding: 15px;
    }
    .contact_detail ul li {
        min-height: inherit;
        padding: 15px 23px;
    }
    .contact_detail ul li::before {
        margin: 7px 0 0 6px;
    }
    .contact_detail .sales_title {
        font-size: 18px;
        margin: 0 0 15px 0;
    }
    .banner {
        gap: 15px;
    }
    .contact-right .inner-box .strong-title {
        font-size: 20px;
    }
    .contact-left form input[type="submit"] {
        background: url(arrow-6.svg) no-repeat calc(100% - 30px) center;
        width: 145px;
        background-color: var(--main-color);
        background-size: 20px;
    }
    .contact-form-inner {
        padding: 0 15px;
        border: none;
        width: auto;
        max-width: 100%;
    }
}