


/*--------main color typhography--------*/
:root {
    --sk-primary: #025630;
    --sk-secondary: #8DC63F;
    --sk-text: #000000;
    --sk-white: #ffffff;
    --sk-hover: #000000;
    --sk-gray: #F5F5F5;
    --sk-light-gray: #BFBFBF;
    --sk-border: #D5D5D5;
    --sk-light-green: #EFF7E4;
}
/*--------End main color typhography--------*/

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    font-weight: 500;
    font-style: normal;
    font-family: "proxima-nova",sans-serif;
    color: var(--sk-text);
    font-size: 18px;
    line-height: 28px;
}

h1,h2,h3,h4,h5,h6,.font-40,div.maxtitle-1,p.maxtitle-1,div.maxtitle-2,p.maxtitle-2,div.maxtitle-3,p.maxtitle-3,div.maxtitle-4,p.maxtitle-4,div.maxtitle-5,p.maxtitle-5,div.maxtitle-6,p.maxtitle-6 {
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--sk-primary);
    font-weight: 700;
    font-family: "mencken-std-head",sans-serif;
}

h1,
h1.maxtitle-1,
h2.maxtitle-1,
h3.maxtitle-1,
h4.maxtitle-1,
h5.maxtitle-1,
h6.maxtitle-1,
div.maxtitle-1,
p.maxtitle-1 {
    font-size: 80px;
    line-height: 84px;
}
h2,
h1.maxtitle-2,
h2.maxtitle-2,
h3.maxtitle-2,
h4.maxtitle-2,
h5.maxtitle-2,
h6.maxtitle-2,
div.maxtitle-2,
p.maxtitle-2  {
    font-size: 38px;
    line-height: 49px;
}
h3,
h1.maxtitle-3,
h2.maxtitle-3,
h3.maxtitle-3,
h4.maxtitle-3,
h5.maxtitle-3,
h6.maxtitle-3,
div.maxtitle-3,
p.maxtitle-3  {
    font-size: 20px;
    line-height: 25px;
}
h4,
h1.maxtitle-4,
h2.maxtitle-4,
h3.maxtitle-4,
h4.maxtitle-4,
h5.maxtitle-4,
h6.maxtitle-4,
div.maxtitle-4,
p.maxtitle-4 {
    font-size: 20px;
    line-height: 26px;
}
h5,
h1.maxtitle-5,
h2.maxtitle-5,
h3.maxtitle-5,
h4.maxtitle-5,
h5.maxtitle-5,
h6.maxtitle-5,
div.maxtitle-5,
p.maxtitle-5 {
    font-size: 18px;
    line-height: 26px;
}
h6,
h1.maxtitle-6,
h2.maxtitle-6,
h3.maxtitle-6,
h4.maxtitle-6,
h5.maxtitle-6,
h6.maxtitle-6,
div.maxtitle-6,
p.maxtitle-6 {
    font-size: 16px;
    line-height: 24px;
}
p {
    margin:0 0 20px;
}
strong {
    font-weight: 700;
}
ul,ol {
    padding:0 0 0 20px;
    margin: 0px 0px 20px;
}
ul li,ol li {
    margin: 0 0 0px;
    padding: 0px;
}
a { 
    color: var(--sk-secondary);
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a:hover, a:visited, a:focus{
    text-decoration: none;
    outline: none;
} 
a:hover {
    color: var(--sk-primary);
    text-decoration: none;
}  
img {
    max-width: 100%;
    height: auto;
}
input, textarea, a, img {
    outline: none !important;
    resize: none;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number] {
    -moz-appearance:textfield;
}
section:before, section:after{
    clear: both;
    display: table;
    content: "";
}
section{
    position: relative;
    clear: both;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.text-up {
    text-transform: uppercase;
}
/*input[type="text"] , input[type="password"] , input[type="email"] , input[type="url"] , input[type="phone"] , textarea{
    border: 1px solid #58646a;
    width: 100%;
    padding: 0 20px;
    background: #ffffff;
    //height: 42px;
}*/

/*textarea{
    height: 150px;
    resize: none;
    padding: 20px;
}*/
table{  
    margin-bottom: 0px;
    overflow-x: auto;
}
td , th{
    padding: 10px 20px;
    border-right: 1px solid #e1e1e1;
    background: #fff;
}
th,tr{  
    border: 1px solid #e1e1e1;
}
button:focus {
    outline: none;
}

.btn-outer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.btn-outer.right-align {
    justify-content: flex-end;
}
.btn-outer.center-align {
    justify-content: center;
}
.main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px 8px;
    background-color: var(--sk-secondary);
    box-shadow: none;
    border-radius: 17px;
    border: none;
    color: var(--sk-text);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    overflow: hidden;
    z-index: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0;
}
.main-btn.light-btn {
    border: 1px solid var(--sk-text);
    background-color: transparent;
}
.main-btn.white-btn {
    background-color: var(--sk-white);
    color: var(--sk-text);
}
.main-btn.white-btn:before {
    border-bottom-color: var(--sk-secondary);
}
.main-btn i {
    position: relative;
    display: inline-flex;
    margin-left: 20px;
}
.main-btn i img {
    width: 14px;
    height: auto;
    transition: all 0.3s ease-out;
}
.hover-icon {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.main-btn:hover .normal-icon {
    opacity: 0;
}
.main-btn:hover .hover-icon {
    opacity: 1;
}
.main-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}
.main-btn:before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-bottom: 80px solid var(--sk-primary);
    transform: translateX(-100%);
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
    z-index: -1;
}
.main-btn:hover:before {
    transform: translateX(0);
}
.main-btn:hover {
  color: var(--sk-white);
  text-decoration: none;
}
.main-btn:focus {
    outline: none;
}
.content-title,
.content-row,
.content-info,
.content-blog,
.content-img {
    position: relative;
    width: 100%;
}
.content-middle .row > [class^="col-"] {
    align-self: center;
}
.content-bottom .row > [class^="col-"] {
    align-self: flex-end;
}
.center-align {
    text-align: center;
}
.right-align {
    text-align: right;
}
.gallery-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all 0.3s ease-out;
}
.gallery-item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.scroll-top {
    position: fixed;
    display: inline-block;
    width: 40px;
    height: 40px;
    bottom: 70px;
    right: 15px;
    background-color: var(--sk-secondary);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.scroll-top:after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    background: url(../images/angle-up.svg) no-repeat center;
    background-size: contain;
}
.scroll-top.sticky {
    opacity: 1;
    visibility: visible;
}
.equal-column > .row > [class^="col-"] {
    flex: 1;
}
.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
   padding-right: 0px;
   padding-left: 0;
}
.grid-55 > .row {
    margin-left: -55px;
    margin-right: -55px;
}
.grid-55 > .row > [class^="col-"]{
    padding-left: 55px;
    padding-right: 55px;
}
.white-color h1,
.white-color h2,
.white-color h3,
.white-color h4,
.white-color h5,
.white-color h6,
.white-color span,
.white-color {
    color: var(--sk-white);
}
.black-color {
    color: var(--sk-text);
}
.bg-black {
    background-color: var(--sk-text);
}
.bg-green {
    background-color: var(--sk-primary);
}
.bg-parrot {
    background-color: var(--sk-secondary);
}
.bg-light-green {
    background-color: var(--sk-light-green);
}
/*---------header-part---------*/

