:root {
  --dark: #313131;
  --gray1: #8e8e8e;
  --gray2: #d3d3d3;
  --light: #fff;
  --light1: #f3fafe;
  --primary: #05367a;
  --secondary: #ca252b;
}

html,
body {
  background: var(--light);
  color: var(--dark);
  font-size: 14px;
  font-family: "Assistant", sans-serif;
}
a {
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
  outline: none;
}
img {
  width: 100%;
}
p {
  font-family: "Assistant", sans-serif;
  font-size: 15px;
  color: var(--dark);
  font-weight: 400;
  margin: 0 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}
h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 15px;
}
@media (max-width: 992px) {
  p {
    font-size: 13px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 30px;
  }
  hr {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.btn {
  font-weight: 700;
}
.btn.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}
.btn.btn-primary:hover {
  background: var(--light);
  color: var(--primary);
}
.btn.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}
.btn.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--light);
}
.btn.btn-dark {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--light);
}
.btn.btn-dark:hover {
  background: var(--light);
  color: var(--dark);
}
.btn.btn-outline-light {
  border-color: var(--light);
  color: var(--light);
}
.btn.btn-outline-light:hover {
  background: var(--dark);
  color: var(--light);
}


input[type=text], input[type=number], input[type=date], select, textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 0;
  outline: 0;
  box-shadow: none;
  background-color: #fff;
  font-size: 16px;
  border-radius: 3px;
}
input[type=text]::placeholder, input[type=number]::placeholder, input[type=date]::placeholder {
  font-size: 16px;
}
input[type=text]:focus, input[type=number]:focus, input[type=date]:focus {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.8);
}
.form-group label {
  font-size: 16px;
}
.form-group label sup {
  color: red;
  font-size: 16px;
  line-height: 1;
  top: 0;
  left: 3px;
}
.form-group .invalid-feedback {
    color:red;
    font-size:14px;
    line-height:1.1;
}
.form-group .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}
.form-group .flex button {
  white-space: nowrap;
  height: 50px;
  background-color: #d7d7d7;
  border: 1px solid #cfcfcf;
  outline: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-radius: 3px;
  padding: 0 15px;
  transition: all 0.3s;
}
.form-group .flex button:hover {
  background-color: #000;
  color: #fff;
}

.custom-radio {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.custom-radio label {
  margin: 0;
}
.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.custom-radio [type="radio"]:checked + label,
.custom-radio [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.custom-radio [type="radio"]:checked + label:before,
.custom-radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #dbdbdb;
    background: #fff;
    border-radius: 3px;
}
.custom-radio [type="radio"]:checked + label:before {
    border: 1px solid #113d82;
    background: #113d82;
}
.custom-radio [type="radio"]:checked + label:after,
.custom-radio [type="radio"]:not(:checked) + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    transform: rotate(45deg);
    height: 12px;
    width: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: all 0.2s ease;
}
.custom-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
}
.custom-radio [type="radio"]:checked + label:after {
    opacity: 1;
}

.custom-upload {
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding:10px 15px;
    background-color: #fff;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
}
.custom-upload button {
    font-size:17px;
    font-weight:500;
    border:0;
    outline:0;
    box-shadow:none;
    padding:0;
    background: none;
    flex-grow: 1;
    text-align: left;
}
.custom-upload .label span i {
    font-size:20px;
}


