@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

html::-webkit-scrollbar {
    width: 0px;
}

html {
    width: 100%;
    height: auto;
    margin: 0px auto;
    background-color: #fff;
}

body {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column nowrap;
    gap: 50px;
    align-items: center;
    margin: 0px auto;
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    body {
        gap: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {
    body {
        gap: 10px;
    }
}

header,
.footer_menu {
    width: 100%;
    height: 100px;
    display: flex;
    flex-flow: row nowrap;
    gap: 246px;
    align-items: center;
    justify-content: center;
    background-color: #11B5E4;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {

    header,
    .footer_menu {
        gap: 180px;
    }
}

@media screen and (max-width: 767px) {

    header,
    .footer_menu {
        width: 100%;
        height: 30px;
        gap: 0%;
    }
}

#header_logo {
    width: 208px;
    height: 72px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    #header_logo {
        width: 75px;
        height: 26px;
        padding-left: 6.25%;
    }

    .footer_menu>img {
        padding-left: 0px !important;
    }
}

a {
    text-decoration: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    cursor: pointer;
}

p {
    text-decoration: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
}

nav {
    display: flex;
    flex-flow: row nowrap;
    gap: 50px;
}

@media screen and (max-width: 767px) {
    nav {
        display: none;
    }

    a {
        font-size: 14px;
        line-height: 14px;
    }

    p {
        font-size: 14px;
        line-height: 14px;
    }
}

