/*Default text color*/
body {
	color: #000;
	overflow-x: hidden;
}

html {
	overflow-x: hidden;
}

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

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a:link, a:visited {
	color: #000;
    text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*Global sites styles*/
body {
	cursor: default;
	font-family: 'Montserrat', sans-serif;
}

h1 {
	line-height: 1.3em;
}

.bold {
	font-weight: 600;
}

.italic {
	font-style: italic;
}

.gray {
	color: gray;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.container-2 {
	max-width: 1350px;
	width: 100%;
	margin: 0 auto;
}

.gold {
	color: #ac8f4d;
}

.f-right {
	float: right;
}

.btn {
	cursor: pointer;
}

.empty {
	width: 60%;
}

.w-700 {
	max-width: 700px;
}

.w-900 {
	max-width: 900px;
}

.center {
	text-align: center;
}

/*Header*/
header {
	background: #0c101c;
    color: #ac8f4d;
    font-family: 'Lato', sans-serif;
    position: fixed;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 6;
}

header .header-ab {
	position: absolute;
	top: 0;
	left: 0;
}

header a:link, header a:visited {
	color: #ac8f4d;
}
.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.left-side-header .address, .left-side-header .phone {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.address, .phone {
	display: flex;
	align-items: center;
	justify-content: space-around;
	cursor: pointer;
}

.address img, .phone img {
	padding-right: 10px;
	width: 25px;
}

header .phone-number {
	font-weight: 600;
	font-size: 1.1rem;
}

.social {
	display: inline-flex;
    align-items: center;
	justify-content: flex-start;
    width: 20%;
}

.phone {
	width: 20%;
	justify-content: center;
}

.address {
	width: 50%;
	justify-content: center;
}

.social img {
	max-width: 35px;
	width: 100%;
	padding: 0 5px;
	cursor: pointer;
}

.social img:hover {
	transform:  scale(1.1);
	transition: all 1s;
}

/*Nav bar menu*/

.top {
	margin-top: 50px;
}

nav {
	font-family: 'Lato', sans-serif;
}

nav .logo, nav .logo-mob {
	max-height: 50px;
	height: 100%;
}

nav .menu {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	width: 65%;
	cursor: pointer;
}

nav .menu .home::before {
	font-family: FontAwesome;
	content: '\f015';
	font-size: 1.7rem;
}

nav .menu .animation-line:hover::after {
    width: 100%;
    transition: width .3s;
}

nav .menu .animation-line::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}

nav .menu .home:hover, nav .menu .active {
	color: #ac8f4d;
	font-weight: 600;
}

nav .menu .home:hover::after, nav .menu li .none:hover::after {
    width: 0;
}

nav .menu .home::after, nav .menu li .none::after {
    content: '';
    display: block;
    width: 0;
}

.btn-change {
	background: #0c101c40;
    color: #0c101c;
    padding: 6px 8px;
    border-radius: 2px;
	font-weight: 600;
	cursor: pointer;
}

.btn-change:hover {
	transition: all 1s;
	background: #0c101cf0;
    color: #eee;
}

/*section 1*/

.sec__1 {
	background-image: url(../img/bg-top.jpg);
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 750px;
    max-height: 1005px;
    height: auto;
    background-repeat: no-repeat;
    filter: saturate(1.5) sepia(0.5);
}

.sec__1 .top_frame {
	position: absolute;
	top: 150px;
	left: 15%;
}

.sec__1 h1 {
	color: #eee;
	font-size: 50px;
	font-family: 'Lato', sans-serif;
	border: 5px solid #eee;
    padding: 10px 35px 10px 15px;
    display: block;
	background: #000000b8;
	font-weight: 100;
}

/*section 2*/

.sec__2 {
	margin: 10px auto;
}

.sec__2 img {
	max-width: 250px;
	width: 100%;
	-webkit-box-shadow: 5px 5px 15px 0px #000000; 
	box-shadow: 5px 5px 15px 0px #000000;
}

.sec__2 .flex #about {
	padding-left: 25px;
}

.h-line {
	border-left: 3px solid #ac8f4d;
	padding-left: 5px;
}

.h-line-white {
	border-left: 3px solid #eeeeee;
	padding-left: 5px;
}

/*section 3*/

.sec__3 {
	background-image: url('../img/bg-sec_3.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 400px;
    max-height: 663px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #eee;
}

.sec__3 .flex {
	justify-content: end;
}

.sec__3 .btn-change {
	background: #ffffff40;
    color: #eee;
}

.sec__3 .btn-change:hover {
	background: #ffffffb8;
    color: #000;
}

/*section 5*/

.sec__5 {
	background-image: url('../img/bg-sec_5.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 400px;
    max-height: 601px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #eee;
}

.sec__5 .btn-change {
	background: #ffffff40;
    color: #eee;
}

.sec__5 .btn-change:hover {
	background: #ffffffb8;
    color: #000;
}

/*footer*/

footer {
	margin: 10px auto 0 auto;
}

footer .flex {
	align-items: end;
}

footer ul li {
	cursor: pointer;
}

footer .left-side-footer .menu ul {
	margin-block-start: 0;
    margin-block-end: 0;
	padding-inline-start: 5px;
}

footer .left-side-footer .menu ul li {
	list-style-type: none;
	cursor: pointer;
}

footer .left-side-footer {
	width: 40%;
}

footer .left-side-footer .flex {
	margin-top: 25px;
}

footer .right-side-footer {
	width: 50%;
	max-width: 450px;
}

footer .left-side-footer .logo img {
	max-width: 200px;
	width: 100%;
}

footer .left-side-footer .social {
	width: auto;
}

footer .left-side-footer .social img {
	max-width: 50px;
}

footer .right-side-footer .form {
	max-width: 450px;
	width: 100%;
	margin: 10px auto;
	display: block;
	text-align: -webkit-center;
}

.sec__2_about .form {
	max-width: 450px;
	width: 100%;
	margin: 10px auto;
	display: block;
	text-align: -webkit-center;
}

footer .right-side-footer form input, footer .right-side-footer form textarea {
	width: 100%;
    display: block;
    max-width: 450px;
    height: 45px;
    margin: 15px auto;
    border: 2px solid #ac8f4d;
    padding: 10px 10px;
}

.sec__2_about form input, .sec__2_about form textarea {
	width: 100%;
    display: block;
    max-width: 450px;
    height: 45px;
    margin: 15px auto;
    border: 2px solid #ac8f4d;
    padding: 10px 10px;
}

footer .right-side-footer form textarea {
	height: 190px;
    resize: none;
}
footer .right-side-footer form button {
	box-shadow: none;
	border-color: #0000;
}

.sec__2_about form textarea {
	height: 190px;
    resize: none;
}
.sec__2_about form button {
	box-shadow: none;
	border-color: #0000;
}

footer .copyright {
	background: #0c101c;
	padding: 10px 0;
	color: #eee;
}

footer .copyright a,footer .copyright a:link, footer .copyright a:visited {
	color: #ac8f4d;
}

/*Szkolenia dla makijażystów*/

.sec__1_szkolenia {
	background: url(../img/BANER-SZKOLENIA-DLA-MAKIJAZYSTOW-1920X667.jpg);
    height: 500px;
    width: 100%;
    display: flex;
    background-position: center;
	background-size: cover;
    align-items: center;
    background-repeat: no-repeat;
}

.sec__3_szkolenia .box {
	width: 32%;
    background: #fbfbfb;
    padding: 20px;
    min-height: 515px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    border-radius: 25px;
	position: relative;
}

.sec__3_szkolenia .box .price {
	position: absolute;
	bottom: 10px;
	text-align: center;
	width: 100%;
	font-size: 26px;
    color: #ac8f4d;
    font-weight: 300;
}

.sec__3_szkolenia .flex {
	align-items: flex-start;
}

/*About site style*/
.sec__1_about {
	/* background: url(../img/about_me_3.jpg);
    height: 850px;
    width: 100%;
    display: flex;
    background-position: bottom;
    align-items: center;
    background-repeat: no-repeat;
	background-size: cover; */

	display: flex;
	justify-content: space-between;
	align-items: center;
	background-image: url(../img/about_me_3_08.25.jpg);
	height: 689px;
    background-position: left;
    background-size: cover;
	background-repeat: no-repeat;
}

.sec__1_e-book {
	background-image: url(../img/banner-e-book.jpg);
	height: 667px;
    background-position: bottom;
    background-size: cover;
	background-repeat: no-repeat;
}

.sec__1_about .flex {
	justify-content: flex-end;
    display: flex;
    width: 45%;
    float: right;
}

.sec__1_about h1 {
	font-size: 2em;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	color: #0c101c;
}

.sec__1_about img {
	max-width: 250px;
	width: 100%;
	-webkit-box-shadow: 5px 5px 15px 0px #000000; 
	box-shadow: 5px 5px 15px 0px #000000;
	margin-right: 25px;
}

.sec__1_about h2 {
	font-size: 30px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
}

.sec__1_about h3 {
	font-size: 20px;
	font-weight: 600;
	font-family: 'Lato', sans-serif;
	color: #0c101c;
	font-style: italic;
}

.sec__2_about {
	display: block;
	margin: 10px auto;
	padding-bottom: 30px;
}

.sec__2_about .w-700 {
	display: block;
	margin: 5px auto;
}

.translate-1, .translate-2, #services li span {
	color: #989898;
	font-size: 11px;
	cursor: pointer;
	font-weight: 400;
	font-style: normal;
}

/*Offer*/

.sec__1_offer {
	position: relative;
	height: 350px;
	width: 100%;
	max-width: 1920px;
}

.sec__1_offer_img {
	position: relative;
    background: linear-gradient(90deg, #ac8f4d 25%, #fff 100%);
    height: 100px;
    width: 100%;
    max-width: 1920px;
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    color: black;
    margin-top: 25px;
    font-size: 28px;
}

.sec__1_offer_img h1 {
	position: absolute;
    bottom: 25px;
}

.sec__1_offer .mine_slider {
	position: relative;
	height: 350px;
	width: 100%;
}

.sec__1_offer .mine_slider .slide_1 {
	background: url(../img/individual-1.jpg);
    height: 350px;
    width: 100%;
    display: flex;
    background-position: top;
    align-items: center;
    background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.sec__1_offer .mine_slider .slide_1 h2, .sec__1_offer .mine_slider .slide_1 p, .sec__1_offer .mine_slider .slide_1 .bon-info {
	color: #000;
}

.sec__1_offer .mine_slider .slide_2 {
	background: url(../img/bon-new-2.jpg);
    height: 350px;
    width: 100%;
    display: flex;
    background-position: center;
    align-items: center;
    background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.sec__1_offer .first {
	max-width: 600px;
	width: 100%;
	overflow-y: hidden;
}

.sec__1_offer .second {
	max-width: 350px;
	width: 100%;
}

.sec__1_offer p, .sec__1_offer h2 {
	color: #c1c1c1;
}

.sec__1_offer .flex {
	justify-content: center;
}

.sec__1_offer .btn-change {
	background: #c0c0c0e0;
}

.sec__2_offer {
	position: relative;
}

.sec__2_offer .flex {
	align-items: flex-start;
}

.sec__2_offer_wed {
	background-image: url('../img/wedding-1.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 550px;
    max-height: 600px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #eee;
}
.sec__2_offer_wed_1 {
	background-image: url('../img/wedding-1.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 550px;
    max-height: 600px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #eee;
}

.sec__2_offer_wed_2 {
	background-image: url('../img/wedding-2.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 550px;
    max-height: 600px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #111;
}

.sec__2_offer_wed_2026 {
	background-image: url('../img/banner_oferta_slubna_2026.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 667px;
    max-height: 867px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #ffffff;
}

.sec__2_offer h1 {
	font-size: 34px;
}


.sec__2_offer ul {
	list-style-type: none;
}

.sec__2_offer ul li {
	padding: 3px 0;
}

.sec__2_offer ul li > *:first-child::after {
	content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #101010, transparent);
}

.sec__2_offer ul li .btn-change, .sec__2_offer .right-content-offer .btn-change {
	font-size: 12px;
	background: #00A39E;
	color: #eee;
}

.sec__2_offer ul li .btn-change:hover, .sec__2_offer .right-content-offer .btn-change:hover {
	transition: all 1s;
	background: #06948F;
    color: #eee;
}

.price {
	padding-right: 21px;
    font-weight: 600;
    color: #111;
}

.brush-list li {
	margin: 5px;
}

.brush-list li::before {
	content: url('../img/brush.png');
	padding: 5px 10px;
}

.list-type-1 li::before {
	content: '\f192';
	font-family: FontAwesome;
	padding: 5px 10px;
	color: #ac8f4d;
}

.list-type-2 li::before{
	content: '\f111' !important;
	font-family: FontAwesome;
	padding: 5px 10px;
	color: #ac8f4d;
	font-size: 12px;
}

.bon-info {
	font-size: 16px;
	color: #c1c1c1;
	cursor: pointer;
	font-weight: 500;
}

/*services*/

.sec__2_services {
	margin-bottom: 40px;
}

.sec__2_services .list-type-1 li span {
	font-size: 22px;
}
.sec__2_services .list-type-1 li div {
	padding-left: 15px;
}

.sec__3_services {
	background-image: url('../img/lesson.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 550px;
    max-height: 600px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #000;
	margin: 25px auto;
}

.sec__3_services .empty {
	width: 100%;
}

.sec__3_services img {
	max-width: 250px;
	width: 100%;
	-webkit-box-shadow: 5px 5px 15px 0px #000000; 
	box-shadow: 5px 5px 15px 0px #000000;
}

.sec__3_services .flex div {
	padding-left: 25px;
	width: 100%;
}

.hr::after {
	content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #101010, transparent);
}

.sec__4_services {
	background-image: url('../img/wedding.jpeg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 550px;
    max-height: 600px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #eee;
}

.sec__4_services .list-type-2 {
	margin-left: 30px;
}

.sec__4_services .list-type-2 li {
	text-indent: -30px;
}
/*####################*/

.btn__to__top
{
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0c101c;
    padding: 0 7px;
    border-radius: 3px;
    cursor: pointer;
	z-index: 9;
}

.btn__to__top span::after
{
    content: "\f062";
    font-family: FontAwesome;
    font-size: 26px;
    color: #fff;
}

.maps, .order-info {
	max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: #dedede;
    position: fixed;
    top: 20%;
    margin-left: -400px;
    left: 50%;
    text-align: center;
	display: none;
	z-index: 9;
}

.order-info .order-info-container {
	padding: 25px 5px 10px 5px;
}

.map-container {
	display: flex;
    padding-top: 35px;
    align-items: center;
    justify-content: center;
}

.cookie-frame {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    position: fixed;
    bottom: 0;
	left: 0;
	display: block;
	padding: 10px 0 10px 0;
}

.cookie-frame .right {
	width: 100%;
	font-weight: 600;
}

.cookie-frame .right .d-agree {
	padding: 3px 5px;
    background: #b3b3b3;
    border: 1px solid #a2a2a2;
    border-radius: 2px;
    text-align: center;
    float: right;
    margin: 5px 10px;
    font-size: 10px;
    color: #353535;
	cursor: pointer;
}

.cookie-frame .right .agree {
	padding: 3px 5px;
    background: #1cbf21;
    border: 1px solid #214c255e;
    border-radius: 2px;
    text-align: center;
    float: right;
    margin: 5px 10px;
    font-size: 10px;
    color: #eee;
	cursor: pointer;
}


/*slider*/

.slides img {
	margin: 30px;
	cursor: pointer;
	filter: grayscale(1);
}

.linear-left {
	background: linear-gradient(90deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	width: 25%;
	bottom: 0;
}

.linear-right {
	background: linear-gradient(-90deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	width: 25%;
	bottom: 0;
}

.mobile .menu-mob .menu {
	display: none;
	position: absolute;
    z-index: 9999999;
    background: #fff;
	width: 100%;
    margin-left: -20px;
	margin-top: 5px;
}

.mobile .menu-mob .menu li, .mobile .menu-mob .menu span {
	padding: 2.5px 0 2.5px 20px;
}

.mobile .menu-mob .menu span {
	margin-bottom: 5px;
	padding-left: 0;
    display: block;
}

.menu-mob::before {
	content: '\f0c9';
	font-family: FontAwesome;
	font-size: 32px;
}

.sm-menu {
	display: none;
	position: absolute;
	padding-top: 15px !important;
    z-index: 99999999;
    background: #fff;
	-webkit-box-shadow: 0px 0px 5px 0px #ac8f4d;
	-moz-box-shadow: 0px 0px 5px 0px #ac8f4d;
	box-shadow: 0px 0px 5px 0px #ac8f4d;
}

.sm-menu li {
	padding: 0px 20px 10px 10px;
}

.sm-menu li a:hover {
	color: #ac8f4d;
}

.show-2::after {
	content: '\f107';
	font-family: FontAwesome;
	padding-left: 10px;
}


.sm-menu-2 {
	display: none;
	position: absolute;
	padding-top: 15px !important;
    z-index: 99999999;
    background: #fff;
	width: 100%;
    min-width: 120px;
    max-width: 130px;
	-webkit-box-shadow: 0px 0px 5px 0px #ac8f4d;
	-moz-box-shadow: 0px 0px 5px 0px #ac8f4d;
	box-shadow: 0px 0px 5px 0px #ac8f4d;
}

.sm-menu-2 li {
	padding: 0px 20px 10px 10px;
	text-align: right;
}

.sm-menu-2 li a:hover {
	color: #ac8f4d;
}

.show-3::after {
	content: '\f107';
	font-family: FontAwesome;
	padding-left: 10px;
}

.flex-mob {
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	width: 100%;
}

/*preloader*/

#preloader .logo-load {
	width: 280px;
	display: block;
	margin: 0 auto;
}

#preloader .loading img {
	width: 250px;
	display: block;
	margin: 0 auto;
}


.gray-small-price {
	color: #777;
	font-size: 14px !important;
}

.w-75 {
	width: 75%;
	margin: 0 auto;
}

.w-25 {
	width: 25%;
	margin: 0 auto;
}

.right-gallery {
	margin-top: 15px;
}

.right-gallery img {
	padding-left: 20px;
	padding-bottom: 10px;
}

.boxes .list-type-3 {
	list-style-type: none !important;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.boxes .list-type-3 .border-box {
	border: 2px solid #ac8f4d;
    height: 200px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#slubna_2026 .boxes .list-type-3 .border-box {
	border: 2px solid #ac8f4d;
    height: 200px;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.boxes .light {
	font-size: 24px;
	font-weight: 400;
}

.boxes .list-type-3 .border-box h4 {
	font-size: 22px;
	line-height: 2.5rem;
}

.boxes-2 .list-type-3 {
	list-style-type: none !important;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.boxes-2 .list-type-3 .border-box {
	border: 2px solid #ac8f4d;
    height: 190px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sec__1_individual {
	background-image: url('../img/individual-1.jpg');
	height: auto;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    background-position: center;
    min-height: 550px;
    max-height: 600px;
    background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #eee;
}

/*instagram reels*/

#curator-feed-default-feed-layout .crt-feed-window .crt-feed article:nth-child(2) .crt-post-c, #curator-feed-default-feed-layout .crt-tag {
	display: none !important;
}

#curator-feed-default-feed-layout .crt-feed-window .crt-feed article:nth-child(2) {
	background-image: url(../img/logo_2.jpg);
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.home_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-image: url(../img/home_top_3_08.25.jpg);
	height: 772px;
    background-position: bottom;
    background-size: cover;
	background-repeat: no-repeat;
}

.about_me {
	width: 90%;
    padding-right: 300px;
}

.home_top .image, .sec__1_about .image {
	width: 100%;
}

.home_top .about_me h1 {
	font-family: "Montserrat";
	font-weight: 400;
	font-style: normal;
	font-size: 3em;
	padding-bottom: 15px;
}

.home_top .about_me h3 {
	font-size: 1.5em;
    font-weight: 400;
    font-family: 'Lato';
	padding-bottom: 10px;
}

.home_top .about_me p {
	font-size: 1.2em;
    font-weight: 300;
    font-family: 'Lato';
}


:focus-visible {
    outline: none;
}