:root {
  --violet-color: #5964E0;
  --light-violet-color: #939BF4;
  --very-dark-blue-color: #19202D;
  --midnight-color: #121721;
  --white-color: #FFFFFF;
  --light-grey-color: #F4F6F8;
  --grey-color: #9DAEC2;
  --grey-color: #7A746E;
  --dark-grey-color: #6E8098;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--light-grey-color);
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  color: var(--very-dark-blue-color);
}

/*
  8. Create a root stacking context
*/


h1 {

  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29.77px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24.8px;
}

h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 17.36px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--dark-grey-color);
}

.btn-1 {
  width: 161px;
  background-color: var(--violet-color);
  color: white;
  padding: 16px 40px;
  border-radius: 10px;
  margin: 0 auto;
  /* margin-bottom: 104px; */
  font-size: 16px;
  font-weight: 700;
  line-height: 19.84px;
  text-align: center;
  transition: 0.3s;
}

.btn-1:hover {
  background-color: var(--light-violet-color);
}

.btn-2 {
  color: var(--violet-color);
  padding: 16px 40px;
  border-radius: 16px;
}

/* .btn-2 :hover {} */

.header {
  justify-content: space-between;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  width: 1440px;
  height: 162px;
  align-items: center;
  padding: 0px 165px;
  margin: 0 auto;
  margin-bottom: 144px;
  padding-top: 45px;
}

.container {
  width: 1440px;
  margin: 0 auto;
  margin-bottom: 104px;
}

.box-container {
  width: 1110px;
  margin: 0px 165px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 56px;
}

.box {
  display: flex;
  flex-direction: column;
  padding: 49px 32px 32px 32px;
  background-color: var(--white-color);
  border-radius: 10px;
  width: 350px;
  position: relative;
  margin-bottom: 35px;
}

.box img {
  position: absolute;
  top: -25px;
}

.box a {
  text-decoration: none;
}

.box .second_a {
  color: var(--violet-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 17.36px;
  margin-top: 44px;
}

.details_link h3:hover {
  color: var(--dark-grey-color);
}

.box h3 {
  margin-bottom: 17px;
  margin-top: 13px;
}

.header-content {
  width: 1110px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  background-color: var(--white-color);
  margin: 0 auto;
  margin-bottom: 60px;
  border-radius: 6px;
  padding: 0 16px 0 32px;
  margin-top: 45px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 312px;
}

.header-content input {
  width: 268px;
  border: none;
}

.location-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 3px solid var(--light-grey-color);
  border-left: 3px solid var(--light-grey-color);
  padding-left: 23px;
}

.search-control {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Customize the label (the container) */
.checkbox01 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 20px;
}

/* Hide the browser's default checkbox */
.checkbox01 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox01:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox01 input:checked ~ .checkmark {
  background-color: var(--violet-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox01 input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox01 .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox01 p {
  font-weight: bold;
}

.mobile_logos {
  width: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (width > 769px) {
  .mobile_logos {
    display: none;
  }
}

@media (width < 769px) {

  .header {
    width: 768px;
    padding: 42px 40px 86px 39px;
    margin: 0 auto;
    margin-bottom: 110px;
  }

  .header-content {
    width: 689px;
    height: 80px;   
    margin: 0 auto; 
    margin-top: 45px;
  }

  .container {
    width: 768px;
    margin: 0 auto;
  }

.checkbox01 {
  padding-left: 35px;
}

  .search-bar input {
    width: 102px;
    height: 16px;
  }

  .search-bar {
    padding-right: 20px;
  }

.location-bar input {
  width: 135px;
  height: 16px;
}

.location-bar {
  padding-right: 20px;
}

.btn-1 {
  margin-bottom: 61px;
}

.header .btn-1 {
  width: 80px;
  height: 48px;
  padding: 16px 14px;
  margin: 0;
}

.box-container {
  width: 689px;
  gap: 11px;
  margin: 0 auto;
}

.box {
  width: 339px;
}

body {
  width: 768px;
}

.mobile_logos {
  display: none;
}

}

@media (width < 376px ) {

  .header {
    width: 375px;
    padding: 0px;
    padding-left: 24px;
    padding-top: 32px;
    margin-bottom: 100px;
    background-position-x: -95px;
  }

.header-content {
  width: 327px;
  margin: 0;
  margin-top: 55px;
}

.container {
  width: 375px;
  margin: 0;
}

.box-container {
  width: 327px;
}

.location-bar {
  display: none;
}

.search-control .checkbox01 {
  display: none;
}

.search-control .btn-1 {
  display: none;
}

.mobile_logos {
  display: block;
  display: flex;
}

.search-bar img {
  display: none;
}

}


.scoot_details_top {
  display: flex;
  width: 730px;
  margin: 0 auto;
  margin-top: 44px;
  margin-bottom: 32px;
  background-color: var(--white-color);
  border-radius: 8px;
}

.scoot_texts {
  padding: 42px 40px;
  display: flex;
  gap: 282px;
  align-items: center;
}

.details_button a {
  text-decoration: none;
  color: var(--violet-color);
  padding: 16px 21px;
  border-radius: 6px;
  background-color: var(--light-grey-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.84px;
  text-align: center;
}

.details_button a:hover {
  background-color: var(--light-violet-color);
}

.details_container {
  width: 730px;
  height: 1257px;
  margin: 0 auto;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 48px 45px;
  margin-bottom: 80px;
}

.title {
  display: flex;
  gap: 161px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.Apply_button {
  text-decoration: none;
  color: var(--white-color);
  padding: 16px 21px;
  border-radius: 6px;
  background-color: var(--violet-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.84px;
  text-align: center;
}

.Apply_button:hover {
  background-color: var(--light-violet-color);
}

.title_texts h3 {
  color: var(--very-dark-blue-color);
  margin: 8px 0px 16px 0px;
  font-size: 28px;
  font-weight: 700;
  line-height: 34.73px;
  text-align: left;
}


.title_texts a {
font-size: 14px;
font-weight: 700;
line-height: 17.36px;
text-align: left;
color: var(--violet-color);
}

.details_container p {
  color: var(--dark-grey-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  margin-bottom: 40px;
}

.requirements h2 {
  color: var(--very-dark-blue-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 24.8px;
  text-align: left;
  margin-bottom: 28px;
}

.requirements p {
  margin-bottom: 24px;
}

.requirements ul {
  margin-bottom: 48px;
  margin-left: 15px;
}

.requirements li::marker {
  color: var(--violet-color);
}

.requirements ul li {
  color: var(--dark-grey-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}

.what_you_will_do h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24.8px;
  text-align: left;
  color: var(--very-dark-blue-color);
  margin-bottom: 28px;
}

.what_you_will_do p {
  margin-bottom: 24px;
}

.what_you_will_do li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: var(--dark-grey-color);
  margin-left: 15px;
}

.what_you_will_do li::marker {
  color: var(--violet-color);
}

footer {
  background-color: var(--white-color);
  width: 1110px;
  margin: 0;
  padding: 0px;
}

.footer_section {
  display: flex;
  width: 730px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 23px 0px;
}
