* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    outline: none;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.hero-section {
    background: url('../img/banner-bg.png') no-repeat center;
    background-size: cover;
    height: 100vh;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 15px 0;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
}

.col-50 {
    width: 50%;
    padding: 0 15px;
}

.col-100 {
    width: 100%;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 600;
}

.hero-content p {
    font-size: 25px;
}
.hero-content .cheking-text{
    font-size: 20px;
}

.hero-content form {
    margin-top: 40px;
}

label {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;  
}

input {
    height: 45px;
    background-color: #dfdfdf;
    width: 90%;
    padding: 5px;
    font-size: 16px;
}

.my-30 {
    margin: 30px 0;
}

.custom-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 22px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.custom-radio:hover input~.checkmark {
    background-color: #ccc;
}

.custom-radio input:checked~.checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input:checked~.checkmark:after {
    display: block;
}

.custom-radio .checkmark:after {
    top: 7px;
    left: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
}
.mt-60{
    margin-top: 60px;
}

input[type="submit"]{
    background-color: #FB3800;
    color: #000;
    border-radius: 30px;
    margin: 0 auto;
    width: max-content;
    padding: 10px 30px;
    font-size: 20px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: .4s all;
    display: inline-block;
}
input[type="submit"]:hover{
    background-color: transparent;
    border-color: #FB3800;
    color: #000;
}
.logo{
    text-align: right;
}
.privacy-policy {
	margin-top: 0;
	text-align: right;
	text-decoration: underline !important;
}
.inner-page .logo{
    text-align: left;
}
.privacy-section{
    background: rgb(238,177,0);
    background: linear-gradient(90deg, rgba(238,177,0,1) 0%, rgba(239,184,19,1) 100%);
}
.mb-50{
    margin-bottom: 50px;
}
.privacy-section h1{
    font-size: 50px;
    margin-bottom: 30px;
}
.privacy-section p{
    margin-bottom: 30px;
}
.privacy-section h2{
    font-size: 30px;
    margin-bottom: 20px;
}
.privacy-section ul{
    margin-bottom: 30px;
}
.d-none{
    display: none;
}
@media only screen and (max-width: 991px){
    .hero-section .container > .custom-row {
        flex-direction: column-reverse;
    }
    .col-50{
        width: 100%;
    }
    .mb-md-20{
        margin-bottom: 20px;
    }
    .logo {
        text-align: left;
    }
    .privacy-policy {
        text-align: left;
    }
}
@media only screen and (max-width: 767px){
    .container {
        max-width: 100%;
        padding: 40px 15px 0;
    }
    .logo a {
    	display: block;
    	width: 100%;
    	max-width: 180px;
    	margin-bottom: 14px;
    }
    .logo a img {
	    max-width: 100%;
    }
    .hero-section{
        height: auto;
        padding-bottom: 40px;
    }
    .hero-content p{
        font-size: 16px;
    }
    .hero-content h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .hero-content .cheking-text {
        font-size: 16px;
        width: 72%;
    }
    label {
        font-size: 16px;
    }
    input[type="submit"],
    .custom-radio {
        font-size: 16px;
    }
    .hero-section,
    html,body{
        overflow-x: hidden !important;
    }
    .d-none {
        display: inline;
    }
    .privacy-policy{
        margin-top: 0;
    }
    .d-block{
        display: none;
    }
    .mt-60 {
    	margin-top: 20px;
    }
    
}