
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Reem+Kufi:wght@400;500;600;700&display=swap');

body{
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Reem Kufi', sans-serif;
}
p,h1,h2,h3,h4,h5,h6,ul,form{
    margin: 0;
    padding: 0;
}
/* ================================== home ========================================= */
#app{
    background: url('../img/home/bg_steps.png');
    height: auto;
    width: 100%;
}
/*--------------------------------------------------------------
# load
--------------------------------------------------------------*/
#loader {
position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}
.loader_dark{
    background: url('../img/logo/loader_dark.gif') 50% 50% no-repeat #121212;
}
.loader_light{
    background: url('../img/logo/loader_light.gif') 50% 50% no-repeat #fff;
}
#loader img{
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
.navbar-nav .nav-item {
    font-size: 15px;
    color: #707070;
    margin: 0 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link{
    border-bottom: 2px solid #009BFE !important;
    padding: 0;
    font-weight: 600;
    color: #009BFE;
}
.checkbox {
    opacity: 0;
    position: absolute;
}
.checkbox-label {
    width: 37px;
    height: 21px;
    border-radius: 50px;
    position: relative;
    padding-top: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #1f73fb;
}
.checkbox-label .ball {
    background-color: #1f73fb;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 2px;
    top: 1.2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.checkbox:checked+.checkbox-label .ball {
    transform: translateX(14px);
}
/*--------------------------------------------------------------
# main
--------------------------------------------------------------*/
.home{
    min-height: calc(100vh - 165px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.home .frist_content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home .frist_content h1{
    font-size: 49px;
    color: #707070;
    font-weight: bold;
    font-family: 'Reem Kufi', sans-serif;
    margin-bottom: 30px;
}
.home .frist_content h1 span{
    color: #009BFE;
}
.home .frist_content p{
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #707070;
    margin-bottom: 40px;
}
.home .frist_content a{
    padding: 10px 90px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(-45deg, #00a3e4, #44c7fc, #0090ca);
    background-size: 400% 400%;
    -o-animation: AnimationName 3s ease infinite;
    animation: AnimationName 3s ease infinite;
    transition: 1s;
}

@-o-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 62%
    }

    50% {
        background-position: 100% 39%
    }

    100% {
        background-position: 0% 62%
    }
}
.home .main-bg_mobile_img{
    background-image: url(../img/home/back.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    max-width: 480px;
    margin: auto;
}
.home .secound_content .bg_mobile_img{
    max-width: 100% !important;
    height: 480px;
    margin: auto;
    display: block;
}
.easily{
    position: absolute;
    top: -10px;
    left: 300px;
    width: 130px;
}
#get1{
    background: transparent linear-gradient(0deg, #D8F0FF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    color: #009BFE;
    padding: 10px 75px;
    transition: 1s;
}
#get2{
    top: -10px;
    position: absolute;
    transition: 1s;
}

/*--------------------------------------------------------------
# digital
--------------------------------------------------------------*/
#digital {
    padding-top: 30px;
    text-align: center;
    padding-bottom: 65px;

}

#digital .digital-body {
    background: #fff;
    padding:20px;
    border-radius: 100px;
    border: 1px solid #009BFE;
}

#digital .digital-body span {
    font-size: 60px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #707070;
}

#digital .digital-body p {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #707070;
}