.select2.select2-container {
  width: 100% !important;
}
.select2.select2-container .select2-selection {
  border: 0;
  border-radius: 3px !important;
  height: 50px;
  outline: none !important;
  transition: all .15s ease-in-out;
}
.select2.select2-container .select2-selection .select2-selection__rendered {
  font-size: 16px;
  line-height: 50px;
  padding-right: 50px;
  padding-left: 15px;
}
.select2.select2-container .select2-selection .select2-selection__arrow {
  background: #fff;
  border-radius: 0;
  height: 49px;
  width: 50px;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.8);
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #878787 transparent transparent transparent;
  border-width: 6px 6px 0 6px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #878787 transparent;
    border-width: 0 6px 6px 6pxW;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
  border: 1px solid #34495e;
}
.select2.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 34px;
}
.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 0;
  height: 32px;
}
.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  line-height: 29px;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  position: relative;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}
.select2-container .select2-dropdown {
  background: transparent;
  border: none;
  margin-top: 3px;
}
.select2-container .select2-dropdown .select2-search {
  padding: 0;
}
.select2-container .select2-dropdown .select2-search input {
  font-size: 16px;
  outline: none !important;
  border: 1px solid #ddd !important;
  border-bottom: none !important;
  padding: 8px 10px !important;
}
.select2-container .select2-dropdown .select2-results {
  padding: 0;
}
.select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #eee;
}
.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #113d82;
}



.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}


header .header-top {
  background-color: #113d82;
  padding: 10px 0 30px;
}
header .header-top a.call-btn {
  display: inline-block;
  padding: 7px 20px;
  background: gray;
  color: white !important;
  font-size: 14px;
  border-radius: 10px;
}

header .navbar {
  background-color: var(--light);
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 900;
  padding: 0 75px 0 35px;
  margin-top: -20px;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}
header .navbar img {
  width: auto;
  height: 65px;
}
header .navbar #mainmenu {
  position: relative;
}
header .navbar #mainmenu ul li a:not(.btn) {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #282828;
  padding: 0 15px;
  line-height: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: solid 1px #eee;
}
header .navbar #mainmenu ul li a:not(.btn):hover,
header .navbar #mainmenu ul li.active a {
  color: #4161ac;
}
header .navbar #mainmenu ul li a.dropdown-toggle::after {
  box-sizing: border-box;
  height: 7px;
  width: 7px;
  border-style: solid;
  border-color: #000;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  margin-left: 8px;
}
header .navbar #mainmenu ul li.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}
header .navbar #mainmenu ul li:last-child a {
  border: 0;
}
header .navbar #mainmenu a.search {
  margin-left: 30px;
}
header .navbar #mainmenu a.search i {
  font-size: 18px;
  color: #000;
}
header .navbar #mainmenu .header-search-form {
  position: absolute;
  bottom: -40px;
  width: 208px;
  right: 0;
  z-index: 99999;
}
header .navbar #mainmenu .header-search-form .search-field {
    width: 100%;
    background-color: #191919;
    border: none;
    color: #A7A7A7;
    padding: 0 15px;
    height: 40px;
}
header .navbar #mainmenu .header-search-form .search-field:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}

.dropdown-menu {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}
.dropdown-menu .submenu {
  width: 100%;
  left: 100%;
  top: 0;
}
header .navbar #mainmenu .dropdown-menu .dropdown-item,
header .navbar #mainmenu .dropdown-menu .submenu a.nav-link {
  position: relative;
  padding: 20px 15px;
  line-height: 1;
  font-size: 15px;
  color: #282828;
  font-weight: 400;
  border: 0;
}
header .navbar #mainmenu .dropdown-menu .dropdown-item:hover,
header .navbar #mainmenu .dropdown-menu .submenu a.nav-link:hover {
  background-color: #0a0a0a;
  color: #4161ac;
}
header .navbar #mainmenu .dropdown-menu .dropdown:hover > .submenu {
  display: block;
}