.main-part {
    position: relative;
}
.main-area,
.main-area:not(.main-vertical)>.container,
.main-content-wrap,
.main-col,
.main-element {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}
.main-area {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: stretch
}
.main-content-wrap {
    width: 100%;
}
.main-col {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.main-col.main-left-col {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start
}

.main-col.main-center-col,
.main-area .main-element {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.main-col.main-right-col {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end
}

.main-col:empty {
    display: none
}

.main-area.main-content-top .main-col {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start
}

.main-area.main-content-middle .main-col,
.main-area .main-element {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.main-area.main-content-bottom .main-col {
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end
}

.row,
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 30px;
}

.header-part {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    padding: 18px 0px;
    background-color: var(--sk-text);
}
body.logged-in.admin-bar .header-part {
    top:32px;
}
.home .header-part {
    background-color: transparent;
}
.home .header-part.sticky {
    background-color: var(--sk-text);
}
.header-part.sticky {
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.35);
}
.header-logo {
    position: relative;
    display: flex;
}
.header-logo img {
    width: 229px;
    height: auto;
}
.header-part.sticky .header-logo img {
    width: 175px;
}
.main-menu {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.main-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0;
    margin: 0 0 0 40px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.main-menu > li:first-child {
    margin-left: 0;
}
.main-menu > li > a {
    display: inline-block;
    position: relative;
    color: var(--sk-white);
    font-size: 13px;
    line-height: 16px;
    padding: 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
} 
.main-menu > li:hover > a,
.main-menu > li.active > a {
    color: var(--sk-secondary);
}
.main-menu > li.menu-btn > a {
    padding: 7px 11px 7px 11px;
    color: var(--sk-text);
    background-color: var(--sk-white);
    border: 1px solid var(--sk-secondary);
    font-weight: 400;
    border-radius: 0px;
    overflow: hidden;
}
.main-menu > li.login-btn > a {
    text-transform: initial;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}
.main-menu > li.login-btn:before {
    position: relative;
    content: '';
    display: inline-block;
    width: 1px;
    height: 36px;
    background-color: #EEEEEE;
    margin-right: 35px;
}
.main-menu > li.menu-btn > a span {
    position: relative;
    z-index: 1;
}
.main-menu > li.menu-btn > a:before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-bottom: 80px solid var(--sk-secondary);
    transform: translateX(-100%);
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
    z-index: 0;
}
.main-menu > li.menu-btn > a:hover {
    color: var(--sk-white);
}
.main-menu > li.menu-btn > a:hover:before {
    transform: translateX(0);
}
/*------mobile-menu-------*/
body.sk-hidden  {
    overflow: hidden;
}
.mobile-header {
    display: none;
}
.desktop-header,
.mobile-header {
    width: 100%;
}
.canvas-menu .sk-dropdown-toggle {
    width: 32px;
    height: 18px;
    position: relative;
    display: inline-block;
}
.canvas-menu .sk-dropdown-toggle span {
    position: absolute;
    display: inline-block;
    width: 100%;
    left: 0;
    top: 8px;
    height: 3px;
    background-color: var(--sk-white);
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform,opacity;
}
.canvas-menu .sk-dropdown-toggle span:before {
    position: absolute;
    display: inline-block;
    content: '';
    left: 0;
    top: -8px;
    width: 100%;
    height: 3px;
    background-color: var(--sk-white);
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform,opacity;
}
.canvas-menu .sk-dropdown-toggle span:after {
    position: absolute;
    display: inline-block;
    content: '';
    left: 0;
    top: 8px;
    width: 100%;
    height: 3px;
    background-color: var(--sk-white);
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform,opacity;
}
.canvas-menu .sk-dropdown-toggle.open span {
    transform: translate3d(0,0px,0) rotate(45deg);
}
.canvas-menu .sk-dropdown-toggle.open span:before {
    transform: rotate(-45deg) translate3d(8px,-8px,0);
    opacity: 0;
}
.canvas-menu .sk-dropdown-toggle.open span:after {
    transform: translate3d(0,-8px,0) rotate(-90deg);
}
.canvas-menu .sk-dropdown-toggle::after {
    display: none;
}
.mobile-header .canvas-menu,
.mobile-header .main-left-col {
    z-index: 99999;
}
.sk-offcanvas-content {
    position: fixed;
    left: 0;
    width: 100%;
    max-width: 100%;
    top: -100%;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    background-color: var(--sk-text);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    transition: all 0.35s;
}
.sk-offcanvas-content.open {
    top: 0px;
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
} 
.sk-offcanvas-content .wp-sidebar {
    overflow-x: hidden;
    height: 100%;
    padding: 0px;  
    margin: 0;
}
.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: block;
    margin: auto;
    padding: 170px 30px 30px;
}
ul.sk-mobile-menu {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
ul.sk-nav-menu > li {
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
    float: left;
    display: inline-block;
    padding: 0;
}
ul.sk-mobile-menu > li {
    position: relative !important;
    display: block;
    width: 100%;
    padding: 10px 0;
}
ul.sk-mobile-menu > li > a {
    color: var(--sk-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    position: relative;
    display: block;
    letter-spacing: 0;
    text-decoration: none;
}
ul.sk-mobile-menu > li.menu-btn {
    margin-top: 30px;
}
ul.sk-mobile-menu > li.menu-btn > a {
    padding: 7px 11px 7px 11px;
    color: var(--sk-text);
    background-color: var(--sk-white);
    border: 1px solid var(--sk-secondary);
    font-weight: 400;
    border-radius: 0px;
    overflow: hidden;
    display: inline-block;
}
ul.sk-mobile-menu > li.menu-btn > a span {
    position: relative;
    z-index: 1;
}
ul.sk-mobile-menu > li.menu-btn > a:before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-bottom: 80px solid var(--sk-secondary);
    transform: translateX(-100%);
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
    z-index: 0;
}
ul.sk-mobile-menu > li.menu-btn > a:hover:before {
    transform: translateX(0);
}
ul.sk-mobile-menu > li.active > a {
    color: var(--sk-secondary);
} 
ul.sk-mobile-menu > li.menu-btn > a:hover {
    color: var(--sk-white);
}
/*-------------end-----------------*/

/*---------main-part---------*/
body.sk-hidden {
    overflow: hidden;
}
body {
    padding-top: 90px;
}
.home {
    padding-top: 0;
}
.hero-banner {
    position: relative;
    padding: 216px 0 191px;
}
.hero-caption {
    position: relative;
    display: block;
    z-index: 2;
}
.hero-caption .sub-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}
.sub-title {
    position: relative;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--sk-light-gray);
}
.hero-caption p,
.hero-caption h1,
.hero-caption .sub-title {
    color: var(--sk-white);
}
.hero-caption h1 {
    margin-bottom: 15px;
}
.hero-caption p {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}
.max-width-1098 {
    max-width: 1098px;
    margin-left: auto;
    margin-right: auto;
}
.feature-row {
    width: 90vw;
    max-width: 1850px;
    margin-left: auto;
    margin-right: auto;
}
.feature-row .row [class^="col-"] {
    padding: 45px 30px;
    border-right: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
}
.feature-row .row [class^="col-"]:last-child {
    border-right: none;
    border-bottom: none;
}
.feature-blog {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--sk-primary);
    border-radius: 50%;
    margin-bottom: 35px;
}
.feature-blog h3 {
    font-family: "proxima-nova",sans-serif;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
    max-width: 326px;
    margin-left: auto;
    margin-right: auto;
}
.feature-blog p {
    font-weight: 300;
    margin-bottom: 0;
}
.testimonial-image-section {
    position: relative;
    display: flex;
    background-color: #FAFAFA;
    padding: 45px 50px 55px;
}
.testimonial-image-left {
    position: relative;
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}
.testimonial-image-right {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 60%;
    padding-left: 100px;
}
.max-container-1630 {
    max-width: 1720px !important;
    padding-left: 50px;
    padding-right: 50px;
}
.testimonial-image-div:before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--sk-secondary);
    display: flex;
    border-radius: 50%;
    width: 50%;
    height: 60%;
}
.testimonial-image-div img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.testimonial-image-quote-top {
    position: relative;
    display: flex;
    margin-bottom: 72px;
    margin-top: -10px;
}
.testimonial-image-quote-top img {
    width: 116px;
}
.testimonial-image-right p {
    font-family: "mencken-std-head",sans-serif;
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 62px;
}
.testimonial-image-right cite {
    font-style: normal;
    color: var(--sk-light-gray);
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 100px;
}
.testimonial-image-right cite strong {
    display: block;
    color: var(--sk-secondary);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 5px;
}
.testimonial-image-quote-bottom {
    position: absolute;
    right: 60px;
    bottom: -20px;
}
.testimonial-image-quote-bottom img {
    width: 116px;
}
.checklist h3 {
     font-family: "proxima-nova",sans-serif;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
}
.checklist ul {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}
.checklist li {
    position: relative;
    display: block;
    padding: 0 0 0 30px;
    margin: 0 0 7px;
}
.checklist li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: url(../images/check-circle.svg) no-repeat center;
    background-size: contain;
    display: block;
}
.image-half-width {
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.contact-row {
    position: relative;
    display: block;
    max-width: 1296px;
    margin-left: auto;
    margin-right: auto;
}
.contact-row .row {
    --bs-gutter-y: 32px;
    --bs-gutter-x: 35px;
}
.input-div {
    position: relative;
    display: block;
}
.input-div label {
    position: relative;
    display: block;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
}
.input-div input,
.input-div textarea {
    position: relative;
    display: block;
    width: 100%;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    border: 1px solid #B9B9B9;
    border-radius: 6px;
    padding: 9px 19px;
    transition: all 0.3se ease-out;
    color: var(--sk-text);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}
.submit-btn {
    text-align: center;
    margin-top: 50px;
}
.submit-btn .main-btn {
    background-color: transparent;
    border: 1px solid var(--sk-secondary);
    color: var(--sk-secondary);
    border-radius: 0;
    font-size: 12px;
    line-height: 14px;
    padding: 13px 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    min-width: 130px;
}
.submit-btn .main-btn span {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.submit-btn .main-btn:hover {
    border-color: var(--sk-primary);
    color: var(--sk-white);
}
/*-----------------end-main---------------*/


/*--------------footer------------------*/
.footer-part {
    position: relative;
    width: 100%;
    background-color: var(--sk-text);
}
.footer-top {
    position: relative;
    padding: 24px 0;
}
.footer-logo {
    text-align: center;
    margin-bottom: 28px;
}
.footer-logo img {
    width: 229px;
}
.footer-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 5px 0;
}
.footer-menu li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.footer-menu li:before {
    position: relative;
    display: flex;
    content: '|';
    margin: 0 10px;
    color: var(--sk-white);
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
}
.footer-menu li:first-child:before {
    display: none;
}
.footer-menu li a {
    color: var(--sk-white);
    text-decoration: none;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
}
.footer-bottom {
    position: relative;
    width: 100%;
    border-top: 1px solid #727272;
    padding: 20px 0;
}
.footer-bottom p {
    color: #6F6F6F;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 8px;
}
.max-container-1700 {
    max-width: 1700px;
}
.error-title h1 {
    font-size: 200px;
    line-height: 1;
}
.privacy-policy .content-row h2,
.privacy-policy .content-row h3,
.privacy-policy .content-row h4,
.privacy-policy .content-row h5,
.privacy-policy .content-row h6 {
    margin-top: 40px;
}
.accordion .accordion-item {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--sk-white);
}
.accordion .accordion-item:first-child {
    margin-top: -20px;
}
.accordion .accordion-button {
    position: relative;
    padding: 25px 0 25px 35px;
    color: var(--sk-white);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.accordion .accordion-body {
    padding: 0 0 25px 35px;
    color: var(--sk-white);
}
.accordion .accordion-body *:last-child {
    margin-bottom: 0;
}
.accordion .accordion-body ul ul {
    margin-left: 0px;
    margin-bottom: 10px !important;
    margin-top: 10px;
    list-style: disc;
}
.accordion .accordion-body ul li {
    margin: 0 0 10px;
    padding: 0 0 0 5px;
}
.accordion .accordion-button::after {
    display: none;
}
.accordion .accordion-button span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}
.accordion .accordion-button span:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    background: url(../images/plus-white.svg) no-repeat center;
    background-size: contain;
}
.accordion .accordion-button[aria-expanded="true"] span:after {
    background: url(../images/minus-white.svg) no-repeat center;
    background-size: contain;
}