.team-meamber {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-meamber .line {
    width: 1px;
    height: 40px;
    background-color: #707070;
    opacity: 0.6;
}
/*--------------------------------------------------------------
# build_app
--------------------------------------------------------------*/
.build_app {
    padding-top: 80px;
}
.build_app .head_build_app{
    text-align: center;
}
.build_app .head_build_app h3{
    color: #1C2126;
    font-family: 'Reem Kufi', sans-serif;
    font-weight: bold;
    font-size: 35px;
}
.build_app .head_build_app p{
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    color:#707070;
}
.build_app .head_build_app .line{
    width: 80px;
    height: 2px;
    background-color: #CFCFCF;
    display: block;
    margin:15px auto;
}
.content_build_app{
    margin-top: 50px;
}
.content_build_app h3 {
    font-size: 30px;
    margin-bottom: 15px;
}
.content_build_app h3 .num_1,
.content_build_app h3 .num_2,
.content_build_app h3 .num_3{
    color: #009BFE;
    font-size: 50px;
    margin-right: 5px;
}
.content_build_app h3 .num_2{
    color: #F8494B;
}
.content_build_app h3 .num_3 {
    color: #FDB132;
}
.content_build_app ul li{
    margin-left: 1rem;
    color: #707070;
}
.build_app .build_app_button a{
    font-family: 'Reem Kufi', sans-serif;
    background: transparent linear-gradient(270deg, #0642FE 0%, #009BFE 100%) 0% 0% no-repeat padding-box;
    padding: 10px 50px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
    margin: auto;
    width: 200px;
    margin-bottom: 30px;
    box-shadow: 0px 3px 6px #00000029;
}
.build_1,
.build_2,
.build_3{
    position: relative;
    width: 100%;
    height: 275px;
}
.build_1 img,
.build_2 img,
.build_3 img{
    height: auto;
    margin-top: -100px;
    width: 520px;
    z-index: -1;
}
/*--------------------------------------------------------------
# companies
--------------------------------------------------------------*/
.companies{
    margin: 120px 0 0 0;
}
.companies .head_companies h3{
    color: #121212;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 30px;
}
.companies_content .arrow img{
    width: 35px;
    cursor: pointer;

}
.companies_content .arrow-right{
    margin-right: 30px;
    z-index: 11;
    list-style: none;
}
.companies_content .arrow-left {
    margin-left: 30px;
    z-index: 11;
    list-style: none;
}
.companies_content{
    background: #009BFE;
    padding: 50px 0;
    position: relative;
}
.company .companies_img img{
    max-width: 130px;
    display: block;
    margin: auto;
    height: 90px;
}
/*--------------------------------------------------------------
# Business
--------------------------------------------------------------*/
.Business{
    padding-top: 50px;
}
.Business .head_Business h3{
    font-family: 'Reem Kufi', sans-serif;
    font-weight: bold;
    text-align: center;
    color: #1C2126;
    font-size: 35px;
}
.Business .head_Business .line{
    width: 80px;
    height: 2px;
    display: block;
    margin:15px auto;
    background-color: #CFCFCF;
}
.Business .Business_content {
    padding: 30px 0;
}

.Business .Business_content .Business_card{
    max-width: 300px;
    margin:30px auto 50px auto;
    text-align: center;
}
.Business .Business_content .Business_card img{
    display: block;
    margin: 15px auto;
    max-width: 90%;
    height: auto;
}
.Business .Business_content .Business_card h5{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #1C2126;
    font-size: 20px;
    margin: 12px auto;
}
.Business .Business_content .Business_card p{
    color: #737373;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
}
/*--------------------------------------------------------------
# get_started
--------------------------------------------------------------*/
.get_started{
    background-image: url('../img/home/bg_blur.png');
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px;
}
.get_started .get_started_content{
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.5); 
    opacity: 1;
    border-radius: 30px;
    box-shadow: -8px 6px 14px #0642FE3B;
}
.get_started .get_started_content img{
    max-width: 180px !important;
}
.get_started .get_started_content .get_started_first {
    margin-top: 30px;
}
.get_started .get_started_content h5{
    color: #2071FA;
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.get_started .get_started_content p { 
    color: #707070;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin-top: 6px;
    margin-bottom: 40px;
}
.get_started .get_started_content a{
    background-color: #2071FA;
    border-radius: 14px;
    padding: 7px 25px;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
}
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
footer{
    padding: 25px  0;
    background: url(../img/home/bg_dark.png) !important;
    background-size: auto;
    background-repeat: no-repeat;
    color: #FFFFFF !important;
}
footer .copy_right{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
footer  p{
    color: #ffffff;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
footer .logo_footer{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .logo_footer img{
    margin-left: auto;
}
footer .social {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
    width: 100%;
}
footer .social ul li {
    display: inline-block;
    list-style: none;
    margin: 0 5px;
}
footer .social ul li a{
    text-decoration: none;
    margin: 0 7px;
}

/* ==================================================================== */
* {
    box-sizing: border-box;
}

.tab {
    display: none;
    width: 100%;
    min-height: calc(100vh - 165px);
}

.tabs {
    width: 100%;
    min-height: calc(100vh - 345px);
    overflow: auto;
    margin: 0px auto;
}

.current {
    display: block;
}

#myForm {
    margin: 0;
    padding: 0 15px;
    min-width: 300px;
    min-height: calc(100vh - 99px);
    font-family: 'Poppins', sans-serif;
}

#myForm .previous,
#myForm #previous,
#myForm #previou,
#myForm .next,
#myForm .submit {
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    border: 0;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#myForm .previous img{
    width: 35px;
    margin-left: 10px;
}
#myForm .next img,
#myForm .submit img {
    width: 35px;
    margin-right: 10px;
}
#myForm .next {
    color: #009BFE;
}

.progress-bar {
    background-color: #009bfe !important;
    border-radius: 6px;
}
.progress {
    --bs-progress-bg: #e6e6e6;
    height: 21px;
    margin: 12px 0 0 0;
}

#myForm .previous {
    color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
#myForm .step {
    height: 30px;
    width: 30px;
    cursor: pointer;
    margin: 0 2px;
    color: #fff;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.8;
    padding: 5px
}