@media (max-width: 1024px) {
  header .navbar {
    height: auto;
    padding: 0 10px;
  }
  header .navbar img {
    width: auto;
    height: 45px;
  }
  header .navbar .navbar-toggler {
    padding: 0;
  }
  header .navbar #mainmenu {
    margin: 0;
    position: absolute;
    width: 100%;
    background: #fff;
    top: 100%;
    left: 0;
    z-index: 60;
  }
  header .navbar #mainmenu .navbar-nav .nav-link {
    text-align: right;
    line-height: 35px;
  }
  header .navbar #mainmenu .navbar-nav .nav-item .btn {
    display: block;
    margin: 5px 0;
  }
  .navbar-toggler i {
    font-size: 30px;
    color: #000;
  }
  header .navbar #mainmenu a:not(.btn) {
    font-size: 18px;
    padding: 5px 15px;
  }
  header .navbar #mainmenu .call {
    text-align: center;
    padding: 15px 0;
    background: var(--primary);
    border-radius: 8px;
    margin-top: 10px;
    color: var(--light);
  }
  header .navbar #mainmenu .call i {
    font-size: 25px;
    padding: 0;
  }
  header .navbar #mainmenu .call a {
    color: var(--light);
  }
  header .navbar #mainmenu .dropdown-menu .dropdown-item {
    text-align: right;
  }
  .dropdown-menu {
    border: 0;
  }
}

.footer {
  background-color: #19212e;
  padding: 70px 0 0;
}
.footer h5 {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  position: relative;
  margin-bottom: 30px;
}
.footer ul {
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
  list-style: none;
  line-height: 28px;
}
.footer ul li a {
  font-size: 14px;
  color: #bebebe;
}
.footer ul li a:hover {
  color: var(--light);
}
.footer ul.link {
  margin: 0;
  padding: 0;
}
.footer ul.link li {
  position: relative;
  margin-bottom: 10px;
  list-style: none;
}
.footer ul.link li i {
  font-size: 11px;
  color: #bebebe;
  margin-right: 4px;
}
.footer ul.link li a {
  font-size: 14px;
  color: #bebebe;
}
.footer ul.link li a:hover {
  color: var(--light);
}
.footer p, .footer p strong {
  color: #bebebe;
}
.footer p.times {
  line-height: 30px;
}
.footer .footer-bottom {
  border-top: solid 2px #1d2532;
  padding: 28px 0;
  margin-top: 50px;
}
.footer .footer-bottom p {
  color: #bebebe;
  margin: 0;
}
@media (max-width: 1024px) {
  header.navbar {
    height: auto;
    padding: 20px 0;
    flex-flow: column;
  }
  .for-responsive {
    display: block;
    text-align: center;
    margin: 0 0 15px;
  }
  .navbar-brand {
    display: none;
  }
  .footer {
    padding: 20px 0 0;
  }
  .footer h5 {
    margin-top: 40px;
  }
  .footer p {
    font-size: 16px;
  }
  .footer .footer-bottom {
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  header .navbar {
    flex-flow: nowrap;
  }
  .for-responsive {
    display: none;
  }
  .navbar-brand {
    display: block;
  }
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: var(--gray2);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}


main {
  margin-top: -80px;
  padding: 0 0 100px;
  background-color: #F6F7F8;
}
.warranty-bg {
  height: 340px;
  width: 100%;
  object-fit: cover;
}
.registration-form {
  width: 100%;
  max-width: 770px;
  margin: 80px auto 0;
}
.registration-form h2 {
  color: #2C2B2B;
  font-size: 37px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.btn-submit {
  background-color: #4161ac;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  padding: 10px 90px;
  border: none;
  font-size: 18px;
  color: #fff;
  border-radius: 0;
}

.page-content {
    padding:50px 0;
    background-color:#fff;
}
.page-content .head {
    padding:0 30px;
}
.page-content .content {
    padding:30px 30px 0;
}
.page-content .content h3 {
    font-size:25px;
    text-transform: uppercase;
}
.page-content .content h3 span {
    color: #4161ac;
    font-weight: bold;
}
.page-content .content h4 {
    font-size:18px;
    text-transform: uppercase;
}
.page-content .content p {
    font-size:15px;
}

@media (max-width:1024px){
  .registration-form .col-6,
  .registration-form .col-8,
  .registration-form .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main {
    margin-top: -35px;
  }
  
    .warranty-bg {
      height: 130px;
    }
  header .header-top {
    text-align: center;
  }
  header .navbar #mainmenu a.search {
    display: none;
  }
  .registration-form {
    margin-top: 40px;
  }
  .footer .footer-bottom {
    text-align: center;
  }
}
