* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Containers */
.main_container {
    display: flex;
    justify-content: center;
    height: auto;
}

.box_container {
    width: 1200px;
    height: auto;
}

/* Fonts */
@font-face {
    font-family: RethinkSans;
    src: url(../fonts/RethinkSans-VariableFont_wght.ttf);
}
body {
    font-family: RethinkSans;
}

/* Header */

/* Pirveli Nav */
/* Background color */
header > nav:first-of-type > div.main_container {
    background-color: #ce0393;
    padding: 20px 0px;
}
/* Display of content */
header > nav:first-of-type > div.main_container > div.box_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Menu styles */ 
header > nav:first-of-type > div.main_container > div.box_container > ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    color: #fff;
    gap: 130px;
}
/* Li styles */
header > nav:first-of-type > div.main_container > div.box_container > ul > li {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Img size */
header > nav:first-of-type > div.main_container > div.box_container > ul > li > img {
    width: 20px;
    height: 20px;
}
/* Span text styles */
header > nav:first-of-type > div.main_container > div.box_container > div > span {
    color: #fff;
    text-transform: uppercase;
}
/* Meore Nav */
/* Background */
header > nav:nth-of-type(2) > div.main_container {
    background-color: #fff;
    box-shadow: 0px 10px 15px 0px #00000081;
    padding: 20px 0px;
    position: relative;
    z-index: 1;
}
/* Display of content */
header > nav:nth-of-type(2) > div.main_container > div.box_container > div:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Menu styles */
header > nav:nth-of-type(2) > div.main_container > div.box_container > div:first-of-type > div:nth-of-type(2) > ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
}
/* Menu link styles */
header > nav:nth-of-type(2) > div.main_container > div.box_container > div:first-of-type > div:nth-of-type(2) > ul > li > a {
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}
/* Burger dropdown */
header > nav:nth-of-type(2) > div.main_container > div.box_container > div:first-of-type > img {
    display: none;
}
/* Video background */
header > div:first-of-type {
    padding-top: 50px;
    background-color: #f1f1f1;
}
/* Video styles */
header > div:first-of-type > div > div > video   {
    border-bottom: 10px solid #ce0393;
    width: 100%;
    height: auto;
}

/* Main */

/* Display of content */
main > div.main_container > div.box_container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 50px 0px;
}
/* Left part of main */
/* Left part display */
main > div.main_container > div.box_container > div:first-of-type {
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Tite styles */
main > div.main_container > div.box_container > div:first-of-type > div:first-of-type > h2 {
    color: #000;
    text-transform: uppercase;
    font-size: 32px;
}
/* Title underline */
/* Gray part */
div.underline {
    height: 10px;
    background-color: #d5d5d5;
}
/* Pink part of the underline */
div.underline > div {
    background-color: #ce0393;
    width: 30px;
    height: 10px;
    color: transparent;
}
/* Boxes */
/* Display of content */
div.box {
    display: flex;
    gap: 20px;
}
/* Img */
div.box > div:first-of-type > a > img {
    width: 319px;
    height: 227px;
}
/* Title */
div.box > div:nth-of-type(2) > div:first-of-type > h3 {
    font-size: 26px;
    text-transform: uppercase;
}
/* Links */
div.box > div:nth-of-type(2) > div:nth-of-type(2) > a {
    background-color: #ce0393;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 0px 6px;
}
/* Span text */
div.box > div:nth-of-type(2) > div:nth-of-type(2) > span {
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
}
/* Paragraph */
div.box > div:nth-of-type(2) > div:nth-of-type(3) > p {
    color: #8e8e8e;
    font-size: 16px;
}
/* Hr style */
hr {
    border: 1px solid #e6e6e6;
}
/* Right part of main */
/* Right part display */
main > div.main_container > div.box_container > div:nth-of-type(2) {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #716f70;
    padding: 20px;
}
/* Title styles */
main > div.main_container > div.box_container > div:nth-of-type(2) > div:first-of-type > h2 {
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
}
/* Display of buttons */
main > div.main_container > div.box_container > div:nth-of-type(2) > div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/* Input button styles */
main > div.main_container > div.box_container > div:nth-of-type(2) > div:nth-of-type(2) > input {
    text-transform: capitalize;
    border: none;
    border-radius: 30px;
    padding: 15px 5px;
}
/* Submit buttons styles */
main > div.main_container > div.box_container > div:nth-of-type(2) > div:nth-of-type(2) > button {
    background-color: #ce0393;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    width: 150px;
    padding: 10px 5px;
}
/* H3 styles */
main > div.main_container > div.box_container > div:nth-of-type(2) > div:nth-of-type(3) > h3 {
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
}
/* Underline stlyes */
main > div.main_container > div.box_container > div:nth-of-type(2) > div > div.underline {
    height: 5px;
}
main > div.main_container > div.box_container > div:nth-of-type(2) > div > div.underline > div {
    height: 5px;
}
/* Table style */
table {
    border-collapse: collapse;
}
/* Table cells styles */
th, td {
    text-align: center;
    padding: 5px 20px 20px 2px;
    border: 5px solid #716f70;
    background-color: #fff;
    font-size: 10px;
}
/* Row 1 styles */
th {
    padding: 0px 4px;
    text-align: center;
}
/* Other rows styles */
td {
    font-weight: bold;
    font-size: 13px;
    text-align: left;
}

/* Footer */

/* Bg color */
footer > div.main_container {
    background-color: #191919;
    padding: 20px 0px;
}
/* Display of content */
footer > div.main_container > div.box_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Copyright */
footer > div.main_container > div.box_container > div:first-of-type > span {
    color: #fff;
    text-transform: uppercase;
}
/* Menu styles */
footer > div.main_container > div.box_container > div:nth-of-type(2) > ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}
/* Menu link styles */
footer > div.main_container > div.box_container > div:nth-of-type(2) > ul > li > a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}