#myForm .step.active {
    opacity: 1;
    background-color: #69c769;
}

#myForm .step.finish {
    background-color: #4CAF50;
}
#myForm .tab .tab_content{
    display: flex;
    align-items: center;
    justify-content: center;
}

.enter_bussines {
    width: 500px;
    text-align: left;
    font-family: 'Poppins', sans-serif; 
}
.enter_bussines h3{
    font-size:25px;
    letter-spacing: 0px;
    color: #1C2126;
    font-weight: 300;
}
.enter_bussines input{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #1C2126;
    padding: 15px 0;
    background: transparent;
    color: #8B8B8B;
    font-size: 14px;
    font-weight: 300;
}
.enter_bussines input:focus{
    outline: 0;
}

.file-input {
    display: inline-block;
    text-align: left;
    padding: 8px 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.file-input button{
    outline: none;
    background: transparent;
    border: 0;
    margin-right: 8px;
    cursor: pointer;
    font-size: 20px;
    color: #f85051 !important;
}
.file-input [type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.file-input>.button {
    display: inline-block;
    cursor: pointer;
    background: #ccc;
    padding: 8px 16px;
    border-radius: 2px;
    margin-right: 8px;
    font-size: 14px;
}

.file-input:hover>.button {
    background: #263238;
    color: #fff;
}

.file-input>.label {
    color: #333;
    white-space: nowrap;
    opacity: .7;
    font-size: 13px;
}

.preview {
    max-width: 40px;
    height: auto;
    max-height: 40px;
}
.title_content{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid;
}
.title_content h4{
    text-align: left;
    padding: 10px 0;
    color: #1C2126;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.content_steps {
    padding: 20px;
}
.content_steps .upload h5,
.content_steps .input_text h5{
    text-align: left;
    font-size: 15px;
    color: #707070;
    font-weight: 500;
    margin-bottom: 15px;
}
.upload h5 button,
.input_text h5 button{
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.input_text h5 .dropdown-toggle::after,
.upload h5 .dropdown-toggle::after{
    display: none;
}
.upload h5 .dropdown-menu,
.input_text h5 .dropdown-menu{
    background-color: #707070;
    border-radius: 10px;
    transform: translate(-10px, 25px) !important;
}
.upload h5 .dropdown-menu .dropdown-menu_content,
.input_text h5 .dropdown-menu .dropdown-menu_content{
    min-height: 170px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 10px;

}
.upload h5 .dropdown-menu .dropdown-menu_content h6,
.input_text h5 .dropdown-menu .dropdown-menu_content h6{
    font-size: 12px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}
.upload h5 .dropdown-menu .dropdown-menu_content .outline,
.input_text h5 .dropdown-menu .dropdown-menu_content .outline{
    margin-bottom: 10px;
}
.upload h5 .dropdown-menu .dropdown-menu_content p ,
.input_text h5 .dropdown-menu .dropdown-menu_content p {
    color: #BABABA;
    font-size: 12px;
    font-weight: 400;
    width: 160px;
}
.upload h5 .dropdown-menu .dropdown-menu_content .example_phone ,
.input_text h5 .dropdown-menu .dropdown-menu_content .example_phone {
    width: 70px;
    height: 140px;
}
.content_steps .input_text input,
.content_steps .input_text textarea{
    border: 1px solid #707070;
    border-radius: 6px;
    height: 50px;
    width: 100%;
    background-color: transparent;
    font-size: 10px;
}
.content_steps .input_text textarea {
    height: calc(100% - 140px) !important;
    padding: 10px;
    font-size: 13px;
}

.content_steps .dashboard{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin:40px auto;
}
.content_steps .dashboard h4{
    text-align: left;
    padding: 10px 0;
    color: #1C2126;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.file-input{
    border: 2px dashed #707070;
    border-radius: 7px;
    padding: 7px;
    height: 52px;
    width: 100%;
    color: #707070;
}
.file-input .label{
    font-size: 12px;
}
.color_input{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 6px;
    height: 53px;
    display: flex;
    align-items: center;
    color: #707070;
}
.form-control:focus{
    box-shadow : none !important;
}

.buttons_align {
    margin-top: 25px;
}
.button_align {
    float: left;
    margin: 0 5px 0 0;
    width: 100%;
    height: 40px;
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 6px;
}

.button_align label,
.button_align input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.button_align label:hover,
.button_align input:hover{
    cursor: pointer;
}
.button_align input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.button_align input[type="radio"]:checked+label {
    background: #009BFE;
    color: #fff;
}

.button_align label {
    cursor: pointer;
    z-index: 90;
    line-height: 1.8em;
}

.range label{
    float: left;
    color: #707070;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.select2{
    width: 100% !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    border: solid #707070 1px !important;
    height: 47px !important;
    overflow: auto;
    text-align: left;
    color: #707070 !important;
    background-color: transparent !important;
}
.select2-results__option {
    color: #707070 !important;
}
.select2-container .select2-search--inline .select2-search__field{
    height: 18px !important;
}
.color_add, .add{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 6px;
    height:50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 7px 10px 0 10px;
}
.add button{
    text-decoration: none;
    color: #000;
    font-size: 30px;
    border: 0;
    background-color: transparent;
}
#items1,#items2,#items3,#items4{
    display: flex;
    width: 100%;
    align-content: flex-start !important;
    flex-wrap: wrap !important;
    height: 68px;
    max-height: 140px;
    overflow: auto;
}
#items1 .remove_color,
#items2 .remove_color,
#items3 .remove_color,
#items4 .remove_color{
    border: 1px solid #F8494B;
    width: 17px;
    border-radius: 50%;
    height: 20px;
    color: #F8494B;
    padding: 0px 0px 1px 4px;
    font-size: 12px;
    font-weight: 600;
    background-color: transparent;
    transform: translate(-55%, -30%) !important;
}

.number span {
    cursor: pointer;
}
.number {
    display: flex;
    /* height: 100%; */
    align-items: center;
    width: 100%;
    justify-content: space-around;
    border: 1px solid #707070;
    height: 52px;
    padding: 10px;
    border-radius: 6px;
}
.number input{
    border: 0 !important;
    border-bottom: 1px solid #707070 !important;
    border-radius: 0 !important;
    width: 70% !important;
    max-width: 120px !important;
    height: 30px !important;
}
.number input:focus{
    border: 0;
    outline: none;
}

.number .minus1,
.number .plus1,
.number .minus2,
.number .plus2 ,
.number .minus3,
.number .plus3,
.number .minus4,
.number .plus4{
    width: 30px;
    height: 30px;
    background: #fafafa;
    border-radius: 4px;
    padding: 5px;
    border: 1px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: 0;
    color: #0d9bfd;
    background: #fff 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
}

.number input {
    height: 34px;
    width: 100px;
    text-align: center;
    font-size: 26px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}
.form-switch .form-check-input{
    cursor: pointer;
}
/*======================   mobile design   ===================== */
.scroll{
    height: 100%;
    overflow-x: hidden; 
    border-radius: 16px;
    background-color: #fff;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar {
    width: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    width: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.phone_img{
    background-image: url('../img/icons/phone.png');
    height: 450px;
    width: 240px;
    background-size: cover;
    margin: auto;
    position: relative;
    padding: 25px 28px 30px 29px;
}
.phone_img .bg_mobile{
    background-size: cover;
    height: 398px;
    width: 189px;
    left: 25px;
    position: absolute;
    top: 23px;
    border-radius: 25px;
}
.phone_img .logo_mobile{
    top:50%;
}
.phone_img .bg_color {
    background: #fff;
    position: absolute;
    height: 398px;
    width: 189px;
    opacity: 0.7;
    margin-left: -4px;
    top: 23px;
    border-radius: 25px;
}
.phone_img .head_phone{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    background-color: #E7EAEF;
    height: 40px;
}
.phone_img .body_phone{
    width: 100%;
    height: 290px;
    background-size: cover;
    position: relative;
}
.phone_img .body_phone h3{
    margin: auto;
    text-align: left;
    padding-left: 10px;
    color: #333333;
    font-size: 26px;
    width: 100%;
    top:45%;
}
.phone_img .body_phone h4{
    background:transparent;
    backdrop-filter: blur(2px);
    border-radius: 30px;
    border: 0;
    width: 80%;
    font-size: 12px;
    margin-bottom: 20px;
    color: transparent;
    padding: 3px;
    text-align: center;
}
.phone_img .body_phone2 h4{
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    margin-top: -2px;

    width: fit-content;
    display: block;
    margin: auto;
}
.phone_img .body_phone2 .line {
    width: 47%;
    height: 0.5px;
    background-color: #cccccc;
    display: block;
    margin: 3px auto;
}
.phone_img .body_phone2 .tabss{
    display: flex;
    color: #888888;
    margin-top: 10px;
    padding: 0 5px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.phone_img .body_phone2 .tabss h3:first-child {
    color: #000;
    border-bottom: 1px solid #dd8560;
}
.phone_img .body_phone2 .tabss h3{
    font-size: 10px;
    padding: 0 2px;
    margin: 2px 0;
}
.phone_img .product_details1 .product_img1,
.phone_img .product_details2 .product_img2,
.phone_img .product_details3 .product_img3,
.phone_img .product_details4 .product_img4 {
    width: 90%;
    height: auto;
    max-height: 145px;
    display: block;
    margin: auto;
}
.phone_img .product_details1 .arrows,
.phone_img .product_details2 .arrows,
.phone_img .product_details3 .arrows,
.phone_img .product_details4 .arrows {
    width: 20px;
    margin: 0 15px 5px 0;
}
.error{
    color: red;
    font-size: 12px;
}
.dotes,
.dotes1,
.dotes2{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.dotes span,
.dotes1 span,
.dotes2 span{
    width: 6px;
    height: 6px;
    border: 1px solid #888888;
    margin: 0 4px;
    transform: rotate(45deg);
}
.dotes span:first-child,
.dotes1 span:first-child,
.dotes2 span:first-child{
    background-color: #888888;
}
.phone_img .product_title1,
.phone_img .product_title2,
.phone_img .product_title3,
.phone_img .product_title4{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 10px auto;
}
.phone_img .product_title1 h3,
.phone_img .product_title2 h3,
.phone_img .product_title3 h3,
.phone_img .product_title4 h3{
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.phone_img .desc_product{
    width: 90%;
    margin: auto;
}
.phone_img .desc_product p{
    color: #555555;
    font-size: 9px;
    font-weight: 400;
    text-align: left;
}
.phone_img .desc_product .price{
    color: #DD8560;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}
.phone_img .color_product1,
.phone_img .color_product2,
.phone_img .color_product3,
.phone_img .color_product4{
    width: 90%;
    margin: 10px auto;
    display: flex;
    align-items: center;
}
.phone_img .color_product1 h3,
.phone_img .color_product2 h3,
.phone_img .color_product3 h3,
.phone_img .color_product4 h3{
    color: #555555;
    font-size: 11px;
    font-weight: 400;
    text-align: left;
    margin-right: 11px;
    font-weight: bold;
}
.color_product1 .colors1,
.color_product2 .colors2,
.color_product3 .colors3,
.color_product4 .colors4{
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}
.color_product1 span,
.color_product2 span,
.color_product3 span,
.color_product4 span{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 2px;
    border: 1px solid #5c5c5c;
}
.size1,
.size2,
.size3,
.size4{
    padding-left: 4px;
    display: flex;
    flex-wrap: wrap;
}
.size1 h3:first-child,
.size2 h3:first-child,
.size3 h3:first-child,
.size4 h3:first-child{
    font-weight: bold;
}
.size1 h3,
.size2 h3,
.size3 h3,
.size4 h3{
    color: #555555;
    font-size: 11px;
    font-weight: 400;
    text-align: left;
    margin: 5px;

}
.mobile_shadow {
    width: 200px;
    height: 12px;
    background: #121212 0% 0% no-repeat padding-box;
    opacity: 0.56;
    filter: blur(12px);
    margin: 16px auto;
}

/*--------------------------------------------------------------
# sign up
--------------------------------------------------------------*/
.main_main{
    display: flex;
    align-items: end;
    min-height: calc(100vh - 91px);
    width: 100%;
}
.form_signup{
    /* padding-top:100px; */
    font-family: 'Poppins', sans-serif;
    width: 90%;
}
.form_signup h2{
    color: #009BFE;
    font-size: 50px;
    margin-top: 20px;
    font-weight: 700;
}
.form_signup .first_form{
    margin-top: 40px;
}
.form_signup .first_form h5{
    color: #121212;
    font-size: 25px;
    font-weight: 500;
}
.form_signup .first_form p {
    color: #121212;
    font-size: 18px;
    font-weight: 300;
    margin-top: 10px;
}
.form_signup .form_content{
    background-color: #121212;
    padding: 25px;
    box-shadow: 0px 10px 19px #00000029;
    border-radius: 10px;
    max-width: 500px;
    margin: 30px auto 0 auto;
    min-height: 480px;
}

.form_signup .form_content h3{
    color: #fff;
    text-align: center;
}
.form_signup .form_content .form-control{
    border-radius: 3px !important;
}
.form_signup .form_content .form-control::placeholder{
    color: #BABABA;
}
.form_signup .form_content button{
    background-color: #009BFE;
    color: #fff;
    width: 208px;
    height: 38px;
    border: 2px solid #009BFE;
    border-radius: 6px;
    margin: auto;
    display: block;
}
.form_signup .form_content p { 
    color: #BABABA;
    text-align: center;
    letter-spacing: 0.8px;
    margin-top: 7px;
    font-size: 12px;
}
.form_signup .form_content p a{
    color: #009BFE;
    text-decoration: none;
}
.form_content .js-example-basic-single{
    width: 100%;
    background-color: #fff;
    color:#BABABA;
    border: 1px solid #ced4da;
    border-radius: 3px;
    padding: .375rem .75rem;
}
.build_your_App {
    display: flex;
    align-items: center;
    justify-content: center;
}
.build_your_App .radio{
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 10px 0 0 10px;
}
.build_your_App .radio label{
    color: #fff;
}
/* ========================== companies_form ========================= */
.companies_form {
    background-color: #009BFE;
    padding: 91px 30px 30px 30px;
    margin-top: -50px;
}
.companies_form p{
    color: #fff;
    font-size: 17px;
    text-align: center;
}
.companies_form .companies_form_content {
    padding-top:30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-flow: wrap;
    max-width: 1420px;
    margin: auto;
}
.companies_form .companies_form_content img{
    margin: 15px;
}
@media only screen and (max-width: 991px) { 
    .form_signup {
        padding-top: 30px;
    }
}

.slick-slide{
    height: auto !important;
}
.intl-tel-input {
    display: table-cell;
}

.intl-tel-input .flag-container {
    z-index: 4;
}

.input-group .intl-tel-input .form-control {
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
}
/* ====================================  pdf  ================================== */
.pdf_content{
    height: 100%;
    position: relative;
}
.momentum_pdf{
    transform: translate(-40%, -50%) !important;
    height: 85%;
}
.pdf_content .mobile_pdf{
    height: 85%;
}
.select2-selection__choice__remove{
    display: none !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
    padding-left: 6px !important;
}
#yes{
    display: none;
}
.meetings-iframe-container iframe{
    width: 100% ;
    height: 620px ;
}
.modal-body{
    padding: 0 !important;
}
.x{
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 11;
    font-size: 25px;
}
.fullsize-container {
    max-width: 100% !important;
}
.compact-container {
    max-width: 100% !important;
}
.meetings-lib{
    margin: 0 !important;
}
.hubspot{
    background-color: #ffffff !important;
}

.main_loader{
    height: 480px;
    padding-top: 100px;
    display: none;
}
.success {
    margin: 0 auto 40px auto;
}
.loader{
    justify-content: center;
    height: 134px;
    max-width: 500px;
    align-items: center;
    display: flex;
    background-color: #121212;
    padding: 25px;
    box-shadow: 0px 10px 19px #00000029;
    border-radius: 10px;
    margin: 30px auto 0 auto;
}
.success_content {
    background-color: #121212;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    padding: 15px 20px;
    width: 100%;
    max-width: 850px;
    border-left: 5px solid #009bfe;
}
.success_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:#fff;
}
.success_head div:first-child{
    display: flex;
    align-items: center;
}
/* Loader 1 */
.loader-1 {
    height: 50px;
    width: 50px;
    -webkit-animation: loader-1-1 4.8s linear infinite;
    animation: loader-1-1 4.8s linear infinite;
    background: #fff;
    border-radius: 50%;
    margin-right: 30px;
}
@-webkit-keyframes loader-1-1 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes loader-1-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-1 span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 32px;
    width: 32px;
    clip: rect(0, 32px, 32px, 16px);
    -webkit-animation: loader-1-2 1.2s linear infinite;
    animation: loader-1-2 1.2s linear infinite;
}

@-webkit-keyframes loader-1-2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(220deg);
    }
}

@keyframes loader-1-2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(220deg);
    }
}

