* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.flex-row{
    display: flex;
    flex-wrap: wrap;
}
.justify-content-between{
    justify-content: space-between;
}
.all-end{
    display: flex;
    justify-content: end;
    align-items: end;
}

.text-center{
    text-align: center;
}

li {
    list-style: none;
}
.section{
    padding: 50px 0px;
}

a {
    text-decoration: none;
    color: #000;
}
iframe{
    width: 100%;
}

input {
    outline: 0;
}

#myFunction {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #3333;
    z-index: 1001;
    top: 0px;
    left: 0px;
    -webkit-backface-visibility: hidden;
    
}
.btn-block{
    width: 100%;
}

#popup {
    height: 416px;
    position: absolute;
    width: 720px;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
   
    background-color: #fff;
    padding: 15px 20px;
}
#popup .submitId {
    color: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    top: -17px;
   
    right: -33px;
    z-index: 1;
    line-height: 30px;
    text-align: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: #f23439;
    font-weight: 600;
    font-size: 14px;
}

#popup .form-section {
    position: relative;
    height: 100%;
    width: 100%;
}

.ptb-20{
    padding: 20px 0px;
}
.pb-10{
    padding-bottom: 10px;
}

.pb-20{
    padding-bottom: 20px;
}
.btn {
    font-size: 16px;
    padding: 12px 30px;
    display: inline-block;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all .5s ease-in-out;
    cursor: pointer;
    outline: none;
    border: none;
}
input, select{
    margin-top: 8px;
}
.btn-primary{
    background-color: #162a35; 
    background-color: #F23439;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}
@keyframes bg-animate {
    0%{
        background-color: #F23439;
    }
    50%{
        background-color: #35d826;
    }
    75%{
        background-color: #f02558;
    }
    100%{
        background-color: #ff00b3;
    }
    
}
img {
    width: 100%;
    
}   

.container {
    
    width: 1300px;
    margin: 0 auto;
   

}

label{
    font-size: 12px;
    font-weight: 600;
}

.form-control{
    width: 100%;
    height: 45px;
    outline: none;
    border: solid 1px #ddd;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 14px;
    background-color: #fff;
    border-radius: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}


/* common css */

.all-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.align {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.center {
    text-align: center;
}

.end {
    justify-content: start;
}

.text-content {
    font-size: 35px;
    margin-bottom: 40px;
    text-align: center;
}
.relative {
    position: relative;
}
.mb{
    margin-bottom: 30px;
}
.para{
    margin: 10px 0;
    font-size: 16px;
    line-height: 28px;
}
h1 {
    font-size: 65px;
    font-weight: 800;
    color: #fff;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 35px;
    position: relative;
    color: #B50909  ;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}
h5 {
    font-size: 16px;
}
p{
    font-size: 17px;
}
.mt-15{
    margin-top: 15px;
}
.mt-top{
margin-top: 70px;
}
.w-100{
    width: 100%;
}
.w-70{
    width: 68%;
}
.w-30{
    width: 30%;
}
.w-50{
    width: 48%;
}

@media screen and (max-width: 767px){
    .container{
        width: 100%;
        padding: 0px 15px;
    }
    .section{
       padding: 0px 0px;
    }
    
        #popup {
        height: 673px;
        
        width: 352px;
        top: 53%;
        
        padding: 10px;
    }
    #popup .submitId{
        top: -8px;
    right: -4px;
    }
   
}
  