:root {
  --color-primary: #9eb7af;
  --color-primary-hover: #6d857d;
  --color-secondary: #0d1424;
  --font-primary: "Montserrat", sans-serif;
  --time: 0.25s;
  --holder-color: #d6d6d6;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  --container-width: 1400px;
  margin: 0;
  font-size: 16px;
  background: #ffffff;
  /* background: #f5f5f7; */
  font-family: var(--font-primary);
}

.main {
  --space-x: 120px;
  --space-y: 140px;
  --space-z: 160px;
}

a {
  color:#090909;
  text-decoration: none;
  -moz-transition: all var(--time) ease;
  -o-transition: all var(--time) ease;
  -webkit-transition: all var(--time) ease;
  -ms-transition: all var(--time) ease;
  transition: all var(--time) ease;
}

a:hover {
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
}

p:only-child,
p:last-child {
  margin-bottom: 0;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  line-height: 24px;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

input,
select,
button,
textarea {
  cursor: pointer;
  font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

button {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  line-height: inherit;
}

span {
  display: inline-block;
}

select {
  background-image: url("assets/images/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:focus {
  outline: none;
}

label {
  display: inline-block;
  margin: 0 0 7px 0;
  font-size: 13px;
}

input.form-field {
  --height: 52px;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
}

textarea {
  height: 240px;
  resize: none;
  padding: var(--padding);
}

textarea,
.form-field {
  display: block;
  width: 100%;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0px 0px 5px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px -3px rgba(0, 0, 0, 0.75);
  -webkit-border-radius: var(--radius);
  -moz-border-radius: var(--radius);
  border-radius: var(--radius);
}

iframe {
  border: 0;
  vertical-align: bottom;
}

.w-100 {
  width: 100%;
}

.vh-100 {
  height: 100vh;
}

.relative {
  position: relative;
}

.container {
  margin: auto;
  max-width: var(--container-width);
  width: 100%;
}

.bg-primary {
  background-color: var(--color-primary);
}

.invert-img{
  filter: invert(100%);
  max-width: 25px;
}

.black-icn{
  max-width:25px;
}

.link-outline:hover .black-icn{
  filter: invert(100%);
}

/* -------------------------------------------------- */

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: none;
  border-bottom: 1px solid #dddddd;
  text-align: left;
  padding: 12px 4px;
}

/* -------------------------------------------------- */

.px-100{
  padding-top:100px;
  padding-bottom: 100px;
}

.link-black{
  padding:8px 12px;
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
  background: var(--color-primary);
  border-radius: 6px;
}

.agent-profile .link-black{  padding: 0px 15px;
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
  background: var(--color-primary);
  border-radius: 10px;
  line-height: 52px;
  /* height: 52px; */
  text-align: center;}
.link-black:hover{
  background: var(--color-primary-hover);
}



.tabs_nav_menu {
  display: flex
;
  flex-wrap: wrap;
  column-gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
  border-bottom: 1px solid #dddddd;
}
.tabs_nav_menu a {
  display: block;
  padding:0 0 5px 0 ;
  font-weight: 600;
  font-size: 20px;
  color: #090909;
  position: relative;
}
.tabs_nav_menu li:not(.active) a {
  color: #ABABAB;
}

.tabs_nav_menu a::after {
  content: "";
  position: absolute;
  left:0;
  bottom: 0;
  width:0;
  height: 2px;
  background: var(--color-primary);
}
.tabs_nav_menu li.active a::after{
  width: 100%;
}

.tabs_content {
  overflow: hidden;
  padding-top: 35px;
}

.tabs_content div:not(:first-child) {
  display: none;
}