.loader-1 span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 32px;
    width: 32px;
    clip: rect(0, 32px, 32px, 16px);
    border: 3px solid #009BFE;
    border-radius: 50%;
    -webkit-animation: loader-1-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
    animation: loader-1-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}

@-webkit-keyframes loader-1-3 {
    0% {
        -webkit-transform: rotate(-140deg);
    }

    50% {
        -webkit-transform: rotate(-160deg);
    }

    100% {
        -webkit-transform: rotate(140deg);
    }
}

@keyframes loader-1-3 {
    0% {
        transform: rotate(-140deg);
    }

    50% {
        transform: rotate(-160deg);
    }

    100% {
        transform: rotate(140deg);
    }
}
@media only screen and (max-width: 1024px) {
    .build_1 img,
    .build_2 img,
    .build_3 img {
        top: -30px;
    }
}
@media only screen and (max-width: 767px) {
    .build_1,
    .build_2,
    .build_3 {
        display: none;
    }
    .content_steps{
        padding: 0;
    }
}
.iti__country{
    font-size: 12px;
}

/* =================================== blog  ================================ */
.head_blog{
    text-align: center;
    background-color: #E8F6FF;
    padding: 50px 0;
}
.head_blog .tittle_blog h2{
    color: #1C2126;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 12px;
}
.head_blog .tittle_blog p{
    color: #1C2126;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 28px;
}
.head_blog .body_tittle .form_Subscribe{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 490px;
}
.head_blog .body_tittle input{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #8DD2FF;
    border-radius: 11px;
    max-width: 386px;
    margin: 0 10px;
    width: 386px;
    height: 40px;
    background-clip: unset;
}
.head_blog .body_tittle button { 
    background-color: #009BFE;
    border: 0;
    height: 37px;
}
.head_blog .body_tittle p{
    font-size: 13px;
    color: #8B8B8B;
    font-weight: 300;
    margin-left: 15px;
    text-align: left;
    margin-top: 3px;
}
.head_blog .body_tittle form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.head_blog .body_tittle p a{
    color: #009BFE;
    text-align: left;
}

