/*********************
START: GENERAL STYLES
*********************/
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

:root {
  --direction: ltr;
  --container: 1320px;
  --font-family: "Roboto";
  --primary-color: #6932d4;
  --secondary-color: #36c668;
  --text-color: #000;
  --text-color2: #676b80;
  --border-color: #ccced5;
  --background-color: #f6f5fe;
  --white: #ffffff;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.5rem;
  --text-size: 1rem;
  --text-size2: 0.9rem;
  --text-size3: 0.8rem;
  --line-height: 150%;
  --gap: 6rem;
  --border-radius: 15px;
  --box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  direction: var(--direction);
}

a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--container) 1fr;
  grid-template-areas: ". content .";
}

.container > * {
  grid-area: content;
}
header {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  position: relative;
  padding-block-start: 40px;
}
header .left_header img {
  width: 400px;
}
.right_header {
  display: flex;
  align-items: center;
}
.right_header a:first-of-type {
  font-size: 20px;
  padding-inline: 5px;
  margin-inline-end: 10px;
  color: var(--white);
}
.right_header a:last-of-type {
  font-size: 22px;
  border: solid 1px var(--white);
  border-radius: 32px;
  color: var(--white);
  display: inline-block;
  width: 200px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.right_header a:last-of-type:hover {
  background-color: var(--white);
  color: var(--text-color);
}
/*********************
END: HEADER STYLES
*********************/
/*********************
START: FOOTER
*********************/
footer {
  background: #272d3d;
  margin-block-start: var(--gap);
  padding-block-start: var(--gap);
  color: var(--white);
}
.in_footer {
  display: flex;
  justify-content: space-between;
}
.in_footer .widget_box {
  width: 20%;
}
.in_footer .widget_content {
  width: 35%;
}
.in_footer .widget_box h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-block-end: 30px;
}
.in_footer .widget_box ul li {
  padding-block: 20px;
}
.in_footer .widget_box ul li a {
  padding-block: 5px;
}
.in_footer .widget_content p {
  line-height: var(--line-height);
  margin-block-start: 42px;
}
.social {
  display: flex;
  justify-content: space-between;
  border-block: solid 1px rgb(237, 238, 242, 0.2);
  margin-block: 15px;
  padding-block: 15px;
}
.social ul.main_social li {
  margin-inline-end: 10px;
}
.social ul.main_social li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social ul.main_social li a img {
  width: 25px;
  height: 25px;
}
.main_social,
ul.links {
  display: flex;
  align-items: center;
}
ul.links li:first-child {
  margin-inline-end: 30px;
}
.copy_right {
  text-align: center;
  padding-block: 5px;
  font-weight: 200;
  color: rgb(255, 255, 255, 0.5);
}
.copy_right b {
  color: white;
}
/*********************
END: FOOTER
*********************/
/*********************
START: MEDIA
*********************/
/* container  */
@media screen and (min-width: 2560px) {
}

@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1820px 1fr;
    grid-template-areas: ". content .";
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1330px 1fr;
    grid-template-areas: ". content .";
  }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1310px 1fr;
    grid-template-areas: ". content .";
  }
}

@media screen and (min-width: 1200px) and (max-width: 1319px) {
  .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1140px 1fr;
    grid-template-areas: ". content .";
  }
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
  .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 970px 1fr;
    grid-template-areas: ". content .";
  }

  .footer--top > div p {
    width: 60%;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 750px 1fr;
    grid-template-areas: ". content .";
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 95% 1fr;
    grid-template-areas: ". content .";
  }
}
/* container */
@media screen and (min-width: 993px) and (max-width: 1200px) {
}
@media screen and (min-width: 768px) and (max-width: 992px) {
}

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

@media screen and (max-width: 576px) {
  .right_header a:last-of-type {
    font-size: 16px;
    width: 150px;
    height: 41px;
  }
  .right_header a:first-of-type {
    font-size: 16px;
  }
  .in_footer {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .in_footer .widget_box {
    width: 100%;
    border-block-end: solid 1px rgb(255, 255, 255, 0.2);
    margin-block-end: 15px;
  }
  .in_footer .widget_box ul li a {
    font-size: 14px;
  }
  .social {
    margin-block: 0 15px;
    padding-block: 12px 23px;
    border-block-start: none;
  }
  .in_footer .widget_box ul {
    display: flex;
    margin-block: 16px;
  }
  .in_footer .widget_content p {
    margin-block: 24px 32px;
  }
  .in_footer .widget_box ul li:not(:first-child) {
    padding-inline: 4px;
    margin-inline: 10px;
  }
  .in_footer .widget_box h3 {
    margin-block-end: 12px;
  }
  .in_footer .widget_box ul li {
    padding-block: 0;
  }
  .in_footer .widget_content {
    width: 100%;
  }
  .social ul.main_social li a {
    width: 30px;
    height: 30px;
  }
  .social ul.main_social li a img {
    width: 20px;
    height: 20px;
  }
  .widget_content > img {
    width: 100px;
  }
}

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

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

/*********************
  END: MEDIA
  *********************/
