@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

*,
*::after,
*::before {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --offwhite: #dedede;
  --muted: #999da2;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #202124;
  color: #fff;
}

/* header */

/* google container */
.container {
  all: unset;
  border: 1px dotted #404040;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 660px;
}
.radios-row {
  max-width: 350px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.col {
  display: flex;
  margin: 10px 0;
}
/* google container */

/* nav */
.top-nav ul {
  display: flex;
  justify-content: right;
  align-items: center;
  list-style: none;
  margin: 10px;
}
.top-nav li {
  padding: 10px;
}
.top-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
}
.top-nav li:hover:nth-child(1),
.top-nav li:hover:nth-child(2) {
  text-decoration: underline;
}
.dots {
  display: block;
  flex-direction: row;
  align-items: center;
}

.dot-circle {
  position: absolute;
  margin-top: -7.5px;
  margin-left: -7.75px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #999da22f;
  display: none;
}
.dots:hover .dot-circle {
  display: block;
  cursor: pointer;
}
.dots-row {
  display: flex;
  align-items: center;
}
.dot {
  width: 3.75px !important;
  height: 3.75px !important;
  background: white;
  border-radius: 50%;
  margin: 1.5px;
}
.btn-primary {
  font-size: 14px !important;
  font-family: "Roboto", sans-serif;
  background: #8ab4f8;
  margin: 0px 8px;
  padding: 9px 23px;
  color: #000 !important;
  border-radius: 4px;
}
/* .nav */

/* .header */

/* main */
main {
  margin-top: 0px;
}
main .row,
main .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 15px 0;
}
main * {
  display: block;
}
.searchIcon {
  position: relative;
}
.searchIcon::before,
.searchIcon::after {
  content: "";
  position: absolute;
}
.searchIcon::before {
  width: 12px;
  height: 12px;
  background: none;
  border: 2px solid #fff;
  border-radius: 50%;
  top: -10px;
  left: 16px;
}
.searchIcon::after {
  width: 2px;
  height: 8px;
  background: #fff;
  transform: rotate(-45deg);
  top: 0px;
  left: 28px;
}
.logo-img {
  width: 200px;
}
#searchBox {
  width: 90%;
  max-width: 582px;
  height: 46px;
  background: none;
  border-radius: 100px;
  border: 1px solid #5f6368;
  padding: 0 52px 0 52px;
  color: #fff;
  outline: none;
  font-size: 16px;
}
.search-row:hover #searchBox,
#searchBox:focus {
  background: #303134;
  border: #303134;
}
.btn-secondary {
  position: relative;
  background: #303134;
  margin: 11px 4px;
  padding: 10px 16px;
  color: #ffff;
  border: none;
}
.btn-secondary:first-child, .btn-secondary:nth-child(2) {
  margin-right: 10px;
}
.btn-secondary:hover {
  outline: 1px solid #5f6368;
  cursor: pointer;
}
/* .main */

/* footer */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  background-color: #171717;
}
footer nav {
  border-top: 1px solid #dedede10;
}
footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
footer ul li {
  margin-left: 0;
  font-size: 14px;
  padding: 15px;
}
footer li a {
  margin: 0;
  padding: 15px;
  text-decoration: none;
  color: var(--muted);
}
footer li a:hover {
  text-decoration: underline;
}
footer .location {
  margin-left: 30px;
  padding: 15px 0;
  font-size: 14px;
  color: var(--muted);
}
/* .footer */