a:hover {
    color: #53230C;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

a:active {
    color: #53230C;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.header_btns {
    padding-left: 68px;
    gap: 40px;
}

.header_btns>button {
    width: 50px;
    height: 50px;
    border: none;
    padding: 0px;
    background: none;
    cursor: pointer;
}

.header_btns>button:hover {
    border-radius: 40px;
    background: #53230C;
}

.header_btns>button:active {
    background: #53230C;
}

.header_btns>button>img {
    width: 50px;
    height: 50px;
}

.welcome {
    width: 83.3333333%;
    height: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background-color: #F3F3F3;
    border-radius: 40px;
	padding: 20px 0px 20px 0px;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .welcome {
        width: 90%;
    }
}

h1 {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
    height: 32px;
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .welcome {
        width: 88.28%;
        gap: 10px;
		padding: 10px 0px 10px 0px;
    }

    h1 {
        font-size: 24px;
        height: 24px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .welcome {
        width: 89.58%;
        padding: 10px 0px 10px 0px;
        gap: 10px;
    }

    h1 {
        font-size: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .welcome {
        width: 87.5%;
        height: auto;
        gap: 10px;
        border-radius: 20px;
    }
    
    h1 {
        font-size: 14px;
        height: 14px;
    }

    .welcome>h1 {
        margin-top: 10px;
    }
}

.welcome_content {
    width: 98.125%;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.welcome_content>img {
    width: 800px;
    height: 462px;
}

.welcome_content>p {
    color: #000;
    text-align: justify;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .welcome_content {
        width: 98.125%;
        height: auto;
        display: flex;
        flex-flow: row nowrap;
        gap: 20px;
        align-items: center;
        justify-content: start;
    }

    .welcome_content>p {
        width: 580px;
        height: auto;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .welcome_content {
        width: 95.62%;
        height: auto;
        gap: 10px;
    }
    
    .welcome_content>img {
        width: 450px;
        height: 260px;
    }
    
    .welcome_content>p {
        font-size: 18px;
        width: 414px;
        height: auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .welcome_content {
        width: 98.54%;
        height: auto;
        gap: 3px;
    }
    
    .welcome_content>img {
        width: 360px;
        height: 208px;
    }
    
    .welcome_content>p {
        font-size: 18px;
        width: 315px;
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .welcome_content {
        width: 100%;
        height: auto;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .welcome_content>img {
        width: 100%;
        height: auto;
    }
    
    .welcome_content>p {
        width: 92.85%;
        font-size: 12px;
    }
}

.choose_category {
    width: 83.3333333%;
    height: 1000px;
    background-color: #F3F3F3;
    border-radius: 40px;
    display: flex;
    flex-flow: column nowrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .choose_category {
        width: 90%;
		height: 880px;
		gap: 16px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .choose_category {
        width: 88.28%;
        height: 740px;
        gap: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .choose_category {
        width: 89.588%;
        height: 960px;
        gap: 3px;
    }
}

@media screen and (max-width: 767px) {
    .choose_category {
        width: 87.5%;
        height: auto;
        border-radius: 20px;
        gap: 10px;
    }
}

.categories_description {
    width: 96.25%;
    height: 886px;
    display: flex;
    flex-flow: row nowrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.categories_1 {
    width: 22.72%;
    height: 886px;
    display: flex;
    flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
    gap: 10px;
}

.categories_2 {
	display: none;
}

.category {
    width: 100%;
    height: 80px;
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 40px;
    border: 1px solid #11B5E4;
    background: #FFF;
}

#categories_id_7 {
	height: 110px !important;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .categories_description {
		width: 93.05%;
		height: 784px;
		gap: 16px;
	}

	.categories_1 {
		width: 26.11%;
		height: 784px;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .categories_description {
        width: 96.46%;
        height: 684px;
        gap: 15px;
    }
    
    .categories_1 {
        width: 27.52%;
        height: 684px;
        gap: 10px;
    }
    
    .category {
        width: 100%;
        height: 50px;
        font-size: 18px;
        border-radius: 40px;
    }
	
	#categories_id_7 {
		height: 70px !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .categories_description {
        width: 97%;
        height: 900px;
        gap: 10px;
    }
    
    .categories_1 {
        width: 23.5%;
        height: 900px;
		gap: 10px;
    }
    
    .category {
        width: 100%;
        height: 60px;
        font-size: 16px;
    }

    #categories_id_7 {
		height: 80px !important;
		border-radius: 25px;
	}
}

@media screen and (max-width: 767px) {
    .choose_category>h1 {
        margin-top: 10px;
    }

    .categories_description {
        width: 92.85%;
        height: auto;
		flex-flow: column nowrap;
        gap: 5px;
    }
	
	.categories_1 {
		display: none;
	}
    
    .categories_2 {
        display: flex;
        flex-flow: row nowrap;
        gap: 10px;
		overflow-x: auto;
        width: 100%;
        height: 40px;
    }
	
	.categories_2::-webkit-scrollbar {
		display: none;
	}
    
    .category {
        min-width: 125px;
		max-width: 220px;
        height: 40px;
        font-size: 10px;
        border-radius: 40px;
    }
}

.category_description {
    width: 75.32%;
    height: 886px;
    display: flex;
    flex-flow: column nowrap;
    gap: 22px;
    align-items: center;
    justify-content: center;
	background: url('/images/bg_1920.webp') no-repeat;
	background-position: left top;
	background-size: 100% auto;
}

.category_description>h1 {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	height: 74px;
    margin: 0px;
}

.category_description>textarea {
    width: calc(88.79% - 80px);
    height: 650px;
    resize: none;
    color: #000;
    text-align: justify;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	border-radius: 40px;
    background-color: #FFF;
    border: 3px solid #11B5E4;
	padding: 20px 40px;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .category_description {
		width: 72.68%;
		height: 784px;
		gap: 11px;
		background: url('/images/bg_1600.webp') no-repeat;
	}
	
	.category_description>textarea {
		width: calc(88.29% - 50px);
		height: 583px;
		padding: 20px 25px;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .category_description {
        width: 70.75%;
        height: 684px;
        gap: 10px;
		background: url('/images/bg_1024.webp') no-repeat;
    }
    
    .category_description>h1 {
		height: 44px;
        font-size: 18px;
    }
    
    .category_description>textarea {
        width: calc(90.27% - 40px);
        height: 538px;
        font-size: 16px;
		padding: 15px 20px;
    }
}

.categories_1>button,
.categories_2>button {
	word-break: break-word !important;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .category_description {
        width: 75%;
        height: 900px;
        gap: 10px;
		background: url('/images/bg_768.webp') no-repeat;
    }
    
    .category_description>h1 {
		height: 44px;
        font-size: 16px;
    }
    
    .category_description>textarea {
        width: calc(88% - 40px);
        height: 759px;
        font-size: 16px;
		padding: 16px 20px;
    }
}

@media screen and (max-width: 767px) {
    .category_description {
        width: 100%;
        height: 453px;
        gap: 5px;
        border-radius: 20px;
        margin-bottom: 10px;
		background: url('/images/bg_mobile.webp') no-repeat;
		background-size: 100% 453px;
		background-position: center top;
    }
    
    .category_description>h1 {
        font-size: 10px;
		height: 30px;
    }
    
    .category_description>textarea {
        width: calc(92.3% - 5px);
        height: 359px;
        font-size: 12px;
		padding: 5px;
		border-radius: 20px;
    }
}

.category_description>textarea::-webkit-scrollbar {
    display: none;
}

.category_description>textarea:focus {
    outline: none;
}

.register_way {
    width: 83.3333333%;
    height: 320px;
    display: flex;
    flex-flow: column nowrap;
    gap: 12px;
    border-radius: 40px;
    background: #F3F3F3;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .register_way {
        width: 90%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .register_way {
        width: 88.28%;
        height: 215px;
        gap: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .register_way {
        width: 89.58%;
        height: 215px;
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .register_way {
        width: 87.5%;
        height: auto;
        gap: 5px;
        border-radius: 20px;
    }

    .register_way>h1 {
        margin-top: 10px;
    }
}

.help {
    width: 48.25%;
    height: 150px;
    margin-top: 12px;
    display: flex;
    flex-flow: row nowrap;
    gap: 0px;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .help {
        width: 53.61%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .help {
        width: 59.23%;
        height: 100px;
        margin-top: 0px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .help {
        width: 78.48%;
        height: 100px;
        margin-top: 0px;
    }
}

@media screen and (max-width: 767px) {
    .help {
        width: 92.85%;
        height: 60px;
        margin-top: 0px;
    }
}

.help>img {
    width: 161px;
    height: 27px;
}

.point {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #11B5E4;
    border-radius: 80px;
    opacity: 0.4;
}

.point:hover {
    -webkit-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
    cursor: pointer !important;
}

.point>img {
    width: 100px;
    height: 100px;
}

#card_icon {
    width: 80px !important;
    height: 80px !important;
}

.help_text {
    width: 642px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #11B5E4;
    border-radius: 25px;
}

#help_content {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .help>img {
        width: 120px;
        height: 27px;
    }
    
    .point {
        width: 100px;
        height: 100px;
        opacity: 0.4;
    }
    
    .point>img {
        width: 66px;
        height: 66px;
    }
    
    #card_icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .help_text {
        width: 50%;
        height: 40px;
    }
    
    #help_content {
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .help>img {
        width: 120px;
        height: 27px;
    }
    
    .point {
        width: 100px;
        height: 100px;
        opacity: 0.4;
    }
    
    .point>img {
        width: 66px;
        height: 66px;
    }
    
    #card_icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .help_text {
        width: 50%;
        height: 40px;
    }
    
    #help_content {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .help>img {
        width: 40px;
        height: 9px;
    }
    
    .point {
        width: 60px;
        height: 60px;
    }
    
    .point>img {
        width: 40px;
        height: 40px;
    }
    
    #card_icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .help_text {
        width: 240px;
        height: 20px;
        margin-bottom: 10px;
    }
    
    #help_content {
        font-size: 9px;
    }
}

.choose_executor {
    width: 83.3333333%;
    height: 620px;
    display: flex;
    flex-flow: column nowrap;
    gap: 24px;
    background-color: #F3F3F3;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .choose_executor {
        width: 90%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .choose_executor {
        width: 88.28%;
        height: 370px;
        gap: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .choose_executor {
        width: 89.58%;
        height: 410px;
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .choose_executor {
        width: 87.5%;
        height: auto;
        gap: 10px;
        border-radius: 20px;
    }

    .choose_executor>h1 {
        margin-top: 10px;
    }
}

.choose_executor_advice {
    width: 87.5%;
    height: 240px;
    display: flex;
    flex-flow: row nowrap;
    gap: 80px;
    align-items: center;
    justify-content: center;
    background-color: #11B5E4;
    border-radius: 40px;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .choose_executor_advice {
        width: 90.27%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .choose_executor_advice {
        width: 92.69%;
        height: 146px;
        gap: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .choose_executor_advice {
        width: 90.11%;
        height: 168px;
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .choose_executor_advice {
        width: 92.85%;
        height: auto;
        flex-flow: column nowrap;
        gap: 5px;
        border-radius: 20px;
    }

    #choose_executor_advice_last {
        margin-bottom: 10px;
    }
}

.choose_executor_advice>img {
    width: 611px;
    height: 183px;
}

.choose_executor_advice>p {
    color: #FFF;
    text-align: justify;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 33.5%;
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .choose_executor_advice>img {
        width: 300px;
        height: 79px;
    }
    
    .choose_executor_advice>p {
        font-size: 18px;
        width: 55.96%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .choose_executor_advice>img {
        width: 300px;
        height: 79px;
    }
    
    .choose_executor_advice>p {
        font-size: 18px;
        width: 268px;
    }
}

@media screen and (max-width: 767px) {
    .choose_executor_advice>img {
        width: 220px;
        height: 58px;
        margin-top: 10px;
    }
    
    .choose_executor_advice>p {
        font-size: 12px;
        width: 84.6%;
        margin-top: 0px;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .choose_executor_advice>p {
        width: 36%;
    }
}

.juridic_block {
    width: 83.3333333%;
    height: 270px;
    display: flex;
    flex-flow: column nowrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    background-color: #F3F3F3;
    border-radius: 40px;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .juridic_block {
        width: 90%;
    }
}

.juridic_info {
    width: 85.5%;
    height: 160px;
    display: flex;
    flex-flow: row nowrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .juridic_info {
        width: 95%;
    }
}

.info_block {
    width: 32.163%;
    height: 160px;
    display: flex;
    flex-flow: column nowrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background-color: #11B5E4;
    border-radius: 40px;
}

.info_block>h1 {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.info_block>p {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

#first_info {
    margin-top: 9px;
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .juridic_block {
        width: 88.28%;
        height: 260px;
        display: flex;
        flex-flow: column nowrap;
        gap: 10px;
    }

    .juridic_info {
        width: 90.70%;
        height: auto;
        display: flex;
        flex-flow: row wrap;
        column-gap: 20px;
        row-gap: 10px;
    }

    .info_block {
        width: 48.78%;
        height: 94px;
        gap: 10px;
    }
    
    .info_block>h1 {
        font-size: 18px;
    }
    
    .info_block>p {
        font-size: 14px;
    }
    
    #first_info {
        margin-top: 0px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .juridic_block {
        width: 89.58%;
        height: 365px;
        display: flex;
        flex-flow: column nowrap;
        gap: 10px;
    }

    .juridic_info {
        width: 58.13%;
        height: 302px;
        display: flex;
        flex-flow: column nowrap;
        gap: 10px;
    }

    .info_block {
        width: 100%;
        height: 94px;
        gap: 10px;
    }
    
    .info_block>h1 {
        font-size: 18px;
    }
    
    .info_block>p {
        font-size: 14px;
    }
    
    #first_info {
        margin-top: 0px;
    }
}

@media screen and (max-width: 767px) {
    .juridic_block {
        width: 87.5%;
        height: auto;
        display: flex;
        flex-flow: column nowrap;
        gap: 10px;
        border-radius: 20px;
    }

    .juridic_block>h1 {
        margin-top: 10px;
    }

    .juridic_info {
        width: 92.85%;
        height: auto;
        display: flex;
        flex-flow: column nowrap;
        gap: 5px;
    }

    .info_block {
        width: 100%;
        height: 70px;
        gap: 5px;
        border-radius: 20px;
    }
    
    .info_block>h1 {
        font-size: 14px;
    }
    
    .info_block>p {
        font-size: 12px;
    }
    
    #first_info {
        margin-top: 0px;
    }

    #juridic_MNS {
        margin-bottom: 10px;
    }
}

.prefooter {
    width: 100%;
    background-color: #11B5E4;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    height: 306px;
    display: flex;
    flex-flow: column nowrap;
    gap: 0px;
    background-color: #11B5E4;
}

.contact_container {
    width: 100%;
    height: 206px;
    display: flex;
    flex-flow: row nowrap;
    gap: 166px;
    align-items: center;
}

.social {
    width: 15.875%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    gap: 24px;
}

.social>p {
    margin: 0px;
}

.links {
    width: 100%;
}

.links>button {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.0);
    ;
    background-size: 50px;
    border: none;
}

button:hover {
    cursor: pointer;
}

#facebook {
    background-image: url("../images/facebook.webp");
}

#twitter {
    background-image: url("../images/twitter.webp");
}

#instagram {
    background-image: url("../images/instagram.webp");
}

#youtube {
    background-image: url("../images/youtube.webp");
}

.subscribe {
    width: 38.125%;
    display: flex;
    flex-flow: column nowrap;
    gap: 24px;
    align-items: flex-start;
}

.subscribe>p {
    margin: 0px;
}

.email_line {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    gap: 0px;
}

.email_line>input {
    width: 73.77%;
    height: 50px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-indent: 18px;
    border-radius: 25px 0px 0px 25px;
    border: none;
    background: #FFF;
}

.email_line>input::-webkit-input-placeholder {
    color: #838383;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.email_line>button {
    width: 26.23%;
    color: #FFF;
    background-color: #53230C;
    border-radius: 0px 25px 25px 0px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    text-align: left;
}

.join {
    width: 25.25%;
    display: flex;
    flex-flow: column nowrap;
    gap: 24px;
    align-items: center;
}

.join>p {
    margin: 0px;
}

.join>button {
    width: 61.8811%;
    height: 50px;
    color: #FFF;
    border: none;
    border-radius: 25px;
    background-color: #53230C;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .contact_container {
        gap: 86px;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .subscribe {
        width: 42.36%;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .email_line>button {
        font-size: 22px;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .join>button {
        font-size: 22px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {

    header,
    .footer_menu {
        width: 100%;
        height: 60px;
        gap: 124px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    #header_logo {
        width: 150px;
        height: 52px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    nav {
        gap: 20px;
    }

    a {
        font-size: 24px;
    }

    p {
        font-size: 24px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .header_btns {
        padding-left: 0px;
        gap: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .header_btns>button {
        width: 30px;
        height: 30px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .header_btns>button>img {
        width: 30px;
        height: 30px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    h1 {
        font-size: 24px;
        height: 24px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    footer {
        height: 164px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .contact_container {
        height: 104px;
        gap: 57px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .social {
        width: 16.59%;
        gap: 10px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .links>button {
        width: 30px;
        height: 30px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    #facebook {
        background-size: 30px 30px;
    }

    #twitter {
        background-size: 30px 30px;
    }

    #instagram {
        background-size: 30px 30px;
    }

    #youtube {
        background-size: 30px 30px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .subscribe {
        width: 40.37%;
        gap: 10px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .email_line>input {
        height: 30px;
        font-size: 14px;
        text-indent: 14px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .email_line>input::-webkit-input-placeholder {
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .email_line>button {
        height: 32px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .join {
        width: 30.30%;
        gap: 10px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .join>button {
        height: 30px;
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

    header,
    .footer_menu {
        width: 100%;
        height: 60px;
        gap: 64px;
    }

    #header_logo {
        width: 150px;
        height: 52px;
    }

    nav {
        gap: 20px;
    }

    a {
        font-size: 18px;
    }

    p {
        font-size: 18px;
    }

    .header_btns {
        padding-left: 0px;
        gap: 30px;
    }

    .header_btns>button {
        width: 24px;
        height: 24px;
    }

    .header_btns>button>img {
        width: 24px;
        height: 24px;
    }

    h1 {
        font-size: 24px;
    }

    footer {
        height: 133px;
    }

    .contact_container {
        height: 73px;
        gap: 2%;
    }


    .social {
        width: 19.47%;
        gap: 5px;
    }


    .links>button {
        width: 30px;
        height: 30px;
    }

    #facebook {
        background-size: 30px 30px;
    }

    #twitter {
        background-size: 30px 30px;
    }

    #instagram {
        background-size: 30px 30px;
    }

    #youtube {
        background-size: 30px 30px;
    }

    .subscribe {
        width: 45.63%;
        gap: 5px;
    }

    .email_line>input::-webkit-input-placeholder {
        font-size: 14px;
    }

    .email_line>input {
        width: 70%;
        height: 30px;
        font-size: 14px;
        text-indent: 14px;
    }

    .email_line>button {
        width: 30%;
        height: 32px;
        font-size: 14px;
    }

    .join {
        width: 30.52%;
        gap: 5px;
    }

    .join>button {
        height: 30px;
        font-size: 14px;
    }
}

#mobile_send {
    display: none;
}

@media screen and (max-width: 767px) {
    footer {
        width: 87.5%;
        height: 192px;
        justify-content: flex-end;
    }

    .contact_container {
        width: 100%;
        height: 152px;
        display: flex;
        flex-flow: column nowrap;
        gap: 10px;
        align-items: center;
    }

    .social {
        align-items: center;
        width: 33.92%;
        gap: 0px;
    }

    .links {
        display: flex;
        flex-flow: row nowrap;
        gap: 5px;
        align-items: center;
        justify-content: center;
    }

    .links>button {
        width: 20px;
        height: 20px;
    }

    #facebook {
        background-size: 20px 20px;
    }

    #twitter {
        background-size: 20px 20px;
    }

    #instagram {
        background-size: 20px 20px;
    }

    #youtube {
        background-size: 20px 20px;
    }

    .subscribe {
        width: 89.28%;
        gap: 5px;
        align-items: center;
    }

    .email_line>input {
        width: 88%;
        height: 30px;
        font-size: 16px;
        text-indent: 10px;
    }

    .email_line>input::-webkit-input-placeholder {
        font-size: 16px;
    }

    .email_line>button {
        display: none;
    }

    #mobile_send {
        display: block;
        height: 32px;
        width: 12%;
        background-image: url("../images/send_mail_mobile.webp");
        background-size: 30px 30px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .join {
        width: 73.2%;
        gap: 5px;
    }

    .join>button {
        width: 68.29%;
		max-width: 200px;
        height: 20px;
        font-size: 10px;
    }
}

@media screen and (max-width: 767px) {
    .email_line {
		max-width: 300px;
    }
}