.blog_card{
    margin: 50px 0;
}

.blog_card .card{
    border: 0 !important;
    margin: 15px;
    background-color: transparent;
}
.blog_card .card h5,
.blog_content .blog_content_tittle h5{
    color: #009BFE;
    font-size: 20px;
}
.blog_card .card h2,
.blog_content .blog_content_tittle h1{
    color: #121212;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 8px;
}
.blog_card .card .card-text{
    color:#707070;
    font-size: 16px;
    margin-bottom: 8px;
}
.blog_card .card a{
    color: #009BFE;
    font-size: 14px;
}
.blog_card .card .time,
.blog_content .blog_content_tittle .time{
    color: #BABABA;
    font-size: 12px;
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.blog_content .bg_blog{
    max-width: 100%;
    margin: 30px auto;
    display: block;
    max-height: 395px;
}
.blog_content .blog_content_tittle{
    text-align: center;
}
.blog_content .blog_content_tittle .time {
    justify-content: center;
}
.blog_content .blog_content_body p{
    font-size:16px;
    font-weight: 300;
    color: #707070;
    margin-bottom: 30px;
}
.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
}
.three-lines{
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}
@media only screen and (max-width: 767px) {
    .head_blog .body_tittle .form_Subscribe{
        width: 300px;
    }
    .head_blog .body_tittle p {
        font-size: 9px;
        margin-left: 5px;
        margin-top: 5px;
    }
    .head_blog .body_tittle button,
    .head_blog .body_tittle input{
        margin: 0 5px;
    }
    .head_blog .tittle_blog p {
        font-size: 14px;
        width: 80%;
        margin: 0 auto 15px auto;
    }
    .head_blog .tittle_blog h2 { 
        font-size: 24px;
    }
    .blog_card .card .card-text {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .blog_card .card h2,
    .blog_content .blog_content_tittle h2{
        font-size: 18px;
    }
    .blog_card .card h5,
    .blog_content .blog_content_tittle h5 {
        font-size: 16px;
    }
    .blog_card .card .time,
    .blog_content .blog_content_tittle .time {
        margin-top: 5px;
    }
}